:root {
  /* Mobile Default Variables */
  --card-width: 190px;
  --card-height: 330px;
  --image-height: 220px;
  --border-color: #e0e0e0;
  --card-gap: 0px; /* ðŸ‘ˆ No gap between cards */
}

/* Grid Layout for Mobile */
.product-card-grid,
.product-listing-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap); /* ðŸ‘ˆ No spacing */
  padding: 0;
  justify-items: center;
}

/* Product Card */
.product-card,
.sh-product-card {
  background: #fff;
  width: var(--card-width);
  height: var(--card-height);
  border: 1px solid var(--border-color) !important;
  border-radius: 0px !important; /* ðŸ‘ˆ Optional: remove corner rounding */
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  box-shadow: none !important; /* ðŸ‘ˆ Remove shadow */
  transition: none;
}

.product-card:hover,
.sh-product-card:hover {
  box-shadow: none !important; /* ðŸ‘ˆ No hover shadow */
}

/* Image Container */
.product-card-image-container {
  width: 100%;
  height: var(--image-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
}

/* Product Image */
.product-card-image,
.pr-long-card .pr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 0px;
  transition: none;
  aspect-ratio: var(--pr-image-aspect-ratio, 3 / 4);
}

/* Product Info */
.product-card-info {
  padding: 8px 6px 0;
  text-align: center;
  font-size: 12px;
  flex-grow: 1;
  overflow: hidden;
  word-break: break-word;
  min-height: 60px;
}

.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;
}

/* ======= Tablet (Ã¢â€°Â¥600px) ======= */
@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;
  }
}

/* ======= Desktop (Ã¢â€°Â¥768px) ======= */
@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;
  }
}


/* ======= Shoopy Overrides & Chat Button Fix ======= */
.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;
}

.sh-shoopy-blog-page .border-inherit {
  border: none;
}

/* ======= Chatwoot Button Fix ======= */
.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 Full Width Fix ======= */
.banner.page-container,
.banner-collection.page-container {
  max-width: none;
  width: 100%;
}
/* ======= Header Flex Fix for Mobile ======= */
@media (max-width: 767px) {
  .main-header {
    justify-content: space-between;
  }
}

/* ======= Header Flex Fix for Desktop===== */
.luxury-header {
  background-color: #4c505A;
}
.nav-link {
  color: white;
}
.mobile-header-icons {
	color: white;
}
@media (min-width: 768px) {
  .search-icon svg {
    stroke: white;
    color: white;
  }
}
@media (min-width: 768px) {
  .wishlist-icon {
    stroke: white;
    color: white;
  }
}
@media (min-width: 768px) {
  .icon-button svg {
    stroke: white;
    color: white;
  }
}
svg.lucide-menu {
  stroke: #fff;
}
.product-card-wishlist svg {
  stroke: #000000;
}
/* Main image wrapper */
.main-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px; /* adjust as needed */
  height: auto;
  margin: auto;
  overflow: hidden;
  background-color: #fff;
}

/* Image inside wrapper */
.main-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps aspect ratio */
  image-rendering: auto; /* auto or crisp-edges */
  max-height: 80vh; /* to prevent overly tall images on big screens */
}
/* Universal Footer Styles (including desktop) */
.luxury-footer {
    background-color: #4c505A;
    color: #ffffff;
    padding: 40px 0 20px;
    border-top: 1px solid #e5e5e5;
}

.luxury-footer .accordion-header,
.luxury-footer .accordion-header button,
.luxury-footer .accordion-item {
    color: #ffffff;
}

.luxury-footer .accordion-header button:hover {
    color: #e0e0e0; /* optional hover effect */
}

.accordion-links a {
    color: #ffffff;
    font-size: 14px;
}
.footer-links a {
	color: #ffffff;
    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: 0px;
  }

  .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; /* added background */
  }
    .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: #f8f8f8;
      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: 0.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: 0.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;
  }

  /* Hide on desktop */
  @media (min-width: 768px) {
    .category-wrapper-clean {
      display: none;
    }
  }

  .category-row-clean {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: nowrap; /* Ensure single row */
  }

  .category-tile {
    flex: 0 0 auto;
    width: 160px; /* Card width */
    height: 200px; /* Card height */
    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: #f8f8f8;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }

  .category-tile:hover img {
    transform: scale(1.05);
  }
  /* Mobile: Scrollable row, hidden on desktop */
  .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: 0px;
      object-fit: contain;
    }

    .mobile-banner-row::-webkit-scrollbar {
      display: none;
    }
  }

  /* Desktop: Show grid with 4 columns */
  @media (min-width: 769px) {
    .mobile-banner-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px; /* Further reduced gap */
      padding: 20px;
      background-color: #111213;
      justify-items: center;
    }

    .mobile-banner-row img {
      width: 100%;
      height: auto;
      max-height: 500px; /* Further increased height */
      max-width: 490px;  /* Increased width */
      object-fit: cover;
      border-radius: 8px;
    }
  }
  .mobile-scroll-gallery {
    display: none; /* Hide on desktop */
  }

  @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;
    }
  }
} 
.shivam-gallery {
      display: flex;
      overflow-x: auto;
      gap: 12px;
      padding: 12px;
    }

    .shivam-gallery .mohit-image {
      flex: 0 0 auto;
      width: 150px;
      height: auto;
      border-radius: 10px;
    }

    @media (min-width: 768px) {
      .shivam-gallery {
        flex-wrap: wrap;
        overflow-x: hidden;
        justify-content: space-between;
      }

      .shivam-gallery .mohit-image {
        flex: 0 0 calc(16.66% - 10px);
        max-width: calc(16.66% - 10px);
      }
    }
	