/* ============================================================
   Elaa — Global Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #1B3326; /* Luxury Deep Forest Jade */
  --green-dark: #0F2017;
  --cream:   #FAF7F2; /* Luxury warm alabaster/ivory */
  --charcoal:#191E1C; /* Premium Obsidian Charcoal */
  --gold:    #C3A270; /* Warm metallic bronze */
  --grey:    #636D69; /* Soft ash grey */
  --grey-light: #ECE7E1; /* Subtle divider grey */
  --white:   #FFFFFF;
  --sage:    #7C8D7B;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  --radius: 12px; /* Soft-rounded containers */
  --radius-lg: 18px; /* For large blocks/cards */
  --radius-sm: 8px; /* For small elements/badges */
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Premium ease-out-quart */
  --max-w: 1200px;
  
  --shadow-sm: 0 4px 12px rgba(27, 51, 38, 0.03);
  --shadow-md: 0 12px 30px -10px rgba(27, 51, 38, 0.06), 0 4px 10px -5px rgba(27, 51, 38, 0.02);
  --shadow-lg: 0 24px 48px -15px rgba(27, 51, 38, 0.12), 0 8px 20px -8px rgba(27, 51, 38, 0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family:  'Inter', system-ui, sans-serif;
  font-size: 0.975rem;
  line-height: 1.75;
  color: #191E1C;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: #1C2321;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 0.85rem; font-family:  'Inter', system-ui, sans-serif; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }

p { color: #1C2321; }




.material-card-img{
    position:relative;
    height:240px;
    overflow:hidden;
}

.material-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: transform var(--transition);
}

.material-card-img span{
    position:absolute;
    bottom:15px;
    left:15px;
    color:#fff;
    font-size:1rem;
    font-weight:600;
    letter-spacing:0.04em;
    background:rgba(27, 51, 38, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding:6px 14px;
    border-radius:30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 50px; /* Modern luxury pill button */
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(27, 51, 38, 0.03);
}

.btn-primary {
  background: #1B3326;
  color:  #FFFFFF;
  border-color: #1B3326;
}
.btn-primary:hover {
  background: #0F2017;
  border-color: #0F2017;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 51, 38, 0.15);
}

.btn-outline {
  background: transparent;
  color: #191E1C !important;
  border-color: #191E1C;
}
.btn-outline:hover {
  background: #191E1C;
  color:  #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 30, 28, 0.08);
}

.btn-outline-white {
  background: transparent;
  color:  #FFFFFF;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background:  #FFFFFF;
  color: #1B3326;
  border-color:  #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.btn-sm  { padding: 0.65rem 1.5rem; font-size: 0.75rem; }
.btn-lg  { padding: 1.1rem 2.8rem; font-size: 0.9rem; }
.send-enq{
  color: white !important;
}
.text-link {
  font-family:  'Inter', system-ui, sans-serif;;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1B3326;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.text-link:hover { gap: 0.6rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(236, 231, 225, 0.5);
  transition: all var(--transition);
}
.site-header.scrolled { 
  background: rgba(250, 247, 242, 0.95);
  box-shadow: 0 10px 30px -10px rgba(27, 51, 38, 0.08); 
}

.nav-inner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;

}



/* Logo */
.logo1{
   font-family: 'Cormorant Garamond', Georgia, serif;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo1 img{
    width: 50px;       
    height: 50px;
    object-fit: contain;
    display: block;
}
.logo-Elaa {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #C89A2B;
  line-height: 1;
}

/* Mobile */
@media (max-width:768px){

    .logo1 img{
        width: 42px;
        height: 42px;
    }

    .logo-Elaa{
        font-size: 1.8rem;
    }
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #191E1C;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0.2rem 0.3rem;
  border-radius: 12px;
  background: transparent;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  flex: 1;
}
.nav-links li a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #191E1C;
  padding: 0.5rem 0.8rem;
  position: relative;
  transition: color var(--transition);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition), left var(--transition);
}
.nav-links li a:hover { 
  color: #1B3326; 
}
.nav-links li a:hover::after {
  width: 100%;
  left: 0;
}
.nav-links li a.btn::after {
  display: none;
}

/* Active navigation item styling */
.nav-links li a.active {
  font-weight: 700 !important;
  color: var(--green) !important;
}
.nav-links li a.active::after {
  width: 100% !important;
  left: 0 !important;
  background: var(--gold) !important;
}

/* Navigation Dropdown and Submenu Styles */
.nav-links li {
  position: relative;
}

/* Base dropdown styles (hidden on desktop by default) */
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(27, 51, 38, 0.12);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  min-width: 220px;
  z-index: 1000;
  padding: 0.5rem 0;
  list-style: none;
  text-align: left;
  margin: 0;
}

.nav-links .dropdown li {
  width: 100%;
}

.nav-links .dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.nav-links .dropdown li a::after {
  display: none !important; /* No active line effects in dropdown */
}

.nav-links .dropdown li a:hover,
.nav-links .dropdown li a.active {
  background: var(--cream);
  color: var(--green);
}

/* Submenu (Second level dropdown) */
.nav-links .dropdown .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(27, 51, 38, 0.12);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  min-width: 200px;
  z-index: 1001;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
}

.nav-links .dropdown .has-submenu {
  position: relative;
}

/* Indicators (Arrows) */
.nav-links li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.75rem;
  display: inline-block;
  margin-left: 0.2rem;
  transition: transform 0.3s;
}

.nav-links .dropdown li.has-submenu > a::after {
  content: ' ▸';
  font-size: 0.75rem;
  float: right;
  margin-top: 0.15rem;
}

/* Dropdown toggle button for mobile accordion */
.dropdown-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 0.25rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
  font-size: 0.8rem;
  color: var(--charcoal);
  z-index: 10;
}

.dropdown-toggle-btn:hover {
  background: rgba(27, 51, 38, 0.08);
}

/* Rotate arrow when menu is expanded */
.has-dropdown.expanded > .dropdown-toggle-btn,
.has-submenu.expanded > .dropdown-toggle-btn {
  transform: rotate(180deg);
}

/* Hover behaviors for Desktop (min-width: 769px) */
@media (min-width: 769px) {
  .nav-links li.has-dropdown:hover > .dropdown {
    display: block;
  }
  .nav-links .dropdown li.has-submenu:hover > .submenu {
    display: block;
  }
  /* Hide mobile toggle button on desktop */
  .dropdown-toggle-btn {
    display: none !important;
  }
}

/* Mobile responsive styles (max-width: 768px) */
@media (max-width: 768px) {
  .nav-links {
    max-height: 80vh;
    overflow-y: auto;
  }
  
  /* Hide pseudo arrows on mobile since we have HTML toggle buttons */
  .nav-links li.has-dropdown > a::after,
  .nav-links .dropdown li.has-submenu > a::after {
    display: none !important;
  }
  
  /* Flex layout to place link text and toggle button side-by-side */
  .nav-links li.has-dropdown,
  .nav-links .dropdown li.has-submenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-links li a {
    flex: 1;
    display: inline-block;
    padding: 0.6rem 0;
  }
  
  .nav-links li:not(.has-dropdown):not(.has-submenu) a {
    display: block;
  }

  .nav-links .dropdown,
  .nav-links .dropdown .submenu {
    position: static;
    display: none; /* Toggled via JS class .expanded */
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    min-width: 100%;
    background: transparent;
    flex-basis: 100%; /* Force dropdown below text and button */
  }
  
  .nav-links li.has-dropdown.expanded > .dropdown,
  .nav-links .dropdown li.has-submenu.expanded > .submenu {
    display: block;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #191E1C;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: var(--space-xl) 0; }

.section-header { margin-bottom: var(--space-md); }
.section-header--centered { text-align: center; max-width: 680px; margin: 0 auto var(--space-lg); }

.section-header h2 { margin-bottom: 1rem; }
.section-body { color: var(--grey); font-size: 1.05rem; max-width: 600px; }
.section-header--centered .section-body { margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--cream);
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B3326;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #191E1C;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


.hero-image-block{
    width:100%;
    max-width:550px;
    height:580px;              
    border-radius:18px;
    overflow:hidden;
    position:relative;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    animation:floatImage 5s ease-in-out infinite;
}

.hero-image-block img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.hero-image-block:hover img{
    transform:scale(1.08);
}

.hero-image-block .image-label{
    position:absolute;
    /* bottom:20px; */
    left:20px;
    /* background:rgba(255,255,255,.9); */
    color:#1d5a42;
    font-size:0.85rem;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:10px 18px;
    border-radius:4px;
    backdrop-filter:blur(6px);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #191E1C;
  padding: 1.5rem 0;
  overflow: hidden;
}

.trust-list {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 2rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  color: var(--gold);
  font-size: 0.55rem;
}

/* ============================================================
   WHAT WE OFFER — category grid
   ============================================================ */
.what-we-offer { background:  #FFFFFF; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
 
  padding: 0.5rem 0.25rem 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
}

.category-img-block {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(18, 33, 26, 0.06);
  box-shadow: 0 4px 12px rgba(18, 33, 26, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-img-block {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(18, 33, 26, 0.1);
  border-color: rgba(18, 33, 26, 0.1);
}

.category-card:hover .category-img-block img {
  transform: scale(1.06);
}

.category-label {
  margin-top: 12px;
  text-align: center;
  font-family:  'Inter', system-ui, sans-serif;;
  font-size: 0.9rem;
  font-weight: 500;
  color: #191E1C;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.category-card:hover .category-label {
  color: #1B3326;
}

.category-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--grey);
  font-style: italic;
  padding-top: 0.5rem;
}

/* ============================================================
   MATERIALS
   ============================================================ */
.materials-section { background: var(--cream); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.material-card { text-align: center; }

/* .material-img-block {
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  width: 160px;
} */


.material-img-block {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(18, 33, 26, 0.06);
  box-shadow: 0 4px 12px rgba(18, 33, 26, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.material-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.material-card:hover .material-img-block {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 33, 26, 0.08);
  border-color: rgba(18, 33, 26, 0.1);
}

.material-card:hover .material-img-block img {
  transform: scale(1.08);
}

.material-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.material-card p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ============================================================
   WHO WE SUPPLY
   ============================================================ */
.supply-section { background:  #FFFFFF; }

.supply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.supply-text h2 { margin-bottom: 1.25rem; }
.supply-text p  { color: var(--grey); margin-bottom: 2rem; }

.buyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.buyer-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1B3326;
  background: #edf7f2;
  border: 1px solid #b8e0ce;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}
.supply-img-block{
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:20px;
}

.supply-img-block img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.supply-img-block:hover img{
    transform:scale(1.05);
}
/* ============================================================
   OUR STORY
   ============================================================ */
.story-section { background: var(--cream); }

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img-block{
    width:100%;
    height:450px; 
    overflow:hidden;
    border-radius:20px;
}

.story-img-block img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.story-img-block:hover img{
    transform:scale(1.05);
}

.story-text h2 { margin-bottom: 1.25rem; }
.story-text p  { color: var(--grey); margin-bottom: 1.75rem; }

/* ============================================================
   BRAND PILLARS
   ============================================================ */
.pillars-section { background: #191E1C; }
.pillars-section h2 { color:  #FFFFFF; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: border-color var(--transition);
}
.pillar-card:hover { border-color: #1B3326; }

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.pillar-card h3 {
  font-size: 1.1rem;
  color:  #FFFFFF;
  margin-bottom: 0.5rem;
}
.pillar-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, #1D9E75 0%, #157a5a 100%);
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-inner h2 {
  color:  #FFFFFF;
  margin-bottom: 1.25rem;
}
.final-cta-inner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0F2017;
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-md);
}

.footer-logo {
  font-size: 1.5rem;
  color:  #FFFFFF;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-tagline {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300 !important;
  font-size: 13px !important; /* Increased from 12px */
  color: #999999 !important; /* Brightened from #888888 */
  line-height: 1.6 !important;
  max-width: 200px !important;
  margin-top: 10px !important;
}

.social-links { display: flex; gap: 1rem; }
.social-link {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }

.footer-links-col h4 {
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links-col a:hover { color:  #FFFFFF; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 12px !important; /* Increased from 11px */
  color: #999999 !important; /* Brightened from #777777 */
  letter-spacing: 0.02em !important;
  margin: 0 !important;
  background: transparent !important;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: #1B3326;
  color:  #FFFFFF;
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.035), rgba(255,255,255,0.035) 10px, transparent 10px, transparent 20px);
  pointer-events: none;
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--gold), var(--gold) 10px, var(--sage) 10px, var(--sage) 20px);
  z-index: 2;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255, 255, 255, 0.5); }
.page-hero h1 { max-width: 750px; margin-bottom: 1.25rem; color:  #FFFFFF; }
.page-hero p  { font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); max-width: 620px; }

/* Category badge and listing count styling */
.category-badge {
  display: inline-block;
  background: var(--sage);
  color:  #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
  margin-right: 0.75rem;
}
.product-count {
  font-family:  'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 500;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-opening { background:  #FFFFFF; }
.about-opening .container { max-width: 820px; }
.about-opening p { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.05rem; }

.team-section { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background:  #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--grey-light);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8e4d6, #90c8aa);
  margin-bottom: 1.25rem;
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1B3326;
  margin-bottom: 1rem;
}
.team-card p { color: var(--grey); font-size: 0.95rem; }

.why-started { background:  #FFFFFF; }
.why-started .container { max-width: 820px; }
.why-started p { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.05rem; }

.sourcing-section { background: var(--cream); }
.sourcing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.sourcing-text h2 { margin-bottom: 1.25rem; }
.sourcing-text p  { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.05rem; }

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background:  #FFFFFF;
  border-radius: 12px;
  padding: 1.75rem;
  border-left: 3px solid #1B3326;
}
.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1B3326;
  display: block;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.4;
}

.materials-detail { background:  #FFFFFF; }
.materials-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: var(--space-md);
}
.material-detail-card {
  padding: 2rem;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--grey-light);
}
.material-detail-card h3 { margin-bottom: 0.75rem; color: #1B3326; }
.material-detail-card p  { font-size: 0.95rem; color: var(--grey); }

.about-pillars { background: #191E1C; }
.about-pillars h2 { color:  #FFFFFF; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-page { background:  #FFFFFF; }

.material-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.material-card-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(27, 51, 38, 0.05);
  transition: all var(--transition);
  background:  #FFFFFF;
  position: relative;
  box-shadow: 0 4px 12px rgba(27, 51, 38, 0.03);
}
.material-card-link:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(195, 162, 112, 0.25);
}

.material-card-img {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.bg-bamboo      { background: linear-gradient(135deg, #8db870, #5a9040); }
.bg-banana      { background: linear-gradient(135deg, #c8aa60, #a08030); }
.bg-chumba      { background: linear-gradient(135deg, #b09070, #806850); }
.bg-palm        { background: linear-gradient(135deg, #80a860, #507840); }
.bg-river       { background: linear-gradient(135deg, #60a890, #307860); }
.bg-festival    { background: linear-gradient(135deg, #d4a853, #b08030); }
.bg-wooden-toys      { background: linear-gradient(135deg, #c49a6c, #9c7348); }
.bg-wooden-cutleries { background: linear-gradient(135deg, #a07850, #705030); }
.bg-decors      { background: linear-gradient(135deg, #a090b0, #706080); }
.bg-others      { background: linear-gradient(135deg, #909090, #606060); }

.material-card-body { 
  padding: 1.5rem 1.75rem 1.75rem; 
}
.material-card-body h3 { 
  font-size: 1.25rem; 
  font-weight: 500;
  color: #191E1C;
  margin-bottom: 0.5rem; 
}
.material-card-body p  { 
  font-size: 0.875rem; 
  color: var(--grey); 
  line-height: 1.6;
  margin-bottom: 1.25rem; 
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  background: var(--grey-light);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* Product sub-page */
.products-subpage { background:  #FFFFFF; }
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.filter-tab {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--grey-light);
  cursor: pointer;
  background:  #FFFFFF;
  color: #191E1C;
  transition: all var(--transition);
}
.filter-tab.active, .filter-tab:hover {
  background: #1B3326;
  color:  #FFFFFF;
  border-color: #1B3326;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  border: 1px solid rgba(27, 51, 38, 0.05);
  border-radius: 16px;
  overflow: hidden;
  background:  #FFFFFF;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(27, 51, 38, 0.03);
}
.product-card:hover { 
  box-shadow: var(--shadow-md); 
  transform: translateY(-4px);
  border-color: rgba(195, 162, 112, 0.2);
}

.product-img-block {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0f0e8, #b8d8c8);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.product-img-block span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29,158,117,0.7);
}

.product-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.product-material-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1B3326;
  background: #edf7f2;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.product-card-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.product-card-body p  { font-size: 0.85rem; color: var(--grey); margin-bottom: 1rem; }
.product-moq {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}
.product-moq strong { color: #191E1C; }

.product-qty-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.product-qty-input {
  width: 80px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  font-family:  'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: #191E1C;
  background: var(--cream);
}
.product-qty-input:focus { outline: none; border-color: #1B3326; }

/* Festival sub-page */
.festival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.festival-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-light);
  text-align: center;
  background:  #FFFFFF;
  transition: transform var(--transition), box-shadow var(--transition);
}
.festival-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.festival-card-img {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.bg-diwali    { 
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../assest/SKU CODE NR 112A.png') no-repeat center center; 
  background-size: cover; 
}
.bg-christmas { 
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../assest/SKU Code WR-821.jpg') no-repeat center center; 
  background-size: cover; 
}
.bg-decors2   { 
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../assest/SKU Code ST-617.jpg') no-repeat center center; 
  background-size: cover; 
}
.festival-card-body { padding: 1.5rem 1.5rem 2rem; }
.festival-card-body h3 { margin-bottom: 0.5rem; }
.festival-card-body p  { font-size: 0.875rem; color: var(--grey); }

.seasonal-banner {
  background: #fff8e8;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  color: #7a5a10;
}
.seasonal-banner::before { content: '⏰'; font-size: 1rem; }

/* Products bottom CTA */
.products-cta { background: var(--cream); }
.products-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.products-cta-inner h2 { max-width: 500px; }
.products-cta-inner p  { color: var(--grey); max-width: 500px; margin-top: 0.5rem; }
.products-cta-btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   SUSTAINABILITY PAGE
   ============================================================ */
.sustainability-opening { background:  #FFFFFF; }
.sustainability-opening .container { max-width: 820px; }
.sustainability-opening p { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.05rem; }

.commitments-section { background: var(--cream); }
.commitments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: var(--space-md);
}
.commitment-card {
  background:  #FFFFFF;
  border-radius: 12px;
  padding: 2rem 2.25rem;
  border-left: 3px solid #1B3326;
}
.commitment-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: #1B3326; }
.commitment-card p  { font-size: 0.95rem; color: var(--grey); }

.materials-impact { background:  #FFFFFF; }
.materials-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: var(--space-md);
}
.material-impact-card {
  padding: 2rem;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--grey-light);
}
.material-impact-card h3 { margin-bottom: 0.75rem; color: #191E1C; }
.material-impact-card p  { font-size: 0.95rem; color: var(--grey); }

.artisan-community { background: var(--cream); }
.artisan-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.artisan-text h2 { margin-bottom: 1.25rem; }
.artisan-text p  { color: var(--grey); margin-bottom: 1.5rem; font-size: 1.05rem; }

.packaging-section { background:  #FFFFFF; }
.packaging-section .container { max-width: 820px; }
.packaging-section p { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.05rem; }

.certifications { background: var(--cream); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.cert-card {
  background:  #FFFFFF;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--grey-light);
}
.cert-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.cert-status.in-progress { background: #fff8e8; color: #9a6810; }
.cert-status.planned     { background: #f0f0f0; color: var(--grey); }
.cert-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.cert-card p  { font-size: 0.85rem; color: var(--grey); }

/* ============================================================
   OUR MARKETS PAGE
   ============================================================ */
.markets-who { background:  #FFFFFF; }
.buyer-type-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.buyer-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--grey-light);
}
.buyer-card h3 { font-size: 1.1rem; color: #1B3326; margin-bottom: 0.75rem; }
.buyer-card p  { font-size: 0.9rem; color: var(--grey); margin-bottom: 1rem; }
.buyer-popular {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.35rem;
}
.buyer-products {
  font-size: 0.85rem;
  color: #191E1C;
}
.buyer-note {
  font-size: 0.8rem;
  color: var(--grey);
  font-style: italic;
  margin-top: 0.75rem;
}

.export-markets { background: var(--cream); }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-md);
}
.market-card {
  background:  #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--grey-light);
}
.market-region {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B3326;
  margin-bottom: 0.6rem;
}
.market-card h3 { font-size: 1.3rem; margin-bottom: 0.35rem; }
.market-countries {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1rem;
}
.market-card p { font-size: 0.9rem; color: var(--grey); margin-bottom: 1rem; }
.market-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.market-bullet {
  font-size: 0.85rem;
  color: #191E1C;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.market-bullet::before { content: '→'; color: #1B3326; flex-shrink: 0; }
.market-buyers-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}
.market-buyers {
  font-size: 0.85rem;
  color: #191E1C;
}

.why-us { background:  #FFFFFF; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.why-card {
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(rgba(250, 247, 242, 0.58), rgba(250, 247, 242, 0.58)), url('../assest/patten\ img.jpg') no-repeat center center;
  background-size: cover;
  border: 1px solid var(--grey-light);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.48)), url('../assest/card_pattern_bg.jpg') no-repeat center center;
  background-size: cover;
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: #1B3326; }
.why-card p  { font-size: 0.875rem; color: var(--grey); }

/* ============================================================
   LET'S TALK PAGE
   ============================================================ */
.letstalk-section { background:  #FFFFFF; }
.letstalk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.letstalk-intro h2 { margin-bottom: 1rem; }
.letstalk-intro p  { color: var(--grey); margin-bottom: 1.5rem; }

.inquiry-form, .custom-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #191E1C;
  letter-spacing: 0.02em;
}
.form-field label .req { color: #1B3326; }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.9rem 1.25rem;
  border: 1.5px solid var(--grey-light);
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #191E1C;
  background:  #FFFFFF;
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 4px 12px rgba(27, 51, 38, 0.03);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1B3326;
  background:  #FFFFFF;
  box-shadow: 0 0 0 4px rgba(27, 51, 38, 0.08);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  font-style: italic;
}

.faq-section { background: var(--cream); }
.faq-categories { display: flex; flex-direction: column; gap: var(--space-md); }
.faq-category h3 { font-size: 1rem; font-family:  'Inter', system-ui, sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--grey-light); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: #191E1C;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: #1B3326; }
.faq-toggle {
  font-size: 1.25rem;
  font-family:  'Inter', system-ui, sans-serif;
  color: #1B3326;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--grey);
  padding-bottom: 1.25rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-section { background:  #FFFFFF; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  overflow: hidden;
  background:  #FFFFFF;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.blog-img-block {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.bg-blog-1 { background: linear-gradient(135deg, #507840, #304820); }
.bg-blog-2 { background: linear-gradient(135deg, #c8aa60, #806830); }
.bg-blog-3 { background: linear-gradient(135deg, #204060, #102030); }
.bg-blog-4 { background: linear-gradient(135deg, #805040, #503020); }
.bg-blog-5 { background: linear-gradient(135deg, #406050, #203828); }
.bg-blog-6 { background: linear-gradient(135deg, #c07020, #804010); }

.blog-card-body { padding: 1.5rem; }
.blog-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1B3326;
  margin-bottom: 0.6rem;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-card-body p  { font-size: 0.875rem; color: var(--grey); margin-bottom: 1rem; }
.blog-keyword {
  font-size: 0.75rem;
  color: var(--grey);
}
.blog-keyword strong { color: #191E1C; }

/* ============================================================
   CUSTOM ORDERS PAGE
   ============================================================ */
.custom-opening { background:  #FFFFFF; }
.custom-opening .container { max-width: 820px; }
.custom-opening p { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.05rem; }

.customise-section { background: var(--cream); }
.customise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.customise-card {
  background:  #FFFFFF;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--grey-light);
}
.customise-card h3 { font-size: 1rem; color: #1B3326; margin-bottom: 0.5rem; }
.customise-card p  { font-size: 0.875rem; color: var(--grey); }

.how-it-works { background:  #FFFFFF; }
.how-it-works-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.steps-list{
    flex:1;
}

.how-it-works-image{
    flex:0 0 40%;
    text-align:center;
}

.how-it-works-image img{
    width:100%;
    max-width:500px;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* Mobile */
@media (max-width:991px){

    .how-it-works-wrapper{
        flex-direction:column;
    }

    .how-it-works-image{
        order:-1;   /* Image upar aa jayegi */
        width:100%;
    }

    .how-it-works-image img{
        max-width:100%;
    }
}
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 680px; margin-top: var(--space-md); }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1B3326;
  color:  #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.step-content h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.step-content p  { font-size: 0.9rem; color: var(--grey); }

.custom-form-section { background: var(--cream); }
.custom-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.custom-form-intro h2 { margin-bottom: 1rem; }
.custom-form-intro p  { color: var(--grey); font-size: 1.05rem; }

/* ============================================================
   MOQ MODAL
   ============================================================ */
.moq-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.moq-modal-overlay.active { display: flex; }
.moq-modal {
  background:  #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.moq-modal-icon {
  width: 48px; height: 48px;
  background: rgba(212,168,83,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
}
.moq-modal h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: #191E1C;
  margin-bottom: 0.5rem;
}
.moq-modal p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.moq-modal-btn {
  padding: 0.6rem 1.75rem;
  background: #1B3326;
  color:  #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family:  'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.moq-modal-btn:hover { background: #0F2017; }

/* ============================================================
   ENQUIRY BASKET FLOAT
   ============================================================ */
.enquiry-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 8000;
  display: none;
}
.enquiry-float.visible { display: block; }
.enquiry-float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #191E1C;
  color:  #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-family:  'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.enquiry-float-btn:hover { background: #1B3326; transform: translateY(-2px); }
.enquiry-float-count {
  background: #1B3326;
  color:  #FFFFFF;
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================================
   ENQUIRY SUMMARY (lets-talk page)
   ============================================================ */
.enquiry-summary {
  background:  #FFFFFF;
  border: 1.5px solid #1B3326;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.enquiry-summary h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: #191E1C;
  margin-bottom: 0.25rem;
}
.enquiry-summary p { font-size: 0.8rem; color: var(--grey); margin-bottom: 1rem; }
.enquiry-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.enquiry-summary-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--grey-light);
}
.enquiry-summary-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--grey-light);
  color: #191E1C;
  vertical-align: middle;
}
.enquiry-summary-table tr:last-child td { border-bottom: none; }
.enquiry-remove-btn {
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
  transition: color var(--transition);
}
.enquiry-remove-btn:hover { color: #c0392b; }
.enquiry-clear-btn {
  font-size: 0.78rem;
  color: var(--grey);
  background: none;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
}
.enquiry-clear-btn:hover { border-color: #c0392b; color: #c0392b; }

/* ============================================================
   FILE UPLOAD
   ============================================================ */
.file-upload-area {
  position: relative;
  border: 2px dashed var(--grey-light);
  border-radius: 12px;
  background:  #FFFFFF;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: #1B3326;
  background: #f0faf5;
}

.file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-ui {
  padding: 2rem 1.5rem;
  text-align: center;
  pointer-events: none;
}
.file-upload-icon {
  display: block;
  font-size: 1.75rem;
  color: #1B3326;
  margin-bottom: 0.6rem;
}
.file-upload-text {
  font-size: 0.9rem;
  color: #191E1C;
  margin-bottom: 0.35rem;
}
.file-upload-browse {
  color: #1B3326;
  font-weight: 500;
  text-decoration: underline;
}
.file-upload-hint {
  font-size: 0.78rem;
  color: var(--grey);
}

.file-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0 1rem 1rem;
}
.file-preview-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #edf7f2;
  border: 1px solid #b8e0ce;
  border-radius: 12px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  color: #191E1C;
}
.file-preview-item .file-icon { color: #1B3326; font-size: 0.9rem; }
.file-preview-remove {
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 0 0 0.25rem;
  transition: color var(--transition);
}
.file-preview-remove:hover { color: #c0392b; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .category-grid     { grid-template-columns: repeat(3, 1fr); }
  .material-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-2xl: 5rem; }

  .hero .container     { grid-template-columns: 1fr; }
  .hero-visual         { display: none; }
  .hero-headline       { font-size: 2.4rem; }

  .category-grid       { grid-template-columns: repeat(2, 1fr); }
  .materials-grid      { grid-template-columns: repeat(2, 1fr); }
  .supply-inner        { grid-template-columns: 1fr; }
  .supply-visual       { display: none; }
  .story-inner         { grid-template-columns: 1fr; }
  .story-visual        { display: none; }
  .pillars-grid        { grid-template-columns: 1fr 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }

  .team-grid           { grid-template-columns: 1fr; }
  .sourcing-inner      { grid-template-columns: 1fr; }
  .impact-stats        { grid-template-columns: 1fr 1fr; }
  .materials-detail-grid { grid-template-columns: 1fr; }

 .material-cards-grid { grid-template-columns: 1fr !important; }
  .products-grid       { grid-template-columns: 1fr 1fr; }
  .festival-grid       { grid-template-columns: 1fr; }
  .products-cta-inner  { flex-direction: column; }

  .commitments-grid    { grid-template-columns: 1fr; }
  .materials-impact-grid { grid-template-columns: 1fr; }
  .artisan-inner       { grid-template-columns: 1fr; }
  .cert-grid           { grid-template-columns: 1fr; }

  .buyer-type-cards    { grid-template-columns: 1fr; }
  .markets-grid        { grid-template-columns: 1fr; }
  .why-us-grid         { grid-template-columns: 1fr 1fr; }

  .letstalk-inner      { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }

  .blog-grid           { grid-template-columns: 1fr; }

  .customise-grid      { grid-template-columns: 1fr; }
  .custom-form-inner   { grid-template-columns: 1fr; }

  .trust-list          { flex-direction: column; align-items: center; }
  .trust-item          { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }

  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile Nav */
  .nav-toggle          { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background:  #FFFFFF;
    border-bottom: 1px solid var(--grey-light);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open      { display: flex; }
  .nav-links li a      { display: block; padding: 0.6rem 0; }
  .nav-links li a.btn  { margin-top: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .category-grid  { grid-template-columns: repeat(2, 1fr); }
  .products-grid  { grid-template-columns: 1fr; }
  .hero-ctas      { flex-direction: column; }
  .pillar-card    { padding: 1.75rem 1.25rem; }
}

/* =================================================
   GOOGLE TRANSLATE NAVBAR FIX
================================================= */

.language-box {
  display: flex;
  align-items: center;
  height: 100%;
}

/* main container */
#google_translate_element {
  height: 36px;
  display: flex;
  align-items: center;
}

/* hide google branding */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget img {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important;
  line-height: 0 !important;
}

/* select design */
.goog-te-combo {
  margin: 0 !important;
  width: auto;
  min-width: 110px;
  height: 34px;
  background: var(--cream);
  border: 1px solid var(--grey-light);
  border-radius: 30px;
  padding: 0 1.5rem 0 0.75rem;
  font-family:  'Inter', system-ui, sans-serif;
  font-size: 13px !important;
  font-weight: 500;
  color: var(--charcoal) !important;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231A1A1A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.goog-te-combo:hover, .goog-te-combo:focus {
  border-color: #1B3326;
  color: var(--green) !important;
  background-color:  #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231D9E75' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* remove google top bar */
iframe.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* navbar gap and links spacing */
.nav-links {
  gap: 0.6rem;
}

.nav-links li a {
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
}

/* tablet spacing adjustment to prevent wrapping */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav-links {
    gap: 0.35rem;
  }
  .nav-links li a {
    font-size: 0.8rem;
    padding: 0.4rem 0.45rem;
  }
  .nav-links li a.btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* mobile */
@media (max-width: 768px) {
  .language-box {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--grey-light);
  }

  #google_translate_element {
    width: 100%;
  }

  .goog-te-combo {
    width: 100%;
    height: 40px;
    border-radius: 12px;
    background-color:  #FFFFFF;
    background-position: right 1rem center;
  }
}




/* ==============================
   WHATSAPP FLOAT BUTTON
================================ */

.whatsapp-float{

    position:fixed;

    width:58px;
    height:58px;

    right:25px;
    bottom:25px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:9999;

    box-shadow:
    0 6px 20px rgba(0,0,0,0.25);

    transition:0.3s ease;

}


.whatsapp-float:hover{

    transform:scale(1.1);

}


.whatsapp-float img{

    width:34px;
    height:34px;

}



/* mobile */

@media(max-width:768px){

.whatsapp-float{

    width:52px;
    height:52px;

    right:18px;
    bottom:18px;

}


.whatsapp-float img{

    width:30px;

}

}

/* ============================================================
   FEEDBACK MODAL (Success/Error Popup)
   ============================================================ */
.feedback-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.feedback-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.feedback-modal {
  background:  #FFFFFF;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feedback-modal-overlay.active .feedback-modal {
  transform: scale(1);
}
.feedback-modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.feedback-modal-icon.success {
  background: rgba(29, 158, 117, 0.1);
  color: #1B3326;
}
.feedback-modal-icon.error {
  background: rgba(192, 57, 43, 0.1);
  color: #c0392b;
}
.feedback-modal h3 {
  font-size: 1.5rem;
  color: #191E1C;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.feedback-modal p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  font-family:  'Inter', system-ui, sans-serif;
}
.feedback-modal-btn {
  padding: 0.75rem 2rem;
  background: #1B3326;
  color:  #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family:  'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
}
.feedback-modal-btn:hover {
  background: #0F2017;
}
.feedback-modal-btn.error {
  background: #c0392b;
}
.feedback-modal-btn.error:hover {
  background: #a93226;
}

/* ============================================================
   COOKIE CONSENT BANNER (GDPR)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.08);
  z-index: 99998;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.12), opacity 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cookie-content p {
  font-size: 0.85rem;
  color: #191E1C;
  line-height: 1.5;
  margin: 0;
  font-family:  'Inter', system-ui, sans-serif;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

/* responsive adjustment */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.25rem;
  }
  .cookie-content {
    align-items: flex-start;
    gap: 0.75rem;
  }
  .cookie-icon {
    font-size: 1.75rem;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}

/* ============================================================
   GLOBAL ENTRANCE & FADE-IN ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main > section {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
}


/* Add stagger to sections */
main > section:nth-of-type(1) { animation-delay: 0.05s; }
main > section:nth-of-type(2) { animation-delay: 0.15s; }
main > section:nth-of-type(3) { animation-delay: 0.25s; }
main > section:nth-of-type(4) { animation-delay: 0.35s; }

/* ============================================================
   MOBILE RESPONSIVE OVERRIDES FOR DYNAMIC PRODUCT PAGES
   ============================================================ */
@media (max-width: 480px) {
  /* Make cover category switcher grid 1-column on mobile to prevent text squishing */
  .products-section .cat-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  
  /* Make product listing grid stack cleanly */
  .products-section .product-listing-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  
  /* Make product detail row stack vertically so button and quantity inputs are full width */
  .products-section .pd-order-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }
  
  .products-section .pd-qty-input {
    width: 100% !important;
    margin-bottom: 0.25rem !important;
    text-align: center !important;
  }
  
  .products-section .btn-send-enquiry,
  .products-section .btn-enquire {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    display: block !important;
    text-align: center !important;
  }

  .products-section .pl-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .products-section .pl-qty {
    width: 100% !important;
    margin-bottom: 0.25rem !important;
    text-align: center !important;
  }
  
  /* Make thumbnails panel slide horizontally and fit neatly */
  .products-section .pd-thumbnails {
    justify-content: flex-start !important;
    padding: 0.5rem 0.25rem !important;
  }

  /* Adjust listing header alignment */
  .products-section .listing-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }
}



/* ─── NEW MEGA-MENU NAVIGATION BAR STYLES ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  transition: none !important;
  box-shadow: none !important;
  height: auto !important;
}

.nav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  width: 100%;
  transition: height 0.2s ease, padding 0.2s ease !important;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #1D9E75;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  padding: 0 10px; /* Reduced from 16px to 10px to compress menu items horizontally */
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.nav-link:hover, .nav-link.active { 
  color: #1D9E75 !important; 
  border-bottom-color: #1D9E75 !important; 
}

.nav-link.products-link { 
  font-weight: 600; 
}

.nav-chevron {
  font-size: 10px;
  color: #aaa;
  transition: transform 0.22s, color 0.18s;
  display: inline-block;
  margin-top: 1px;
}

.nav-item:hover .nav-chevron { 
  transform: rotate(180deg); 
  color: #1D9E75; 
}

.nav-enquiry {
  background: #1D9E75 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 0 16px !important; /* Slightly reduced padding to match spacing */
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  height: 36px !important;
  margin-left: 10px;
  border-bottom: none !important;
  transition: background 0.18s !important;
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.nav-enquiry:hover { 
  background: #158a62 !important; 
  color: #fff !important; 
}

.language-box {
  margin-left: 18px;
  border-left: 1px solid #e8e8e8;
  padding-left: 18px;
  display: flex;
  align-items: center;
  height: 36px;
}

/* ─── LEVEL 1 DROPDOWN ─── */
.dropdown-l1 {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 2.5px solid #1D9E75;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  z-index: 2000;
  flex-direction: column;
  padding: 8px 0;
  animation: fadeDown 0.15s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-item:hover .dropdown-l1 { 
  display: flex; 
}

/* ─── L1 ITEM ─── */
.l1-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  gap: 10px;
  transition: background 0.13s, color 0.13s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.l1-item:hover { 
  background: #F0FAF6; 
  color: #1D9E75; 
}

.l1-item .l1-label { 
  display: flex; 
  align-items: center; 
  gap: 9px; 
  flex: 1; 
}

.l1-item .l1-icon { 
  font-size: 16px; 
  width: 22px; 
  text-align: center; 
  flex-shrink: 0; 
}

.l1-item .l1-arrow {
  font-size: 14px;
  color: #bbb;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.18s;
  font-weight: 400;
}

.l1-item:hover .l1-arrow { 
  color: #1D9E75; 
  transform: translateX(2px); 
}

.l1-divider { 
  height: 1px; 
  background: #f0f0f0; 
  margin: 5px 0; 
}

.l1-viewall {
  font-size: 12px !important;
  color: #1D9E75 !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  letter-spacing: 0.02em;
}

.l1-viewall:hover { 
  background: #F0FAF6 !important; 
}

/* ─── LEVEL 2 SUBMENU ─── */
.dropdown-l2 {
  display: none;
  position: absolute;
  top: -8px;
  left: 100%;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 2.5px solid #1D9E75;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 210px;
  z-index: 3000;
  padding: 8px 0;
  animation: fadeRight 0.15s ease;
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.l1-item:hover .dropdown-l2 { 
  display: block; 
}

.l2-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.l2-item:hover { 
  background: #F0FAF6; 
  color: #1D9E75; 
}

.l2-item .l2-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C8A96E;
  flex-shrink: 0;
  transition: background 0.12s;
}

.l2-item:hover .l2-dot { 
  background: #1D9E75; 
}

.l2-divider { 
  height: 1px; 
  background: #f0f0f0; 
  margin: 5px 0; 
}

.l2-viewall {
  font-size: 12px !important;
  color: #1D9E75 !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  letter-spacing: 0.02em;
}

.l2-viewall:hover { 
  background: #F0FAF6 !important; 
}

.l2-coming-soon {
  font-size: 12px;
  color: #bbb;
  font-style: italic;
  padding: 8px 18px;
  cursor: default;
  pointer-events: none;
}

/* ─── MOBILE RESPONSIVE NAV OVERRIDES ─── */
@media (max-width: 768px) {
  .nav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  width: 100%;
  transition: height 0.2s ease, padding 0.2s ease !important;
}
  
  .nav-logo {
    font-size: 22px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 15px 0;
    gap: 0;
    height: auto;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
  }
  
  .nav-links.active {
    display: flex !important;
  }

  .nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    width: 100%;
    padding: 12px 24px;
    height: auto;
    border-bottom: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-link:hover, .nav-link.active {
    background: #F0FAF6;
    color: #1D9E75 !important;
    border-bottom-color: transparent !important;
  }

  .dropdown-l1 {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
    display: none;
    border-radius: 0;
    animation: none;
    background: #FAF7F2;
  }
  
  .nav-item.open-mobile .dropdown-l1 {
    display: flex;
  }

  .l1-item {
    padding: 12px 36px;
    white-space: normal;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0,0,0,0.02);
  }
  
  .l1-item:hover {
    background: transparent;
  }

  .dropdown-l2 {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 0 0 0 12px;
    display: none;
    border-radius: 0;
    animation: none;
    background: #fff;
    margin-top: 8px;
  }
  
  .l1-item.open-mobile .dropdown-l2 {
    display: block;
  }
  
  .l2-item {
    padding: 8px 24px;
    white-space: normal;
  }
  
  .nav-enquiry {
    margin: 12px 24px 8px 24px !important;
    text-align: center;
    justify-content: center;
    width: calc(100% - 48px) !important;
    height: 40px !important;
  }
  
  .language-box {
    margin: 8px 24px 12px 24px !important;
    width: calc(100% - 48px) !important;
    border-left: none !important;
    padding-left: 0 !important;
    justify-content: center;
    height: auto;
  }
}

/* ─── BRAND LOGO & BRANDING RULES ─── */
/* ── DESKTOP NAV LOGO ── */ 
.nav-logo {   
  font-family: 'Cormorant Garamond', serif !important;   
  font-weight: 600 !important;   
  font-size: 28px !important;   
  color: #1A1A1A !important;   
  letter-spacing: 0.06em !important;   
  text-decoration: none !important;   
  cursor: pointer !important;   
  transition: font-size 0.2s ease !important;   
  line-height: 1 !important; 
}  

/* ── SCROLLED STATE ── */ 
.nav-scrolled .nav-logo {   
  font-size: 24px !important; 
}  

/* ── MOBILE NAV LOGO ── */ 
@media (max-width: 768px) {   
  .nav-logo {     
    font-size: 22px !important;   
  } 
}

/* =========================================================
   ELAA FOOTER
========================================================= */

/* ── FOOTER MAIN ── */
.footer {
  background: #1A1A1A !important;
  color: #FFFFFF !important;
  padding: 55px 0 28px 0 !important;
  font-family: 'Inter', sans-serif !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  margin-top: 4rem !important;
}

/* ── CONTAINER ── */
.footer .container {
  width: 88% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* ── MAIN 3 COLUMNS ── */
.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1.5fr !important;
  gap: 50px !important;
  padding-bottom: 42px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
}

/* ── COLUMNS ── */
.footer-col {
  display: flex !important;
  flex-direction: column !important;
}

/* =========================================================
   LOGO
========================================================= */

.footer-logo {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  color: #FFFFFF !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  line-height: 1 !important;
  display: block !important;
  margin: 0 0 16px 0 !important;
}

/* =========================================================
   TAGLINE
========================================================= */

.footer-tagline {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300 !important;
  font-size: 13px !important;
  color: #888888 !important;
  line-height: 1.7 !important;
  max-width: 250px !important;
  margin: 0 !important;
}

/* =========================================================
   COLUMN HEADINGS
========================================================= */

.footer-col h4 {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #999999 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  margin: 0 0 20px 0 !important;
}

/* =========================================================
   PAGE LINKS
========================================================= */

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 13px !important;
}

.footer-col ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-col ul li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #BBBBBB !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 13px !important;
}

.contact-links a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #BBBBBB !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

/* =========================================================
   FOLLOW US
========================================================= */

.follow-title {
  margin-top: 30px !important;
  margin-bottom: 16px !important;
}

.social-links {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.social-links a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #BBBBBB !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.social-links .divider {
  color: #666666 !important;
  font-size: 14px !important;
}

/* =========================================================
   HOVER
========================================================= */

.footer a:hover {
  color: #1D9E75 !important;
}

/* =========================================================
   BOTTOM ROW
========================================================= */

.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  padding-top: 25px !important;
  margin: 0 !important;

  flex-wrap: wrap !important;
  gap: 15px !important;

  background: transparent !important;
  border: none !important;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #777777 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.footer-bottom .credits {
  font-weight: 300 !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .footer {
    padding: 45px 0 25px 0 !important;
  }

  .footer .container {
    width: 90% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
    padding-bottom: 30px !important;
  }

  .footer-tagline {
    max-width: 280px !important;
    font-size: 13px !important;
  }

  .footer-col h4 {
    font-size: 11px !important;
  }

  .footer-col ul li a,
  .contact-links a,
  .social-links a {
    font-size: 14px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    padding-top: 20px !important;
  }

}