/** Shopify CDN: Minification failed

Line 112:9 Expected identifier but found whitespace
Line 112:11 Unexpected "{"
Line 112:20 Expected ":"
Line 112:52 Expected ":"
Line 133:12 Expected identifier but found whitespace
Line 133:14 Unexpected "{"
Line 133:23 Expected ":"
Line 133:50 Expected ":"
Line 135:8 Expected identifier but found whitespace
Line 135:10 Unexpected "{"
... and 5 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:mood-model-grid (INDEX:79) */
.custom-image-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 24px;
}

/* LEFT BIG IMAGE */
.custom-image-grid__left {
  position: relative;
}

/* RIGHT GRID */
.custom-image-grid__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD – COMMON */
.custom-image-grid__card {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1 / 1;   /* ✅ SQUARE FOR BOTH */
}

/* IMAGE */
.custom-image-grid__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fill square, no space */
  display: block;
}

/* OVERLAY */
.custom-image-grid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
}

.custom-image-grid__text strong {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
}

.custom-image-grid__text span {
  font-size: 14px;
  opacity: .9;
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-image-grid {
    grid-template-columns: 1fr;
  }

  .custom-image-grid__right {
    grid-template-columns: 1fr;
  }

  /* mobile par bhi square hi rahe */
  .custom-image-grid__card {
    aspect-ratio: 1 / 1;
  }
}
/* END_SECTION:mood-model-grid */

/* START_SECTION:payment-guarantee (INDEX:90) */
.pg-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  column-gap: 60px;
  align-items: stretch;
}

.pg-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pg-icons img,
.pg-icons svg {
  height: {{ section.settings.payment_icon_size }}px;
  width: auto;
  max-width: 42px;
  object-fit: contain;
  display: block;
}
.pg-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.pg-divider-line {
    background: #8C8C8C90;
    width: 2px;
    height: auto;
    min-height: 185px;
    margin: 20px auto;
}

/* SAME TOP ALIGN */
.pg-heading {
  font-size: {{ section.settings.heading_size }}px;
  font-weight: 700;
  color: {{ section.settings.heading_color }};
  line-height: 1.2;
  margin: 0 0 32px;
}

/* RIGHT HEADING */
.pg-guarantee-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  min-height: 48px;
}

.pg-guarantee-head .pg-heading {
  margin: 0;
}

.pg-guarantee-icon {
  width: {{ section.settings.guarantee_icon_size }}px;
  height: auto;
  flex-shrink: 0;
}

/* MOBILE */
@media screen and (max-width: 768px) {

  .pg-wrapper {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .pg-divider-line {
    width: 100%;
    height: 2px;
    min-height: 2px;
  }

  .pg-guarantee-head {
    flex-direction: column;
  }
}
/* END_SECTION:payment-guarantee */