: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;
    }
}
	
	