/* ===============================
   ROOT VARIABLES
================================ */
:root {
  --card-radius: 6px;
  --card-gap: 12px;
  --card-bg: #ffffff;
  --text-dark: #111;
  --text-muted: #7a7a7a;
  --price-color: #000;
}

/* ===============================
   PRODUCT GRID
================================ */
.product-card-grid,
.product-listing-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
  padding: 12px;
}

/* ===============================
   PRODUCT CARD
================================ */
.product-card,
.sh-product-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  border: none !important;
  box-shadow: none !important;
  position: relative !important;
  overflow: hidden;
}

/* ===============================
   PRODUCT IMAGE
================================ */
.product-card-image-container {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f6f6f6;
  position: relative;
  overflow: hidden;
}

.product-card-image,
.pr-long-card .pr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   PRODUCT INFO
================================ */
.product-card-info h2,
.product-card-info .product-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #222;
}

.product-card-info .price {
  font-size: 16px;
  color: #388e3c;
  font-weight: 900;
  margin-top: 5px;
}

/* ===============================
   WISHLIST ICON
================================ */
.product-card .wishlist-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  z-index: 30;
}

/* ===============================
   FORCE "ON OFFER" BADGE
================================ */
.product-card::after,
.sh-product-card::after {
  content: "Trending Now";
  position: absolute;
  top: 8px; /* fixed at top to prevent stretching */
  left: 0;
  z-index: 999;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: #3b3b3b;
  background: linear-gradient(135deg, rgba(255,222,106,0.9), #fffdcf);
  border: 0.5px solid #fff8bf;
  border-left-width: 0;
  border-radius: 0 14px 14px 0;
  white-space: nowrap;
  pointer-events: none;
  animation: offerBlink 3s infinite;
}

/* Amazon-style blink */
@keyframes offerBlink {
  0%, 70%, 100% { opacity: 1; box-shadow: none; }
  75% { opacity: 0; box-shadow: 0 0 18px rgba(255,215,0,0.9); }
  80% { opacity: 1; box-shadow: 0 0 22px rgba(255,215,0,1); }
}

/* ===============================
   IMAGE WRAPPER
================================ */
.main-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  background-color: #fff;
}

.main-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh; /* responsive max-height */
  object-fit: contain;
}

/* ===============================
   MOBILE & RESPONSIVE
================================ */
@media (max-width: 480px) {
  .product-card-grid,
  .product-listing-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px;
    gap: 8px;
  }

  .product-card::after,
  .sh-product-card::after {
    font-size: 10px;
    padding: 4px 10px;
  }

  .img-wrapper img,
  .mobile-banner-row img,
  .collection-item img {
    width: 100%;
    height: auto;
    max-height: 50vh;
  }
}

@media (min-width: 600px) {
  .product-card-grid,
  .product-listing-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px;
  }
}

@media (min-width: 768px) {
  .product-card-grid,
  .product-listing-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .cat-img-wrapper {
    width: 120px;
    height: 120px;
  }

  .category-tile {
    width: 160px;
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .product-card-grid,
  .product-listing-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
  }
}
/* ===============================
   GLOBAL SAFETY
================================ */
html,
body {
  overflow-x: hidden;
}

.cat-wrapper,
.category-section,
.collection-wrapper,
.image-scroll,
.mobile-banner-row,
.mobile-scroll-gallery {
  background-color: #111213;
}

.heading-title,
.shop-all-link {
  color: #fff !important;
}
.product-detail-grid .image-gallery-container .swiper,
.product-detail-grid .image-gallery-container .swiper-wrapper,
.product-detail-grid .image-gallery-container .swiper-slide {
    background-color: #ffffff !important
}

.product-detail-grid .image-gallery-container .main-image-wrapper {
    background-color: #ffffff !important
}

.product-detail-grid .image-gallery-container .main-image-wrapper img {
    background-color: #ffffff !important
}

.main-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: auto;
    background-color: #fff
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain
}

.cat-wrapper,
.category-section,
.collection-wrapper,
.image-scroll,
.mobile-banner-row,
.mobile-scroll-gallery {
    background-color: #111213
}

.product-card-info,
.product-card-price,
.__className_337041 {
    color: #000
}

.product-card-info h2,
.product-card-info .product-title {
    font-size: 8px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222
}

.product-card-info .price {
    font-size: 20px;
    color: #388e3c;
    font-weight: 900;
    margin-top: 7px
}

@media (min-width:600px) {
    :root {
        --card-width: 190px;
        --card-height: 300px;
        --image-height: 180px;
        --card-gap: 10px
    }
    .product-card-grid,
    .product-listing-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 8px
    }
    .product-card-info {
        font-size: 13px
    }
    .product-card-info h3 {
        font-size: 13px
    }
    .product-card-info .price {
        font-size: 14px
    }
    .product-card .wishlist-button {
        width: 28px;
        height: 28px;
        font-size: 16px
    }
}

@media (min-width:768px) {
    :root {
        --card-width: 399px;
        --card-height: 510px;
        --image-height: 399px;
        --card-gap: 3px
    }
    .product-card-grid,
    .product-listing-container {
        grid-template-columns: repeat(4, 1fr);
        padding: 12px
    }
    .product-card-info {
        font-size: 13px
    }
    .product-card-info h3 {
        font-size: 16px;
        font-weight: 700
    }
    .product-card-price {
        font-size: 16px;
        font-weight: 700
    }
    .product-card .wishlist-button {
        width: 32px;
        height: 32px;
        font-size: 18px
    }
}

.sh-shoopy-html-page>div,
.sh-shoopy-html-page .border-inherit {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    border: none !important
}

.sh-shoopy-html-page .text-zinc-900,
.ref-widg.sh-referral-widget {
    display: none !important
}

@media (max-width:768px) {
    html,
    body {
        overflow-x: hidden !important
    }
    .sh-shoopy-blog-page {
        max-width: 100% !important;
        overflow-x: hidden !important
    }
    .sh-shoopy-blog-page * {
        box-sizing: border-box !important;
        max-width: 100% !important
    }
}

.woot-widget-bubble {
    position: fixed !important;
    bottom: 64px !important;
    right: 16px !important;
    z-index: 999999 !important
}

@media (max-width:768px) {
    .woot-widget-holder {
        width: 80% !important;
        height: 60vh !important;
        bottom: 10px !important;
        right: 10px !important;
        transform: translateY(45%) !important
    }
}

.woot-widget-powered-by {
    display: none !important
}

.banner.page-container,
.banner-collection.page-container {
    max-width: none;
    width: 100%
}

@media (max-width:767px) {
    .main-header {
        justify-content: space-between
    }
}

.luxury-header {
    background-color: #ffff
}

.nav-link,
.mobile-header-icons {
    color: #000000
}

@media (min-width:768px) {
    .search-icon svg,
    .wishlist-icon,
    .icon-button svg {
        stroke: #fff;
        color: #fff
    }
}

svg.lucide-menu {
    stroke: #000
}

.product-card-wishlist svg {
    stroke: #000
}

.main-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: auto;
    overflow: hidden;
    background-color: #fff
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    image-rendering: auto;
    max-height: 80vh

.sh-header-arrow-icon {
    color: #fff !important
}

.heading-title {
    color: #fff !important
}

.shop-all-link {
    color: #fff
}

@media (min-width:1024px) {
    .ProductGridCollection-component .page-container {
        max-width: none !important;
        margin-left: auto;
        margin-right: auto
    }
}

.beauty-link-mobile {
    color: #000
}

.ac-popup-item {
    color: #000
}

.mobile-menu-item {
    color: #000
}

}

.product-card-price {
    color: #000
}

.product-card-info {
    color: #000
}

.__className_337041 {
    color: #000
}

.related-products.my-6 h2.heading-title,
.related-products.my-6 h2.heading-title * {
    color: #000000 !important\
}	
/* =====================================
   FORCE ADD "ON OFFER" BADGE – FULL CSS
   Amazon-Style Blink (Once Every 3s)
===================================== */

.product-card,
.sh-product-card {
    position: relative !important;
    overflow: hidden;
}

/* Badge */
.product-card::after,
.sh-product-card::after {
    content: "Trending Now";

    position: absolute;
    top: 70%;
    left: 0;
    transform: translateY(-50%);

    z-index: 999;

    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;

    color: #3b3b3b;
    background: linear-gradient(
        135deg,
        rgba(255, 222, 106, 0.9),
        #fffdcf
    );

    border: 0.5px solid #fff8bf;
    border-left-width: 0;
    border-radius: 0 14px 14px 0;

    white-space: nowrap;
    pointer-events: none;

    /* Animation */
    animation: offerBlink 3s infinite;
}

/* Amazon-style blink */
@keyframes offerBlink {
    0% {
        opacity: 1;
        box-shadow: none;
    }
    70% {
        opacity: 1;
        box-shadow: none;
    }
    75% {
        opacity: 0;
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.9);
    }
    80% {
        opacity: 1;
        box-shadow: 0 0 22px rgba(255, 215, 0, 1);
    }
    100% {
        opacity: 1;
        box-shadow: none;
    }
}

/* Mobile fine-tuning */
@media (max-width: 480px) {
    .product-card::after,
    .sh-product-card::after {
        font-size: 10px;
        padding: 4px 10px;
    }
}
/* 1️⃣ Break Shopify container limits */
@media (max-width: 768px) {
  .banner.page-container,
  .banner-collection.page-container,
  .banner-root,
  .banner,
  .swiper {
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 2️⃣ Swiper internal wrappers */
  .swiper-wrapper,
  .swiper-slide {
    width: 100vw !important;
  }

  /* 3️⃣ IMAGE – THIS IS THE REAL FIX */
  .swiper-slide img,
  .hero-banner img,
  .banner img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
  }
}
/* Desktop only – make header SVG icons black */
@media (min-width: 769px) {
  .icon-button svg,
  .icon-button svg path,
  .icon-button svg line,
  .icon-button svg circle {
    stroke: #000000 !important;
    fill: none !important;
  }
}
/* Desktop header icons – force black */
@media (min-width: 769px) {
  .utility-icons svg,
  .search-icon svg,
  .icon-button svg {
    stroke: #000000 !important;
    fill: none !important;
  }

  .utility-icons svg path,
  .search-icon svg path,
  .icon-button svg path {
    stroke: #000000 !important;
  }
}
