:root {
  --primary: #7B1E3A;     /* Royal Maroon */
  --secondary: #D4AF37;   /* Gold */
  --accent: #4A154B;      /* Deep Purple */
  --light: #FFF7F9;
  --dark: #1e1e1e;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--dark);
}


/* NAVBAR BASE */
.gv-navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

/* LOGO */
.gv-navbar .navbar-brand img {
  height: 135px;
}
/* BRAND LOGO */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}


/* TEXT WRAP */
.brand-text {
  line-height: 1.1;
  color: #6b2b5b; /* matches logo purple */
  font-weight: 800;

}

/* TOP SMALL TEXT */
.brand-top {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-style: italic;
}

/* MAIN BRAND NAME */
.brand-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 2px 0;
}

/* SUB TEXT */
.brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;

}

/* MOBILE */
@media (max-width: 768px) {
  .brand-text h1 {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 9px;
    
  }
  .gv-navbar .navbar-brand img {
  height: 85px;
}
}

/* NAV LINKS */
.gv-navbar .nav-link {
  color: var(--dark);
  font-weight: 500;
  margin: 0 14px;
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}

/* UNDERLINE EFFECT */
.gv-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width .35s ease;
}

.gv-navbar .nav-link:hover::after,
.gv-navbar .nav-link.active::after {
  width: 100%;
}

.gv-navbar .nav-link.active {
  color: var(--primary);
}

/* TOGGLER */
.gv-toggler {
  border: none;
  outline: none;
}

.gv-toggler span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  margin: 6px 0;
  transition: .4s;
}

/* MOBILE MENU */
@media (max-width: 991px) {

  .gv-navbar {
    padding: 10px 0;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    border-radius: 16px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
  }

  .gv-navbar .nav-link {
    margin: 10px 0;
    font-size: 1.1rem;
    text-align: center;
  }

}



/* HERO SECTION */
.hero-section {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
}

/* ALL IMAGES SAME SIZE */
.hero-section .carousel-item img {
  width: 100%;
  height: 85vh;
  object-fit: cover; /* IMPORTANT */
}

/* LIGHT BLACK OVERLAY (NO GRADIENT) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* TEXT CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  margin-bottom: 8px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

/* BUTTON */
.hero-btn {
  padding: 12px 32px;
  background: var(--secondary);
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* CONTROLS */
.hero-control {
  background: rgba(255,255,255,0.9);
  color: #000;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 1.2rem;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-section,
  .hero-section .carousel-item img {
    height: 70vh;
  }

  .hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

.carousel-control-prev,
.carousel-control-next {
  pointer-events: auto;
  z-index: 5;
}

.hero-overlay {
  pointer-events: none; /* THIS FIXES MOBILE CLICK */
}


/* SECTION */
.home-categories {
  padding: 70px 0;
  background: #fff;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark);
  position: relative;
}

.section-title h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--secondary);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* CATEGORY CARD */
.category-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  text-decoration: none;
}

/* SAME SIZE IMAGES */
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LIGHT BLACK OVERLAY */
.cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: 0.4s ease;
}

/* TEXT */
.cat-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
}

.cat-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 5px;
}

.cat-content p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* HOVER / TAP EFFECT */
.category-card:hover .cat-overlay {
  background: rgba(0,0,0,0.5);
}

.category-card:hover {
  transform: translateY(-6px);
  transition: 0.4s ease;
}

/* MOBILE */
@media (max-width: 768px) {
  .category-card {
    height: 280px;
  }

  .cat-content {
    left: 20px;
    bottom: 20px;
  }

  .cat-content h3 {
    font-size: 1.6rem;
  }



}


/* SECTION */
.trending-products {
  padding: 80px 0;
  background: #fafafa;
}

/* HEADER */
.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.trending-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}



/* CONTROLS */
.trend-controls button {
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-left: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* SLIDER */
.trend-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
}

.trend-slider:active {
  cursor: grabbing;
}

.trend-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.trend-card {
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.trend-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.trend-img {
  position: relative;
  height: 260px;
}

.trend-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LIGHT BLACK OVERLAY */
.trend-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.trend-card:hover .trend-overlay {
  opacity: 1;
}

/* INFO ALIGNMENT */
.trend-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.trend-left h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.price {
  color: var(--primary);
  font-weight: 600;
}

/* ORDER BUTTON RIGHT */
.order-btn {
  width: 38px;
  height: 38px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.order-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .trend-card {
    min-width: 220px;
  }

  .trend-img {
    height: 220px;
  }

  .trending-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
}
}


/* WHY CHOOSE SECTION */
.why-choose {
  padding: 80px 0;
  background: #fff;
}

/* TITLE */
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
}

.section-title .sub-text {
  color: #777;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* CARD */
.why-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 20px;
  background: #fafafa;
  height: 100%;
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON */
.why-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(123,30,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

/* TEXT */
.why-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-card {
    padding: 30px 20px;
  }
}


/* PARALLAX SECTION */
.parallax-section {
  position: relative;
  height: 70vh;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* DESKTOP PARALLAX */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* LIGHT BLACK OVERLAY */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* CONTENT */
.parallax-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.parallax-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 12px;
}

.parallax-content p {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

/* BUTTON */
.parallax-btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 30px;
  background: var(--secondary);
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.parallax-btn:hover {
  transform: translateY(-3px);
}

/* MOBILE FIX (IMPORTANT) */
@media (max-width: 768px) {
  .parallax-section {
    height: 55vh;
  }

  .parallax-content h2 {
    font-size: 2rem;
  }
}


/* ABOUT PREVIEW */
.about-preview {
  padding: 90px 0;
  background: #fff;
}

/* IMAGE */
.about-img {
  border-radius: 22px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* CONTENT */
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* POINTS */
.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-points i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-img img {
    height: 280px;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }
}


/* FEATURED COLLECTION */
.featured-collection {
  padding: 90px 0;
  background: #fff;
}

.featured-img {
  border-radius: 22px;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.featured-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.featured-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-points {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.feature-points span {
  background: #fafafa;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.featured-btn {
  display: inline-block;
  padding: 13px 34px;
  background: var(--secondary);
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .featured-img img {
    height: 280px;
  }

  .featured-content h2 {
    font-size: 1.9rem;
  }
}


/* TESTIMONIALS */
.testimonials {
  padding: 90px 0;
  background: #fafafa;
}

/* HEADER */
.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.testi-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

/* CONTROLS (VISIBLE ON MOBILE TOO) */
.testi-controls button {
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* SLIDER */
.testi-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.testi-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.testi-card {
  min-width: 32%;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

/* USER ICON */
.testi-user {
  margin-bottom: 12px;
}

.testi-user i {
  font-size: 3rem;
  color: var(--primary);
}

/* TEXT */
.testi-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 14px;
}

.testi-card h6 {
  margin-bottom: 2px;
  font-weight: 600;
}

.testi-card span {
  font-size: 0.85rem;
  color: #777;
}

/* TABLET */
@media (max-width: 991px) {
  .testi-card {
    min-width: 48%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .testi-header {
    flex-direction: column;
    gap: 15px;
  }

  .testi-card {
    min-width: 100%;
  }
}


/* FOOTER BASE */
.gv-footer {
  background: #111;
  color: #ccc;
  padding: 80px 0 30px;
  font-size: 0.9rem;
}

/* BRAND */
.footer-brand img {
  height: 110px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.footer-brand p {
  line-height: 1.7;
  margin-bottom: 18px;
}

/* TITLES */
.footer-title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: '';
  width: 35px;
  height: 2px;
  background: var(--secondary);
  display: block;
  margin-top: 6px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

/* CONTACT */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary);
  color: #000;
  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 45px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .gv-footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-contact p {
    justify-content: center;
  }
}


/* PARALLAX PAGE HEADER */
.page-parallax {
  position: relative;
  height: 55vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* DESKTOP PARALLAX */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* SAREES IMAGE */
.sarees-header {
  background-image: url('./img/bg1.jpg');
}

/* OVERLAY (LIGHT BLACK – NO GRADIENT) */
.page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* CONTENT */
.page-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}

.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-content p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* BREADCRUMB */
.breadcrumb-nav {
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.breadcrumb-nav span {
  margin: 0 6px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .page-parallax {
    height: 40vh;
  }

  .page-content h1 {
    font-size: 2rem;
  }

  .page-content p {
    font-size: 0.9rem;
  }
}


/* SAREES GRID */
.sarees-grid {
  padding: 90px 0;
  background: #fff;
}

/* CARD */
.saree-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  height: 100%;
}

.saree-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.saree-img {
  height: 260px;
  overflow: hidden;
}

.saree-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.saree-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}

.saree-left h6 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.saree-left span {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* ORDER BUTTON */
.order-btn {
  width: 36px;
  height: 36px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {
  .saree-img {
    height: 200px;
  }
}


/* FILTER TABS */
.sarees-filter {
  padding: 30px 0;
  background: #fff;
}

.filter-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 0.95rem;
  padding: 6px 2px;
  cursor: pointer;
  position: relative;
  color: #555;
  white-space: nowrap;
}

.filter-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #c18f59;
  transition: 0.3s;
}

.filter-btn.active {
  color: #7b1e3a;
}

.filter-btn.active::after {
  width: 100%;
}

/* GRID */
.sarees-grid {
  padding: 60px 0;
}

.saree-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.saree-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.saree-img {
  height: 240px;
}

.saree-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.saree-info {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.saree-info h6 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.saree-info span {
  color: #7b1e3a;
  font-weight: 600;
}

/* ORDER BUTTON */
.order-btn {
  width: 36px;
  height: 36px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {
  .saree-img {
    height: 200px;
  }
}


/* KURTIS GRID */
.kurtis-grid {
  padding: 90px 0;
  background: #fff;
}

/* CARD */
.kurti-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  height: 100%;
}

.kurti-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.kurti-img {
  height: 260px;
  overflow: hidden;
}

.kurti-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.kurti-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}

.kurti-left h6 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.kurti-left span {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* ORDER BUTTON (REUSE SAME STYLE) */
.order-btn {
  width: 36px;
  height: 36px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {
  .kurti-img {
    height: 200px;
  }
}



/* FILTER TABS */
.kurtis-filter {
  padding: 30px 0;
  background: #fff;
}

.filter-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 0.95rem;
  padding: 6px 2px;
  cursor: pointer;
  position: relative;
  color: #555;
  white-space: nowrap;
  font-weight: 500;
}

.filter-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: 0.3s;
}

.filter-btn.active {
  color: var(--primary);
}

.filter-btn.active::after {
  width: 100%;
}

/* GRID */
.kurtis-grid {
  padding: 60px 0;
  background: #fff;
}

.kurti-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

.kurti-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.kurti-img {
  height: 240px;
}

.kurti-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.kurti-info {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kurti-info h6 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.kurti-info span {
  color: var(--primary);
  font-weight: 600;
}

/* ORDER BUTTON */
.order-btn {
  width: 36px;
  height: 36px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {
  .kurti-img {
    height: 200px;
  }
}


/* ACCESSORIES GRID */
.accessories-grid {
  padding: 90px 0;
  background: #fff;
}

/* CARD */
.accessory-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  height: 100%;
}

.accessory-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.accessory-img {
  height: 240px;
  overflow: hidden;
}

.accessory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.accessory-info {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accessory-info h6 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.accessory-info span {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* ORDER BUTTON (REUSE SAME STYLE) */
.order-btn {
  width: 36px;
  height: 36px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {
  .accessory-img {
    height: 200px;
  }
}


/* FILTER TABS */
.accessories-filter {
  padding: 30px 0;
  background: #fff;
}

.filter-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 0.95rem;
  padding: 6px 2px;
  cursor: pointer;
  position: relative;
  color: #555;
  white-space: nowrap;
  font-weight: 500;
}

.filter-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: 0.3s;
}

.filter-btn.active {
  color: var(--primary);
}

.filter-btn.active::after {
  width: 100%;
}

/* GRID */
.accessories-grid {
  padding: 60px 0;
}

.accessory-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

.accessory-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.accessory-img {
  height: 240px;
}

.accessory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.accessory-info {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accessory-info h6 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.accessory-info span {
  color: var(--primary);
  font-weight: 600;
}

/* ORDER BUTTON */
.order-btn {
  width: 36px;
  height: 36px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {
  .accessory-img {
    height: 200px;
  }
}


/* ABOUT CONTENT */
.about-content-section {
  padding: 90px 0;
  background: #fff;
}

/* IMAGE */
.about-img-box {
  border-radius: 22px;
  overflow: hidden;
}

.about-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* TEXT */
.about-text-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about-text-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* HIGHLIGHTS */
.about-highlights {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.about-highlights i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-img-box img {
    height: 280px;
  }

  .about-text-box h2 {
    font-size: 2rem;
  }
}


/* MISSION & VISION */
.mission-vision {
  padding: 90px 0;
  background: #fafafa;
}

/* TITLE */
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
}

.section-title .sub-text {
  font-size: 0.95rem;
  color: #777;
}

/* CARD */
.mv-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.mv-icon {
  width: 70px;
  height: 70px;
  background: rgba(123,30,58,0.1);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon i {
  font-size: 2rem;
  color: var(--primary);
}

/* TEXT */
.mv-card h4 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.mv-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .mv-card {
    padding: 35px 25px;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}


/* CONTACT SECTION */
.contact-section {
  padding: 90px 0;
  background: #fafafa;
}

/* CONTACT BOX */
.contact-box {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  height: 100%;
}

.contact-box h3 {
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
}

/* CONTACT ITEM */
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--primary);
}

.contact-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

/* SOCIAL MEDIA */
.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.contact-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* NOTE */
.contact-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #777;
}

/* FORM BOX */
.form-box {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  height: 100%;
}

.form-box h3 {
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.form-box button {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-box,
  .form-box {
    padding: 28px;
  }

  .contact-social {
    justify-content: center;
  }
}


/* FLOATING WEBSITE VIEWS */
.floating-views {
  position: fixed;
  left: 15px;
  bottom: 120px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #333;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 9999;
  cursor: default;
}

/* ICON */
.floating-views i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* NUMBER */
.floating-views span {
  font-weight: 600;
}

/* TEXT */
.floating-views small {
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .floating-views {
    left: 10px;
    bottom: 90px;
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}


/* WHATSAPP FLOATING */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 120px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: 0.3s ease;
  text-decoration: none;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 14px;
    bottom: 90px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}


/* FLOATING VIEW COUNTER */
.floating-views {
  position: fixed;
  left: 15px;
  bottom: 120px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #333;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 9999;
}

.floating-views i {
  color: #6a2c5b;
  font-size: 1.1rem;
}

.floating-views span {
  font-weight: 600;
}

.floating-views small {
  color: #777;
}

@media (max-width: 768px) {
  .floating-views {
    left: 10px;
    bottom: 90px;
    font-size: 0.8rem;
  }
}
