* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* Maintenance Bar */
.maintenance {
  background-color: #8ab98a;
  color: #000;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Header Container */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  flex-wrap: wrap;
}

.phone,
.icons {
  color: #5b7d63;
  font-size: 25px;
}

.logo img {
  height: 150px;
}

.icons i {
  margin-left: 20px;
  cursor: pointer;
}

/* Navbar */
.navbar {
  text-align: center;
  width: 100%;
  background-color: #fff;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #5b7d63;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
  }

  .logo {
    flex: 1 1 100%;
    text-align: center;
    margin: 10px 0;
  }
  .logo img {
    height: 100px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fff;
  }
  .phone,
  .icons {
    display: none;
  }
  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

section {
  padding: 40px 20px;
  text-align: center;
}

section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 90%;
  height: auto;
  display: block;
}
.hero-he {
  background: #d5d1bd;
  position: absolute;
  padding: 830px 200px;
  right: 80px;
}
.hero-content {
  position: absolute;
  right: 80px;
  padding: 20px;
  max-width: 400px;
  text-align: center;
}
/* ✅ RESPONSIVE DESIGN */

/* --- For laptops and medium screens (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .hero-he {
    /* padding: 600px 150px;
    right: 50px; */
    display: none;
  }

  .hero-content {
    right: 50px;
    max-width: 350px;
  }
}

/* --- For tablets (max-width: 768px) --- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-he {
    /* padding: 400px 100px;
    right: 20px; */
    display: none;
  }

  .hero-content {
    position: absolute;
    right: 20px;
    left: 20px;
    max-width: 90%;
    text-align: center;
  }

  .hero-img {
    width: 100%;
  }
}

/* --- For mobile phones (max-width: 480px) --- */
@media (max-width: 480px) {
  .hero {
    flex-direction: column;
  }

  .hero-he {
    /* padding: 254px 60px;
    right: 19px;
    top: 36px; */
    display: none;
  }

  .hero-content {
    position: relative;
    right: 0;
    left: 0;
    padding: 10px;
    text-align: center;
    max-width: 100%;
  }

  .hero-img {
    width: 100%;
    height: auto;
  }
}
.story {
  background: #d5d1bd;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
}

.gallery-grid,
.product-grid {
  display: grid;
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card img {
  width: 70%;
  height: auto;
  border-radius: 5px;
}
.product-card P {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}
.add-to-cart {
  display: inline-block;
  margin-top: 10px;
  background-color: #4a7c59;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background-color: #3b6047;
  transform: scale(1.05);
}

/* 
.contact-map {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-details {
  max-width: 400px;
  text-align: left;
}

.contact-map iframe {
  width: 100%;
  max-width: 500px;
  height: 300px;
  border: 0;
} */
.contact-map {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 50px 8%;
  background: #f9fafc;
  flex-wrap: wrap;
}

.contact-details {
  flex: 1;
  max-width: 400px;
}

.contact-details h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.contact-details p {
  margin: 8px 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.contact-details p a {
  color: #555;
  text-decoration: none;
  font-weight: bold;
}

.contact-details strong {
  color: #000;
}

.contact-details button {
  margin-top: 15px;
  padding: 12px 25px;
  border: none;
  background: #3f51b5;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s ease;
}

.contact-details button:hover {
  background: #2c3e91;
}

.contact-map iframe {
  flex: 2;
  min-height: 400px;
  border: none;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-map {
    flex-direction: column;
    padding: 30px 5%;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}

.subscribe form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe input {
  padding: 10px;
  min-width: 250px;
}

.subscribe button {
  padding: 10px 20px;
  background-color: #5b7d63;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  background-color: #f0f0f0;
  padding: 20px;
  font-size: 14px;
  text-align: center;
}

footer a {
  text-decoration: none;
  color: #333;
}

@media (max-width: 768px) {
  .hero-content {
    position: static;
    background: #fff;
    margin-top: -30px;
  }

  .contact-map {
    flex-direction: column;
    align-items: center;
  }
}

/* shop */
.product-showcase {
  padding: 50px 8%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-row.reverse {
  flex-direction: row-reverse;
}

.product-image {
  flex: 1;
  min-width: 300px;
}

.product-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-content {
  flex: 1;
  min-width: 300px;
}

.product-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.product-content .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3f51b5;
  margin-bottom: 12px;
}

.product-content .desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.actions {
  display: flex;
  gap: 15px;
  margin-left: 100px;
}

.btn {
  padding: 18px 35px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn.buy {
  background: transparent;
  border: 2px solid #3f51b5;
  color: #3f51b5;
}

.btn.buy:hover {
  background: #3f51b5;
  color: #fff;
}

.btn.cart {
  background: #3f51b5;
  color: #fff;
}

.btn.cart:hover {
  background: #2c3e91;
}

/* Responsive */
@media (max-width: 992px) {
  .product-row {
    flex-direction: column !important;
    text-align: center;
  }

  .product-content {
    margin-top: 20px;
  }

  .actions {
    justify-content: center;
  }
}

/*  */

/* Unique Lehenga slider styles (qi- prefix) */
.qi-lehenga-slider-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 18px;
  text-align: center;
  font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.qi-lehenga-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #3a6b4b;
}

/* Stage */
.qi-lehenga-stage {
  position: relative;
  height: 640px; /* change if you want taller/shorter */
  max-height: 100vh;
  margin: 0 auto 18px;
  overflow: hidden;
  display: block;
}

/* Base slide - absolutely positioned so we can place “left1/left2/center/right1/right2” exactly */
.qi-lehenga-slide {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  transition: all 600ms cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform, opacity, left;
  opacity: 0;
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

/* image rules */
.qi-lehenga-slide img {
  width: 50%;
  height: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

/* caption */
.qi-lehenga-caption {
  margin-top: 14px;
  font-size: 16px;
  color: #222;
  display: none;
}

/* Positions
   left2  - far left (small, faint)
   left1  - left neighbor (medium, faded)
   center - big, fully visible
   right1 - right neighbor (medium, faded)
   right2 - far right
*/

.qi-lehenga-slide.position-center {
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 50;
  pointer-events: auto;
  width: min(44vw, 560px); /* center width responsive */
}
.qi-lehenga-slide.position-center .qi-lehenga-caption {
  display: block;
}

/* immediate neighbors */
.qi-lehenga-slide.position-left1,
.qi-lehenga-slide.position-right1 {
  opacity: 0.48;
  z-index: 30;
  pointer-events: none;
  width: min(28vw, 360px);
  transform: translate(-50%, -50%) scale(0.88);
}

/* farther neighbors */
.qi-lehenga-slide.position-left2,
.qi-lehenga-slide.position-right2 {
  opacity: 0.18;
  z-index: 15;
  pointer-events: none;
  width: min(18vw, 240px);
  transform: translate(-50%, -50%) scale(0.74);
}

/* explicit left/right offsets to position visually */
.qi-lehenga-slide.position-left2 {
  left: 8%;
  filter: grayscale(30%);
}
.qi-lehenga-slide.position-left1 {
  left: 28%;
  filter: grayscale(20%);
}
.qi-lehenga-slide.position-center {
  left: 50%;
  filter: none;
}
.qi-lehenga-slide.position-right1 {
  left: 72%;
  filter: grayscale(20%);
}
.qi-lehenga-slide.position-right2 {
  left: 92%;
  filter: grayscale(30%);
}

/* Hidden slides (outside the 5 visible area) */
.qi-lehenga-slide.position-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 1;
}

/* Navigation arrows (small, subtle) */
.qi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 44px;
  height: 44px;
  border-radius: 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #222;
  z-index: 90;
}
.qi-nav.qi-prev {
  left: 8px;
}
.qi-nav.qi-next {
  right: 8px;
}

/* Thumbnails */
.qi-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.qi-thumb {
  width: 70px;
  height: 70px;
  padding: 3px;
  border-radius: 6px;
  background: white;
  border: 2px solid transparent;
  cursor: pointer;
}
.qi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.qi-thumb.active {
  border-color: #3a6b4b;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Responsive tweaks */
@media (max-width: 980px) {
  .qi-lehenga-stage {
    height: 56vh;
  }
  .qi-lehenga-slide.position-left2 {
    left: 6%;
  }
  .qi-lehenga-slide.position-right2 {
    left: 94%;
  }
}

@media (max-width: 720px) {
  /* show only center and tiny neighbors */
  .qi-lehenga-stage {
    height: 54vh;
  }
  .qi-lehenga-slide.position-left2,
  .qi-lehenga-slide.position-right2 {
    display: none;
  }
  .qi-lehenga-slide.position-left1,
  .qi-lehenga-slide.position-right1 {
    width: 34vw;
    left: 18%;
    left: 18%;
  }
  .qi-lehenga-slide.position-left1 {
    left: 16%;
    transform: translate(-50%, -50%) scale(0.9);
  }
  .qi-lehenga-slide.position-right1 {
    left: 84%;
    transform: translate(-50%, -50%) scale(0.9);
  }
  .qi-lehenga-slide.position-center {
    width: 86vw;
    max-width: none;
  }
  .qi-thumb {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 420px) {
  .qi-lehenga-stage {
    height: 46vh;
  }
  .qi-thumb {
    width: 44px;
    height: 44px;
  }
  .qi-nav {
    width: 36px;
    height: 36px;
  }
}

.cart-container {
  background: #fff;
  width: 100%;
  max-width: 600px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cart-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #333;
}

/* --- Cart Items --- */
.cart-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-name {
  font-size: 1rem;
  color: #222;
  margin-bottom: 6px;
  font-weight: 600;
}

.item-price {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: #4a7c59;
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.qty-btn:hover {
  background: #3b6449;
}

.qty {
  font-weight: bold;
  color: #333;
}

/* --- Total Section --- */
.cart-total {
  text-align: right;
  font-size: 1.1rem;
  margin-top: 20px;
  font-weight: 600;
}

/* --- Action Buttons --- */
.cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 25px;
}

.btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.continue {
  background: #eee;
  color: #333;
}

.continue:hover {
  background: #ddd;
}

.checkout {
  background: #4caf50;
  color: #fff;
}

.checkout:hover {
  background: #43a047;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .cart-container {
    padding: 20px;
  }
  .cart-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1100px;
}

/* ✅ Left Side - Form */
.checkout-form {
  flex: 1;
  min-width: 300px;
}

.checkout-form h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #4a7c59;
  padding-bottom: 5px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #4a7c59;
}

.otp-btn {
  background: #4a7c59;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.otp-btn:hover {
  background: #3b6048;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}

.payment-method input {
  accent-color: #4a7c59;
}

.img1 {
  width: 80px;
  vertical-align: middle;
}

.btn {
  display: inline-block;
  width: 100%;
  background: #4a7c59;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #3b6048;
}

/* ✅ Right Side - Order Summary */
.order-summary {
  flex: 0.8;
  min-width: 280px;
  background: #fafafa;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #eee;
}

.order-summary h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #4a7c59;
  padding-bottom: 5px;
}

#order-items p {
  font-size: 1rem;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.order-total {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: right;
  color: #333;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }
  .checkout-container {
    flex-direction: column;
    padding: 20px;
  }
  .order-summary {
    order: -1;
  }
}

@media (max-width: 480px) {
  .btn {
    font-size: 1rem;
  }
}

.icons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.cart-icon-container {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .cart-count {
    top: -6px;
    right: -8px;
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .icons {
    gap: 15px;
  }
}
.cart-count.bump {
  animation: bump 0.3s ease;
}

@keyframes bump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.title,
.title li {
  margin: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.tfaq {
  text-align: center;
}
.blouse-gallery {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.blouse-gallery h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.blouse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}

.blouse-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blouse-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blouse-card img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.blouse-card p {
  font-size: 1em;
  color: #333;
  margin: 10px 0;
}

.blouse-card .add-to-cart {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blouse-card .add-to-cart:hover {
  background-color: #c2185b;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin: 28px 0 6px;
  color: #2e3d34;
}
.section-subtitle {
  text-align: center;
  margin-bottom: 18px;
  color: #666;
  font-style: italic;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  padding: 0 20px 40px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
}
.product-card h3 {
  margin: 6px 0 0;
  font-size: 16px;
  color: #2c3e50;
}
.product-card .price {
  font-weight: 700;
  color: #2e7d5a;
  margin-top: 4px;
}
.product-card .desc {
  color: #444;
  font-size: 14px;
  min-height: 40px;
}
.add-to-cart {
  margin-top: auto;
  background: #2e7d5a;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.add-to-cart:hover {
  background: #246644;
}

/* responsive tweaks */
@media (max-width: 992px) {
  .product-card img {
    height: 200px;
  }
}
@media (max-width: 640px) {
  .product-card img {
    height: 600px;
  }
  .section-title {
    font-size: 22px;
  }
  .product-card {
    padding: 10px;
  }
}
