/* ===============================
   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; /* REQUIRED */
  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;
}
/* Inside product info (below price) */
.product-card-info {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    align-items: center; /* Align price and badge */
    gap: 8px; /* Space between price and badge */
}

/* Discount badge */
.product-card-discount {
    position: static; /* Inline with price */
    margin: 0;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255,222,106,0.85), #fffdcf);
    border: 0.5px solid #fff8bf;
    border-radius: 10px;
    white-space: nowrap;
}


/* ===============================
   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 (CSS ONLY)
================================ */
.product-card::after,
.sh-product-card::after {
  content: "On Offer";

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  z-index: 20;

  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: 1px solid #fff8bf;
  border-left: none;
  border-radius: 0 14px 14px 0;

  white-space: nowrap;
  pointer-events: none;
}

/* ===============================
   MOBILE TUNING
================================ */
@media (max-width: 480px) {
  .product-card::after,
  .sh-product-card::after {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* ===============================
   TABLET
================================ */
@media (min-width: 600px) {
  .product-card-grid,
  .product-listing-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===============================
   DESKTOP
================================ */
@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: #4c505a
}

.nav-link,
.mobile-header-icons {
    color: #fff
}

@media (min-width:768px) {
    .search-icon svg,
    .wishlist-icon,
    .icon-button svg {
        stroke: #fff;
        color: #fff
    }
}

svg.lucide-menu {
    stroke: #fff
}

.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
}

.luxury-footer {
    background-color: #4c505a;
    color: #fff;
    padding: 40px 0 20px;
    border-top: 1px solid #e5e5e5
}

.luxury-footer .accordion-header,
.luxury-footer .accordion-header button,
.luxury-footer .accordion-item {
    color: #fff
}

.luxury-footer .accordion-header button:hover {
    color: #e0e0e0
}

.accordion-links a,
.footer-links a {
    color: #fff;
    font-size: 14px
}

.footer-links a {
    font-size: 16px
}

.footer-heading {
    font-size: 17px
}

.product-collection {
    max-width: none !important;
    width: 100% !important
}

.product-collection .heading {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 20px !important
}

@media (min-width:1024px) {
    .product-collection .swiper-container .swiper-wrapper {
        gap: 20px !important
    }
}

.mobile-collection-row {
    display: none
}

@media (max-width:768px) {
    .mobile-collection-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 10px;
        background-color: #111213;
        position: relative;
        z-index: 1
    }
    .mobile-collection-row .cat-card {
        display: block;
        overflow: hidden;
        border-radius: 6px
    }
    .mobile-collection-row img {
        width: 100%;
        height: 90px;
        display: block;
        object-fit: cover;
        position: relative;
        z-index: 2;
        border-radius: 0
    }
    .mobile-collection-row .cat-card:hover img {
        transform: scale(1.05);
        transition: transform 0.3s ease
    }
}

.cat-wrapper {
    background-color: #111213;
    padding: 16px;
    color: #fff
}

.cat-section {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.cat-section::-webkit-scrollbar {
    display: none
}

.cat-grid {
    display: flex;
    gap: 12px;
    width: max-content
}

.cat-card {
    text-align: center;
    color: #fff
}

.cat-img-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
    border-radius: 0%;
    overflow: hidden;
    background-color: #fff
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.cat-title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap
}

@media (min-width:768px) {
    .cat-card {
        flex: 0 0 calc(70% / 9)
    }
    .cat-grid {
        gap: 2px
    }
    .cat-img-wrapper {
        width: 180px;
        height: 180px
    }
    .cat-title {
        font-size: 18px
    }
}

.category-section {
    max-width: 100%;
    margin: auto;
    padding: 8px;
    background-color: #111213
}

.image-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.category-card {
    flex: 0 0 auto;
    width: 150px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit
}

@media (min-width:1024px) {
    .image-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        overflow: hidden
    }
    .category-card {
        width: 100%
    }
}

.category-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    background: #fff;
    transition: transform 0.3s ease-in-out
}

.category-card:hover img {
    transform: scale(1.05)
}

.collection-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .5rem;
    padding: 1rem;
    background-color: #111213
}

.collection-item {
    overflow: hidden;
    border-radius: 8px
}

.collection-item picture,
.collection-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover
}

@media (max-width:768px) {
    .collection-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: .5rem
    }
    .collection-item {
        flex: 0 0 auto;
        width: 80%;
        max-width: 280px;
        scroll-snap-align: center
    }
    .collection-item img {
        height: 280px;
        object-fit: cover
    }
}

.image-scroll {
    display: flex;
    overflow-x: auto;
    padding: 8px 4px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background-color: #111213
}

.image-scroll::-webkit-scrollbar-track {
    display: none
}

.img-wrapper {
    flex-shrink: 0;
    scroll-snap-align: center;
    margin-right: 10px
}

.img-wrapper img {
    width: 230px;
    height: 310px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    background-color: #f3f3f3
}

@media (max-width:768px) {
    .img-wrapper img {
        width: 180px;
        height: 240px
    }
}

.category-wrapper-clean {
    max-width: 100%;
    margin: auto;
    padding: 12px;
    background-color: #000;
    overflow-x: auto
}

@media (min-width:768px) {
    .category-wrapper-clean {
        display: none
    }
}

.category-row-clean {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: nowrap
}

.category-tile {
    flex: 0 0 auto;
    width: 160px;
    height: 200px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out
}

.category-tile:hover img {
    transform: scale(1.05)
}

.mobile-banner-row {
    display: none
}

@media (max-width:768px) {
    .mobile-banner-row {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 10px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        background-color: #111213
    }
    .mobile-banner-row img {
        max-width: 300px;
        height: 400px;
        flex-shrink: 0;
        border-radius: 0;
        object-fit: contain
    }
    .mobile-banner-row::-webkit-scrollbar {
        display: none
    }
}

@media (min-width:769px) {
    .mobile-banner-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 20px;
        background-color: #111213;
        justify-items: center
    }
    .mobile-banner-row img {
        width: 100%;
        height: auto;
        max-height: 500px;
        max-width: 490px;
        object-fit: cover;
        border-radius: 8px
    }
}

.mobile-scroll-gallery {
    display: none
}

@media (max-width:768px) {
    .mobile-scroll-gallery {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        background-color: #111213;
        padding: 0;
        align-items: center
    }
    .mobile-scroll-gallery img {
        flex-shrink: 0;
        width: auto;
        height: auto;
        max-height: 128px;
        scroll-snap-align: center;
        object-fit: contain;
        display: block;
        border-radius: 6px
    }
}

.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 – CSS ONLY
===================================== */

.product-card,
.sh-product-card {
    position: relative !important;
    overflow: hidden;
}

.product-card::after,
.sh-product-card::after {
    content: "On Offer";

    position: absolute;
    top: 50%;
    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;
}

@media (max-width: 480px) {
    .product-card::after,
    .sh-product-card::after {
        font-size: 10px;
        padding: 4px 10px;
    }
}
