/* ========================================
   VARRA CRAFTS — Main Stylesheet
   Aesthetic: Earthy Premium / Natural Luxury
   ======================================== */

/* ---- CSS Variables ---- */
:root {
  --sand: #f5ede0;
  --sand-dark: #e8d5b0;
  --jute: #c8a96e;
  --jute-dark: #a07c3a;
  --forest: #2d5016;
  --forest-light: #4a7c25;
  --forest-deep: #1a3209;
  --gold: #d4a843;
  --bark: #7a5c1e;
  --cream: #faf6ef;
  --text-dark: #1c1a16;
  --text-mid: #5a5040;
  --text-light: #9a8c7a;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(44, 35, 12, 0.12);
  --shadow-lg: 0 12px 48px rgba(44, 35, 12, 0.18);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.section { padding: 72px 0; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--jute-dark);
  margin-bottom: 16px;
}

.section-label.light { color: var(--jute); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 44px;
  font-weight: 700;
}

.section-title em {
  font-style: italic;
  color: var(--forest);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}
.btn-outline-dark:hover { background: var(--text-dark); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
  font-weight: 600;
}
.btn-gold:hover { background: #e6b940; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(44, 35, 12, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  /* background: var(--forest); */
  background: var(--white);
  color: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--text-dark);
  font-weight: 600;
}
.logo-text strong { font-weight: 700; color: var(--forest); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); font-weight: 500; }

.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 500 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--forest-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 170px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0e8d5 0%, #e8dbc5 40%, #d4c4a0 100%);
  z-index: 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px; /* Limits how far apart the text and image go */
  margin: 0 auto;    /* Centers the whole block */
  padding: 0 24px;   /* Safe padding for smaller screens */
  position: relative;
  z-index: 1;
}


.hero-texture {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(160, 124, 58, 0.04) 20px, rgba(160, 124, 58, 0.04) 21px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(160, 124, 58, 0.04) 20px, rgba(160, 124, 58, 0.04) 21px);
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

/* .hero-content {
  flex: 1;
  padding-left: calc((100vw - 1200px) / 2);
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: 40px;
  max-width: 680px;.bag-preview img
} */

.hero-content {
  flex: 1;
  max-width: 680px;
  padding: 0; /* Removed the complex calc padding */
  text-align: left;
  margin-top: -80px;
}




.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bark);
  background: rgba(200, 169, 110, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(200, 169, 110, 0.4);
}

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--forest);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  /* max-width: 560px; */
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-line1 { white-space: nowrap; }

/* .hero-visual {
  flex: 0 0 520px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: max(24px, calc((100vw - 1200px) / 2));
  margin-left: auto;
} */

/* 3. Simplified Hero Visual */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  margin-left: 40px; /* Creates a consistent gap between text and image */
  
}
.qr-code-certificate{
	background: var(--sand);
}
.catalogue-qr-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-container {
    text-align: center;
    background: #ffffff;
    padding: 5px;
    border-radius: 12px;    
    max-width: 300px;
    width: 100%;
}

.qr-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
	text-align:center;
}

.qr-code img {
    width: 180px;
    height: 180px;
    object-fit: contain;
	margin: auto;
}

.qr-description {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
	line-height: 17px;
}
.qr-certificate{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin: 0 50px;
}
.qr-certificate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px;
  position: relative;
  border: 1px solid rgba(200, 169, 110, 0.15);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.qr-certificate-card:hover{
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);;
}
.cer-title{
	margin-top:10px;
	margin-bottom:10px;
	text-align:center;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}
/* Responsive */
@media (max-width: 991px) {
	.qr-certificate{
		grid-template-columns: repeat(1, 1fr);
	}
	.qr-certificate{
		margin: 0 15px;
	}
}
@media (max-width: 576px) {
    .qr-container {
        padding: 20px;
    }

    .qr-code img {
        width: 150px;
        height: 150px;
    }

    .qr-title {
        font-size: 18px;
    }	
	
}

.hero-bag-wrap {
  position: relative;
  animation: floatBag 4s ease-in-out infinite;
}

@keyframes floatBag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.bag-svg { width: 280px; height: auto; filter: drop-shadow(0 20px 40px rgba(44, 35, 12, 0.25)); }
.hero-pro-img { width: 580px; height: auto; filter: drop-shadow(0 20px 40px rgba(44, 35, 12, 0.25)); border-radius:16px; }

.hero-badge, .hero-badge-2 {
  position: absolute;
  background: var(--forest);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.hero-badge { top: 20px; right: -20px; }
.hero-badge-2 { bottom: 40px; left: -10px; background: var(--gold); color: var(--text-dark); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: max(24px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-light);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: var(--forest);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--forest);
  padding: 40px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  padding: 0 50px;
  flex: 1;
  min-width: 140px;
}

.trust-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ---- WHY SECTION ---- */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(200, 169, 110, 0.2);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }

.why-card--featured {
  background: #eaf4e2;
  border-color: #b8d9a0;
}
.why-card--featured h3 { color: var(--forest-deep); }
.why-card--featured p { color: var(--text-mid); }
.why-card--featured::before { background: var(--forest); }

.why-icon { margin-bottom: 20px; }
.why-icon svg { width: 48px; height: 48px; }

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.why-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- PRODUCTS PREVIEW ---- */
.products-preview { background: var(--sand); }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.section-header-row .section-title { margin-bottom: 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
  border: 1px solid rgba(200, 169, 110, 0.15);
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-img, .product-img-small {
  position: relative;
  /* height: 240px; */
  height:360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-small {height: 240px;}
.product-img-small  img { width:180px }

.product-img--tote { background: linear-gradient(135deg, #e8d4b0, #d4bc8c); }
.product-img--wine { background: linear-gradient(135deg, #d4c4a0, #c0aa7a); }
.product-img--cotton { background: linear-gradient(135deg, #ece4d4, #d8cbb8); }
.product-img--conf { background: linear-gradient(135deg, #d8c9a8, #c4b28a); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--forest);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.bag-preview svg { width: 140px; height: auto; filter: drop-shadow(0 8px 16px rgba(44,35,12,0.2)); }
.bag-preview img { /*width: 140px; */ height: auto; filter: drop-shadow(0 8px 16px rgba(44,35,12,0.2)); }

.product-info { padding: 24px; }

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-info p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-from {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
}

/* ---- CUSTOMIZE STRIP ---- */
.customize-strip {
  background: var(--forest-deep);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.customize-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(212, 168, 67, 0.03) 30px, rgba(212, 168, 67, 0.03) 31px
  );
}

.strip-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.strip-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.strip-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}

.strip-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- PROCESS ---- */
.process-section { background: var(--cream); }

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  border: 1px solid rgba(200, 169, 110, 0.2);
  transition: all var(--transition);
}

.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
  color: var(--forest);
}

.step-content p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.process-arrow {
  font-size: 24px;
  color: var(--jute);
  padding: 0 12px;
  flex-shrink: 0;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--sand); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  border: 1px solid rgba(200, 169, 110, 0.15);
  transition: all var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.testimonial-card--featured {
  background: #eaf4e2;
  border-color: #b8d9a0;
}
.testimonial-card--featured p { color: var(--text-mid); }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 700;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand-dark);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card--featured .author-avatar {
  background: #b8d9a0;
  color: var(--forest-deep);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-card--featured .testimonial-author strong { color: var(--text-dark); }

.testimonial-author span {
  font-size: 12px;
  color: var(--text-light);
}
.testimonial-card--featured .testimonial-author span { color: var(--text-light); }

/* ---- ECO SECTION ---- */
.eco-section {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.eco-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.06);
}

.eco-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.eco-text { position: relative; }

.eco-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.eco-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
}

.eco-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.eco-stat {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.eco-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.eco-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ---- FINAL CTA ---- */
.final-cta-section { background: var(--cream); }

.final-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--text-dark);
}

.final-cta p {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 36px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--forest-deep);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text strong { color: var(--gold); }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--text-dark); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul li + li { margin-top: 10px; }

.footer-col ul a, .footer-col address p, .footer-col address a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul a:hover,
.footer-col address a:hover { color: var(--gold); }

.footer-col address p { margin-top: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f0e8d5, #e0d0b0);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(160, 124, 58, 0.04) 20px, rgba(160, 124, 58, 0.04) 21px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(160, 124, 58, 0.04) 20px, rgba(160, 124, 58, 0.04) 21px);
}

.page-hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .section-label { text-align: center; }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- PRODUCTS PAGE ---- */
.products-section { background: var(--cream); }

.products-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  color: var(--text-mid);
  border: 1px solid rgba(200,169,110,0.3);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.15);
  transition: all var(--transition);
}

.product-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pfc-img {
  /* height: 260px;*/
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pfc-badges {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.badge-eco { background: var(--forest); color: var(--white); }
.badge-custom { background: var(--gold); color: var(--text-dark); }
.badge-new { background: #e74c3c; color: var(--white); }

.pfc-body { padding: 28px; }

.pfc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.pfc-body p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.pfc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--sand-dark);
}

.pfc-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--forest);
}

.pfc-moq {
  font-size: 12px;
  color: var(--text-light);
}

/* ---- CUSTOMIZE PAGE ---- */
.customize-section { background: var(--cream); }

.customize-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-control, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(200,169,110,0.4);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.customize-info { background: var(--forest); border-radius: var(--radius-lg); padding: 48px; color: var(--white); }

.customize-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--white);
}

.info-steps { display: flex; flex-direction: column; gap: 24px; }

.info-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.info-step-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.info-step-text p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.option-chip {
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: all var(--transition);
}

.option-chip:hover, .option-chip.active {
  background: rgba(212, 168, 67, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- ABOUT PAGE ---- */
.about-story { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #e8d4b0, #c8a96e);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main svg { width: 200px; height: auto; }

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  border: 4px solid var(--cream);
}

.about-img-accent strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about-img-accent span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

.about-text .section-title { margin-bottom: 24px; }

.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 20px;
}

.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--forest);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ---- CONTACT PAGE ---- */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 14px;
  color: var(--text-mid);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(200,169,110,0.2);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 32px;
}

/* ---- FAQ ---- */
.faq-section { background: var(--sand); }
.faq-title { text-align: center; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,110,0.2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
  gap: 12px;
}

.faq-question:hover { color: var(--forest); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--forest);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}




/* Hide state */
.product-full-card.hidden {
    display: none;
}

/* Optional: Add a simple fade-in animation */
.product-full-card {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { flex: 0 0 380px; }
  .bag-svg { width: 220px; }
  .hero-pro-img { width: 620px; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 140px 24px 60px; text-align: center; }
 /* .hero-content { padding: 0; max-width: 100%; margin-bottom: 40px; } */
  .hero-actions { justify-content: center; }
 /* .hero-visual { flex: none; padding: 0; } */
  .hero-scroll { display: none; }
  .section-header-row { flex-direction: column; gap: 20px; align-items: flex-start; }
  .eco-inner { grid-template-columns: 1fr; gap: 40px; }
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .customize-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { gap: 16px; }
  .process-arrow { display: none; }
}


@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 40px;
    max-width: 100%;
  }
  .hero-visual {
    margin-left: 0;
  }
  .hero-scroll {
    display: none;
  }
}



@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; }
  .trust-divider { display: none; }
  .trust-item { flex: 0 0 calc(50% - 10px); padding: 16px; }
  .strip-content { flex-direction: column; text-align: center; }
  .strip-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--sand-dark);
  .hero-badge-2{ bottom: 160px; }
  .hero { padding: 140px 24px 0px; }
  .hero-visual { flex: 0 0 300px; }
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 14px 0; display: block; border-bottom: 1px solid var(--sand-dark); }
  .nav-links a.nav-cta { margin-top: 12px; border-bottom: none; border-radius: var(--radius); text-align: center; padding: 14px; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-accent { position: static; margin-top: 20px; width: 100%; flex-direction: row; gap: 16px; }
  .about-values { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr 1fr; }
}

