﻿/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px; /* Fixed height */
  padding: 0 40px; /* Removed vertical padding */
  background-color: #08080a;
  border-bottom: 1px solid #08080a;
  position: sticky;
  top: 0;
  z-index: 100;
}


.logo img {
    height: 105px;
    object-fit: contain;
   
  }

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.nav-links a.gold {
  color: goldenrod;
}

.nav-links a.sale {
  color: red;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  background-color: white;
  padding: 12px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 99;
  min-width: 180px;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li:hover {
  background-color: #f9f9f9;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.icons {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 20px;
}

.icons span {
  cursor: pointer;
  color: #fff;
  position: relative;
}

.icons sup {
  color: red;
  font-size: 12px;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* Hamburger Menu - Mobile Only */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 20px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    gap: 15px;
    display: none;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }
}








/* Hero Section */
.hero {
  background: url('../assets/image/sliderimg.png') no-repeat center center/cover;
  height: 75vh;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
 
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.hero h1 {
  font-size: 75px; /* or larger if needed */
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  white-space: nowrap;         /* Prevents text from wrapping to next line */
  overflow: hidden;            /* Optional: hides any overflow */
  text-overflow: ellipsis;     /* Optional: adds ... if text overflows */
}

.hero-content {
  max-width: 100%;
  padding: 0 20px;
  text-align: center;
}

.hero p {
  font-size: 24px;
  margin-bottom: 20px;
}

.btn {
  background-color: #fdf1c7;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #ffeb99;
}

.info-strip {
  background-color: #fdf2e9;
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.info-marquee {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
  gap: 50px;
  padding-left: 100%;
}

.info-item {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
}

.info-item i {
  color: #d35400;
  font-size: 18px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.top-categories {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  
}

.top-categories h2 {
  font-size: 24px;
  font-weight: 700;
  color: #002c6a;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.categories-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 150px;
}

.category-card {
  width: 230px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff7f1;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
}

.label {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

.label .arrow {
  font-size: 18px;
}

.category-card.dark img {
  filter: brightness(0.5);
}

.category-card .overlay {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: bold;
}

.label.live {
  color: red;
  font-weight: bold;
  padding: 15px;
}



.trending-banner {
  background: url('assets/image/bannerimg1.png') no-repeat center center;
  background-size: cover;
  height: 500px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.trending-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 48, 73, 0.3); /* optional overlay */
  z-index: 1;
}

.trending-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;  /* content aligned to right */
  align-items: center;        /* vertically centered */
  height: 100%;
  padding: 0 60px;
}

.text-block {
  max-width: 500px;
  text-align: center;        /* ✅ text centered inside block */
  margin-left: auto;         /* ✅ pushes block to right */
  margin-right: 180px;
}

.brand-title {
  font-size: 66px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.subtitle {
  display: block;
  font-size: 30px;
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 4px;
  color: #fff;
}

.tagline {
  font-size: 18px;
  margin: 20px 0;
  color: #fff;
}

.shop-btn {
  background: #fff3ce;
  color: #000;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.shop-btn:hover {
  background-color: #ffe89e;
  color: #111;
}
.flower-icon {
  font-size: 40px;
  color: #fff;
  margin-bottom: 15px;
}




.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
}

.product-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.product-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.product-card {
  max-width: 250px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.price {
  margin-top: 10px;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}

.discount {
  color: red;
}

.rating {
  color: #f39c12;
  margin-top: 5px;
}
.view-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

.view-more-btn {
  padding: 10px 30px;
  font-size: 16px;
  background-color: #002c6a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
   text-decoration: none;
}

.view-more-btn:hover {
  background-color: #001f4d;
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.product-img-wrapper img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

/* Default main image */
.product-img-wrapper .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Hover effect */
.product-card:hover .img-main {
  opacity: 0;
}

.product-card:hover .img-hover {
  opacity: 1;
}

/* Add to Cart button */
.add-to-cart-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #002c6a;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.product-card:hover .add-to-cart-btn {
  opacity: 1;
}

















.saree-store {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.saree-store .title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #002c6a;
  font-weight: 700;
  letter-spacing: 1px;
}

.saree-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column.tall .saree-card {
  flex: 1;
}

.stack {
  justify-content: space-between;
}

.saree-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.saree-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.saree-card.full-height {
  height: 600px; /* Adjust this to desired size */
}

.saree-card.half-height {
  height: 290px; /* Half of full-height minus gap */
}

.label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
}

.label.gold {
  background-color: #bfa048;
}







.exclusive-collection {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.exclusive-collection .title {
  font-size: 32px;
  font-weight: 700;
  color: #002c6a;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exclusive-banner img {
  width: 100%;
  max-width: 1920px;
  height: 600px;
  object-fit: cover;
 
  display: block;
  margin: 0 auto;
}







.site-footer {
  background-color: #012d6a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 30px;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 180px;
  min-width: 180px;
}

.footer-column h4 {
  font-size: 13px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column.contact p,
.footer-column.newsletter p {
  font-size: 13px;
  margin-bottom: 10px;
  color: #ddd;
}

.footer-column.newsletter form {
  display: flex;
  margin-bottom: 10px;
}

.footer-column.newsletter input {
  padding: 10px;
  flex: 1;
  border: none;
  border-radius: 4px 0 0 4px;
}

.footer-column.newsletter button {
  background-color: #fff;
  color: #012d6a;
  border: none;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: bold;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #bbb;
}

.footer-bottom a {
  color: #ccc;
  margin: 0 5px;
}







.shop-container {
  display: flex;
  align-items: flex-start;
}



/*.shop-container {
  display: flex;
  max-width: 1500px;
  margin: auto;
  padding: 20px;
}*/

.shop-sidebar {
  width: 250px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-right: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  box-sizing: border-box;              /* include padding in size */
  max-height: calc(100vh - 40px);      /* limit to viewport height (adjust 40px if you have top header) */
  overflow-y: auto;                    /* vertical scroll when needed */
}


.shop-sidebar h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.shop-sidebar label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
}

.shop-content {
  flex: 1;
}

.shop-sortbar {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-sortbar select {
  padding: 5px 10px;
  font-size: 14px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.item-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-card:hover {
  transform: translateY(-5px);
}

.item-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.item-img-wrapper img {
  width: 100%;
  transition: opacity 0.3s ease;
  display: block;
}

.item-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.item-img-wrapper:hover .item-img-main {
  opacity: 0;
}

.item-img-wrapper:hover .item-img-hover {
  opacity: 1;
}

.btn-add-to-cart {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #002c6a;
  color: #fff;
  padding: 6px 18px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  transition: 0.3s ease;
  cursor: pointer;
}

.item-img-wrapper:hover .btn-add-to-cart {
  opacity: 1;
}

.item-details {
  padding: 12px;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
  color: #333;
}

.item-price {
  margin: 0;
  font-size: 15px;
}

.item-old {
  text-decoration: line-through;
  color: #888;
  margin-right: 6px;
}

.item-current {
  color: #000;
  font-weight: bold;
  margin-right: 6px;
}

.item-off {
  color: red;
  font-weight: 500;
}

.item-rating {
  margin-top: 6px;
  font-size: 14px;
  color: #f39c12;
}



.color-filter {
  font-family: Arial, sans-serif;
  padding: 10px;
  width: 250px;
}

.color-filter label {
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
}

.extra-colors {
  margin-top: 10px;
}

.hidden {
  display: none;
}

.toggle-icon {
  cursor: pointer;
  font-size: 20px;
  color: #555;
  text-align: center;
  margin-top: 8px;
  user-select: none;
}

/*.shop-container {
  display: flex;
  height: calc(100vh - 80px); /* if your header is ~80px tall; adjust as needed 
}*/
.shop-container {
  display: flex;
  align-items: flex-start;
}

.shop-sidebar {
  width: 250px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-right: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  box-sizing: border-box;

  /* make it scrollable */
  max-height: calc(100vh - 40px); /* 40px for top/bottom margin or header space */
  overflow-y: auto;
}

/* 3. Make sidebar sticky (fixed within the scroll container) */
/*.shop-sidebar {
  position: sticky;
  top: 0; /* stays at top of the .shop-container */
 /* align-self: flex-start;
  overflow: visible; /* ensure drop‑downs still expand */
/*}

/* 4. Constrain & scroll the right‑hand content only */
.shop-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px; /* optional breathing room */
}

.shop-content {
  flex: 1;
  overflow-y: scroll; /* or auto */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

/* Chrome, Edge, Safari */
.shop-content::-webkit-scrollbar {
  display: none;
}


















.cart-wrapper {
  display: flex;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.cart-images {
  display: flex;
  flex-direction: row; /* display images side by side */
  gap: 15px;
  flex-shrink: 0;
}

.cart-img,
.cart-img-hover {
  width: 250px; /* fixed width to avoid growing too large */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.cart-images {
  position: relative;
}

.large-hover-preview {
  position: absolute;
  top: 0;
  left: calc(100% + 20px);
  width: 500px;
  height: 400px;
  overflow: hidden;
  display: none;
  border: 1px solid #ccc;
  background: #fff;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.large-hover-preview img.large-img {
  position: absolute;
  width: 800px;  /* 2x zoom of 400px preview */
  height: auto;
  transform-origin: top left;
  pointer-events: none;
}


/* Show preview only on hover */
.cart-images:hover .large-hover-preview {
  display: block;
}

.cart-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  flex: 1;
}



.cart-info h2 {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
}

.cart-info p {
  margin: 8px 0;
  font-size: 16px;
}

.off {
  color: #c00;
  font-weight: bold;
}

.cart-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.btn-cart,
.btn-buy {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-cart {
  background-color: #fbbc04;
  color: #000;
}

.btn-buy {
  background-color: #e53935;
  color: white;
}

.extra-images-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}

.cart-img-small {
 width: 246px;
  height: 304px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 5px;
}











.delivery-check {
  margin: 20px 0;
}

.delivery-check label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.delivery-input {
  display: flex;
  gap: 10px;
}

.delivery-input input[type="text"] {
  width: 527px; /* or 220px, as needed */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}


.btn-check {
  padding: 10px 20px;
  background-color: #002c6a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-check:hover {
  background-color: #004299;
}


.cart-icons {
  margin-top: 25px;
  display: flex;
  gap: 30px;
}

.icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #000000;
}

.icon-block i {
  font-size: 24px;
  margin-bottom: 5px;
  color: blue;
}

.collection-description {
  padding: 60px 20px;
  background-color: #fdf5f1;
  text-align: center;
}

.collection-description .section-title {
  font-size: 32px;
  color: #6d2e46;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.collection-description .section-text {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}












.cart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.cart-popup {
  position: fixed;
  right: 0;
  top: 0;
  width: 340px;
  height: 100%;
  background: #f9fafb;
  padding: 20px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.cart-popup.active,
.cart-overlay.active {
  display: block;
}

.cart-header {
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1a1a1a;
}

.cart-content {
  flex-grow: 1;
  padding: 20px 0;
}

.cart-item {
  display: flex;
  margin-bottom: 18px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}

.cart-item img {
  width: 65px;
  height: 85px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.cart-item-details {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.cart-footer {
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  background: #f1f5f9;
  position: sticky;
  bottom: 0;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background-color: #1e40af;
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: #1d4ed8;
}

.btn-close-popup {
  position: absolute;
  top: 10px;
  right: 12px;
  background-color: transparent;
  color: #d32f2f; /* Red */
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-close-popup:hover {
  color: #9a0007; /* Darker red */
}


.remove-btn {
  background-color: #c0392b;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 5px;
  transition: background-color 0.3s ease;
}

.remove-btn:hover {
  background-color: #e74c3c;
}


.cart-icon-wrapper {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -18px;
  right: 15px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}









.extra-images-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cart-img-small {
  width: 246px;
  height: 304px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: transform 0.2s ease;
}

.cart-img-small:hover {
  transform: scale(1.1);
}









.about-section {
  padding: 80px 20px;
  background: #fefefe;
  font-family: 'Inter', sans-serif;
}

.about-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  line-height: 1.8;
}

.about-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #222;
  margin-bottom: 25px;
  text-align: center;
}

.about-container p {
  color: #444;
  margin-bottom: 20px;
  font-size: 16px;
  text-align:justify;
}










 .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
  }

  .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .close-btn11 {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .popup-box input,
  .popup-box textarea {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .popup-box button[type="submit"] {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
  }

  @keyframes fadeIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  
  .checkboxlist-inline input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 5px;
}

.checkboxlist-inline label {
    display: inline; /* keep label on same line as checkbox */
    vertical-align: middle;
}
