/** Shopify CDN: Minification failed

Line 136:19 Expected identifier but found whitespace
Line 136:21 Unexpected "{"
Line 136:30 Expected ":"
Line 137:14 Expected identifier but found whitespace
Line 137:16 Unexpected "{"
Line 137:25 Expected ":"
Line 138:8 Expected identifier but found whitespace
Line 138:10 Unexpected "{"
Line 138:19 Expected ":"
Line 159:19 Expected identifier but found whitespace
... and 17 more hidden warnings

**/


/* CSS from section stylesheet tags */
.main-video-wrapping{
      display:flex;
      width:100%;
      gap:10px;
  }
  .main-video-wrapper{
      width:60%;
  }
  .video-grid-container{
      width:40%;
  }
  .video-grid-item, .multi-video-main-video, .multi-video-main-video img{
      width:100%;
      cursor:pointer;
  }
  .video-grid-container{
      display:grid;
      grid-template-columns:auto auto;
      gap:10px;
  }
.pratham-tab {
  padding: 20px;
}

.pratham-tab .tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pratham-tab .tab-button {
  cursor: pointer;
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s;
}

.pratham-tab .tab-button.active {
  background-color: #000;
  color: #fff;
}

.pratham-tab .tab-content {
  display: none;
}

.pratham-tab .tab-content.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.pratham-tab .product {
  text-align: left;
  padding: 10px;
  border: .5px solid #00000014;
}

.pratham-tab .product:hover {
  box-shadow: 0 2px 8px rgba(125, 125, 125, 0.2);
}

.pratham-tab .product img {
  width: 100%;
  transition: transform 0.3s;
}

.pratham-tab .product-title {
  font-size: 14px;
  margin-top: 10px;
}

.pratham-tab .product-price {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  color: black;
}

/* Tablet and Mobile: Tabs as uniform 2-column grid */
@media (max-width: 868px) {
  .pratham-tab .tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
    row-gap: 9px;
    margin-bottom: 20px;
  }
}

/* Product Grid Tablet */
@media (max-width: 768px) {
  .pratham-tab .tab-content.active {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Grid Mobile - Center Last Product if Odd */
@media (max-width: 480px) {
  .pratham-tab .tab-content.active {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .pratham-tab .tab-content.active .product:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
    justify-self: center;
  }
}
/* Add custom CSS for styling */
.section-old-diamonds {
  padding: 20px;
  margin-bottom: 20px;
  background-color: {{ section.settings.main_div_background_color }};
  font-family: {{ section.settings.section_font }};
  color: {{ section.settings.section_color }};
  text-align: center;
  background-color: #faebd773;
}

.section-heading {
  font-size: 24px;
  margin-bottom: 10px;
}

.section-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.main-div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: {{ section.settings.main_div_background_color }};
  background-image: url({{ section.settings.main_div_background_image | img_url: 'master' }});
  background-size: cover;
  background-position: center;
  padding: {{ section.settings.main_div_padding }};
  margin-top: {{ section.settings.main_div_margin }};
}

.small-div {
  position: relative;
  width: 48%;
  margin-bottom: 20px;
}

.small-div img {
  width: 70%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  margin-top: 10%;
}

.small-div img:hover {
  transform: scale(1.1);
}

.small-div-content {
  position: relative;
  padding: 10px;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: {{ section.settings.small_div_font_color }};
}

.background-image {
  position: absolute;
  top: 0;
  left: 30%;
  width: 35%;
  height: 200%;
  background-size: cover;
  background-position: center;
  animation: rotateBackground 20s linear infinite; /* Adjust duration and timing function as needed */
}

.content {
  position: relative;
  padding: 10px;
  text-align: center;
  color: {{ section.settings.small_div_font_color }};
}

.small-div-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.small-div-description {
  font-size: 14px;
}
@keyframes rotateBackground {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .small-div {
    width: 100%;
  }
}
<style>
  .trust-score-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    background-color: #f9f9f9;
  }
.trust-stars-trust-summary{
  display: flex;
  justify-content: center;
  align-items: baseline;
}
  .trust-left {
    max-width: 400px;
    flex: 1 1 350px;
  }

  .trust-stars {
    font-size: 24px;
    color: gold;
  }

  .trust-summary {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
  }

  .trust-breakdown {
    margin-top: 20px;
  }

  .trust-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .trust-label {
    width: 20px;
    font-weight: bold;
  }

  .trust-star-icons {
    color: gold;
    margin-left: 10px;
    width: 70px;
  }

  .trust-bar {
    flex: 1;
    height: 10px;
    background-color: #ddd;
    margin: 0 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }

  .trust-bar-fill {
    height: 100%;
    background-color: #001f3d; /* Blue progress bar */
    border-radius: 5px;
  }

  .trust-count {
    width: 50px;
    text-align: right;
    font-size: 14px;
  }

  .trust-right {
    flex: 1 1 400px;
    text-align: center;
  }

  .trust-score-heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #111;
     text-align :center;
  }

  .trust-score-heading .subheading {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
     text-align :center;
  }

  .trust-score-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 106px;
  }

  .trust-score-column {
    flex: 1 1 30%;
    min-width: 280px;
    max-width: 320px;
    
    padding: 20px;
    border-radius: 8px;
   
    text-align: center;
  }

  .trust-score-column h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
  }

  .trust-score-column p {
    font-size: 16px;
    color: #555;
  }
  .review-butondiv{
    margin-top: 32px;
  }
  /* .trust-score-column img{
    height: 220px !important;
    width: 220px 1!important;
  } */
.review-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #001f3d; /* Navy Blue */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
  }
  .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;  /* Ensures the container spans the entire column */
}.trust-score-h1{
   text-align: center;
 }
.trust-score-column.full-image {
  padding: 0;
}

.trust-score-column.full-image .image-container {
  flex-grow: 1;
  height: 100%;
}

.trust-score-column.full-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* .trust-score-column img {
  width: 100%;  
  height: auto;  
  object-fit: contain; 
  border-radius: 8px;  
} */


/* .trust-score-column img {
 
  max-height: 200px; 
} */
  @media (max-width: 768px) {
    .trust-score-section {
      flex-direction: column;
      align-items: center;
      padding :20px;
    }
    .trust-score-columns{
      gap:0px
    }
    .trust-score-heading h2 {
      font-size: 24px;
    }

    .trust-score-heading .subheading {
      font-size: 16px;
    }

    .trust-stars {
      text-align: center;
    }

    .trust-summary {
      text-align: center;
    }

    .trust-row {
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .trust-score-column {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
</style>
.raj-tab-view {
  padding: 20px;
}

.raj-tab-view .tabs {
  display: flex; /* Default to flex layout */
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.raj-tab-view .tab-button {
  cursor: pointer;
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s;
}

.raj-tab-view .tab-button.active {
  background-color: #000;
  color: #fff;
}

.raj-tab-view .tab-content {
  display: none;
}

.raj-tab-view .tab-content.active {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(5, 1fr); /* Default 5 columns */
  gap: 15px;
}

.raj-tab-view .product {
    text-align: left;
    padding: 10px;
    border: .5px solid #00000014;
    flex: 0 0 20%;
    max-width: calc(20% - 12px);
}

.raj-tab-view .product:hover {
  box-shadow: 0 2px 8px rgba(125, 125, 125, 0.2);
}

.raj-tab-view .product img {
  width: 100%;
  transition: transform 0.3s;
}

.raj-tab-view .product-title {
  font-size: 14px;
  margin-top: 10px;
}

.raj-tab-view .product-price {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  color: black;
}

.raj-tab-view .double-image-call-to-action {
  display: block;
  padding: 12px 24px;
  background-color: #2c2c54;
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.raj-tab-view .double-image-call-to-action:hover {
  background-color: #2c2c54;
  color: #fff;
}

.raj-tab-view .button-position-center {
  margin: 20px auto 0;
}

.raj-tab-view .button-position-left {
  margin: 20px auto 0 0;
}

.raj-tab-view .button-position-right {
  margin: 20px 0 0 auto;
}

/* Media Query for 868px width */
@media (max-width: 868px) {
  /* Change tabs to grid layout for screen widths <= 868px */
  .raj-tab-view .tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    gap: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .raj-tab-view .tab-content.active {
    grid-template-columns: repeat(3, 1fr); /* 3 items per row on smaller tablets */
  }
}

@media (max-width: 480px) {
  .raj-tab-view .tab-content.active {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on smaller screens */
  }
  .raj-tab-view .product {
    text-align: left;
    padding: 10px;
    border: .5px solid #00000014;
    flex: 0 0 50%;
    max-width: calc(50% - 8px);
  }
}