/* Sakchi Craft (সাক্ষী ক্রাফট) - Hero Image Slider Enabled Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --primary-pink: #D81B60;          /* Sakchi cursive text & dress Rose Magenta */
  --primary-dark: #9A0036;          /* Deep rose magenta shadow */
  --primary-light: #F06292;         /* Soft accent pink */
  --accent-gold: #D4AF37;           /* Logo outer ring, crown & needle Gold */
  --accent-gold-light: #F9E79F;     /* Soft gold accent */
  --bg-cream: #FFF5F8;              /* Logo soft blush cream background */
  --bg-card: #FFFFFF;
  --bg-soft: #FFEBF2;               /* Soft rosy card background */
  --text-dark: #21191D;             /* Logo 'Craft' word Charcoal Ebony */
  --text-muted: #6B4E5B;            /* Muted text */
  --text-light: #8E6D7C;
  --border-color: #F8C8D8;          /* Soft rose border */
  --shadow-sm: 0 4px 12px rgba(216, 27, 96, 0.06);
  --shadow-md: 0 8px 24px rgba(216, 27, 96, 0.12);
  --shadow-lg: 0 16px 40px rgba(216, 27, 96, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Hind Siliguri', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.num-font {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-pink));
  color: #FFF;
  font-size: 0.9rem;
  padding: 0.55rem 0;
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.top-bar span.badge {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 245, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
  line-height: 1.1;
}

.logo-text p {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.98rem;
}

.nav-links a:hover {
  color: var(--primary-pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Hamburger Menu Toggle Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-pink);
  cursor: pointer;
  padding: 0.4rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--bg-soft);
}

/* Mobile Navigation Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1100;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(-300px);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.mobile-drawer-header .logo-brand {
  gap: 0.6rem;
}

.mobile-drawer-header .logo-img {
  width: 40px;
  height: 40px;
}

.mobile-drawer-close {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--primary-pink);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  background: transparent;
  transition: var(--transition);
}

.mobile-drawer-links a i {
  color: var(--primary-pink);
  font-size: 1.1rem;
  width: 24px;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  background: var(--bg-soft);
  color: var(--primary-pink);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.mobile-drawer-actions .btn {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-dark));
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(216, 27, 96, 0.38);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-pink));
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  background: #20BD5A;
}

.btn-outline {
  background: transparent;
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
}

.btn-outline:hover {
  background: var(--primary-pink);
  color: #FFFFFF;
}

/* Hero Section */
.hero {
  padding: 4rem 0 4.5rem;
  background: radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.15), transparent 45%),
              radial-gradient(circle at 10% 85%, rgba(216, 27, 96, 0.1), transparent 50%),
              var(--bg-cream);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #FFEAEF;
  border: 1px solid rgba(216, 27, 96, 0.2);
  color: var(--primary-pink);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero-title span.highlight {
  color: var(--primary-pink);
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.05) 100%);
  padding: 0 0.4rem;
  border-radius: 4px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--bg-soft);
  color: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--border-color);
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Hero Image Slider Visual Container */
.hero-visual {
  position: relative;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  background-color: #F8EBF0;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  height: 480px;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--primary-pink);
  border: 1px solid var(--border-color);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary-pink);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  display: flex;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--accent-gold);
  width: 20px;
  border-radius: var(--radius-pill);
}

.hero-float-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tag-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-pink);
}

.tag-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

#hero-slide-cta {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(216, 27, 96, 0.35);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

#hero-slide-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.45);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Features Section */
.features-section {
  padding: 4.5rem 0;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-card);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.step-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-gold), #B89324);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Gallery Showcase */
.gallery-section {
  padding: 5rem 0;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  background: #F8E3EC;
  color: var(--text-dark);
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-pink);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.gallery-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
  position: relative;
  height: 290px;
  overflow: hidden;
  background-color: #F8EBF0;
  cursor: pointer;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.06);
}

.img-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(216, 27, 96, 0.88);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-img-wrapper:hover .zoom-overlay {
  opacity: 1;
}

.gallery-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.gallery-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-color);
}

.price-tag {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-pink);
}

.order-mini-btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--primary-pink);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.order-mini-btn:hover {
  background: var(--primary-pink);
  color: #FFFFFF;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 860px;
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #FFF;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-box {
  background: #000;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-box img {
  max-height: 480px;
  width: 100%;
  object-fit: contain;
}

.lightbox-details {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-details h3 {
  font-size: 1.6rem;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
}

.lightbox-details p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Dedicated Checkout Wrapper */
.checkout-section {
  padding: 2.25rem 0 4rem;
}

.checkout-page-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.checkout-title {
  font-size: 2.1rem;
  color: var(--primary-pink);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.checkout-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

.checkout-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--border-color);
}

.checkout-step-header .step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-dark));
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(216, 27, 96, 0.25);
  flex-shrink: 0;
}

.checkout-step-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.checkout-wrapper {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 3rem;
  margin-bottom: 3rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-label span.req {
  color: #D9381E;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background-color: #FFFDFB;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.12);
  background-color: #FFFFFF;
}

.measurements-box {
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--accent-gold);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.measurements-box h4 {
  font-size: 1.05rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.measure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.summary-sidebar {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 2rem;
  height: fit-content;
}

.summary-product-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.summary-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.summary-info h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.summary-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.summary-row.total {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-pink);
}

/* Thank You Page */
.thankyou-wrapper {
  max-width: 650px;
  margin: 2rem auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  text-align: center;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: #EAFBF1;
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  animation: pulseGreen 2.5s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.thankyou-title {
  font-size: 2rem;
  color: var(--primary-pink);
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.thankyou-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.order-receipt {
  background: #FFFBFD;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.receipt-item-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px dashed var(--border-color);
}

.receipt-prod-img {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.receipt-order-badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--primary-pink);
  font-size: 0.8rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.receipt-prod-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.receipt-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.receipt-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed #F5E6EC;
}

@media (min-width: 480px) {
  .receipt-detail-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.detail-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.detail-label i {
  color: var(--primary-pink);
}

.detail-val {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 700;
  word-break: break-word;
}

.receipt-detail-row.total-row {
  border-bottom: none;
  border-top: 2px solid var(--border-color);
  padding-top: 0.85rem;
  margin-top: 0.3rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.detail-label.total {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 800;
}

.detail-val.total-amount {
  font-size: 1.35rem;
  color: var(--primary-pink);
  font-weight: 800;
}

.thankyou-next-steps {
  background: #FFF0F5;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.thankyou-wa-btn {
  width: 100%;
  max-width: 420px;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* USPs Section */
.usp-section {
  padding: 4.5rem 0;
  background-color: var(--bg-cream);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.usp-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.usp-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: rgba(216, 27, 96, 0.08);
  color: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.usp-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.usp-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Reviews */
.testimonials-section {
  padding: 4.5rem 0;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border-color);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #FFB800;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-pink);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-info p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* FAQ Accordion */
.faq-section {
  padding: 4.5rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-header {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-header:hover {
  color: var(--primary-pink);
  background: var(--bg-soft);
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* Footer */
.footer {
  background: #1F1116;
  color: #D6C7CF;
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
}

.footer-logo h2 {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #A3919B;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2F1922;
  font-size: 0.85rem;
  color: #8C7883;
}

.copyright a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.copyright a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Sticky Mobile Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 245, 248, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  display: none;
  gap: 0.75rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

.mobile-sticky-bar .btn {
  flex: 1;
  padding: 0.65rem 0.5rem;
  font-size: 0.9rem;
}

/* Comprehensive Mobile & Responsive Media Queries */

/* Tablet (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-ctas, .hero-trust-badges {
    justify-content: center;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  /* Prevent horizontal overflow on touch */
  html, body {
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
  }

  /* Top Bar Mobile - Ultra Compact Single Line */
  .top-bar {
    font-size: 0.74rem;
    padding: 0.35rem 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    justify-content: center;
    max-height: 32px;
  }
  
  .top-bar span.badge {
    display: none; /* Hide bulky badge on mobile */
  }

  /* Navbar Mobile - Compact & Clean */
  .navbar {
    padding: 0.45rem 0;
  }

  .nav-links {
    display: none; /* Accessible via mobile drawer */
  }

  /* Hide header action CTA buttons on mobile - already present in sticky bottom bar & drawer */
  .nav-actions .btn-primary,
  .nav-actions .btn-whatsapp {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary-pink);
    font-size: 1.15rem;
  }

  .logo-brand {
    gap: 0.6rem;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .logo-text h1 {
    font-size: 1.15rem;
  }

  .logo-text p {
    display: none; /* Hide tagline on mobile for single line alignment */
  }

  /* Hero Section Mobile Optimization */
  .hero {
    padding: 1.5rem 0 2.25rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-visual {
    order: -1; /* Displays Hero Product Slider FIRST on Mobile view */
    width: 100%;
  }

  .hero-content {
    order: 1;
    width: 100%;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.85rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.3;
    margin-bottom: 0.85rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-ctas .btn-whatsapp {
    display: none; /* Mobile sticky bottom bar already has WhatsApp button */
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
  }

  .hero-trust-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 1.25rem;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin: 0 auto;
  }

  .trust-text h4 {
    font-size: 0.8rem;
  }

  .trust-text p {
    font-size: 0.7rem;
    display: none; /* Kept compact on small screens */
  }

  /* Hero Slider Mobile */
  .hero-slider-container {
    border-radius: var(--radius-md);
    border-width: 2px;
  }

  .hero-slide {
    height: 350px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .slider-prev { left: 0.5rem; }
  .slider-next { right: 0.5rem; }

  .hero-float-tag {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.75rem 0.85rem;
    gap: 0.6rem;
  }

  .tag-info {
    flex: 1;
    min-width: 0; /* Prevents overflow */
  }

  .tag-info h4 {
    font-size: 0.88rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tag-info p {
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #hero-slide-cta {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Section Headers Mobile */
  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  /* Features & Steps Grid Mobile */
  .features-section, .usp-section, .testimonials-section, .faq-section {
    padding: 3rem 0;
  }

  .steps-grid, .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .step-card {
    padding: 1.5rem 1.25rem;
  }

  /* 2-Column Mobile E-Commerce Product Gallery Grid */
  .gallery-section {
    padding: 3rem 0;
  }

  .gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: center;
  }

  .tab-btn {
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .gallery-card {
    border-radius: var(--radius-sm);
  }

  .gallery-img-wrapper {
    height: 190px;
  }

  .img-badge {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
  }

  .gallery-content {
    padding: 0.85rem 0.75rem;
  }

  .gallery-title {
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
  }

  .gallery-desc {
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
  }

  .gallery-footer {
    padding-top: 0.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .price-tag {
    font-size: 1.05rem;
    text-align: center;
  }

  .order-mini-btn {
    width: 100%;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.82rem;
  }

  /* Lightbox Modal Mobile */
  .lightbox-modal {
    padding: 1rem;
  }

  .lightbox-content {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: var(--radius-md);
  }

  .lightbox-img-box {
    min-height: 250px;
    max-height: 320px;
  }

  .lightbox-img-box img {
    max-height: 300px;
  }

  .lightbox-details {
    padding: 1.25rem 1rem;
  }

  .lightbox-details h3 {
    font-size: 1.25rem;
  }

  .lightbox-details p {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  /* Checkout Form Mobile Touch Friendly (Font 16px to prevent iOS auto-zoom) */
  .checkout-section {
    padding: 1rem 0 2rem;
  }

  .checkout-page-header {
    margin-bottom: 1rem;
  }

  .checkout-title {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
  }

  .checkout-sub {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .nav-actions .btn-outline {
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    border-radius: var(--radius-pill);
  }

  .checkout-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .summary-sidebar {
    order: -1; /* Product Order Summary shows FIRST at the top of checkout on mobile! */
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    background: #FFFDFE;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
  }

  .checkout-wrapper {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }

  .form-control, .form-select {
    font-size: 16px; /* Essential for iOS input focus without zoom */
    padding: 0.75rem 0.9rem;
    min-height: 46px; /* Fast touch target */
    border-radius: var(--radius-sm);
  }

  .measurements-box {
    padding: 1.1rem 0.85rem;
    border-radius: var(--radius-sm);
  }

  .measure-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  /* Sticky Mobile Action Bar */
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 0.65rem 0.85rem;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
    gap: 0.65rem;
  }

  .mobile-sticky-bar .btn {
    flex: 1;
    padding: 0.7rem 0.5rem;
    font-size: 0.92rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  /* Footer Mobile */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  /* Extend dark footer background beneath mobile sticky bar if active on page */
  body:has(.mobile-sticky-bar) .footer {
    padding-bottom: calc(1.5rem + 75px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Small Screens (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .hero-slide {
    height: 300px;
  }

  .gallery-img-wrapper {
    height: 165px;
  }

  .measure-grid {
    grid-template-columns: 1fr;
  }

  .trust-text h4 {
    font-size: 0.75rem;
  }
}
