/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLING - BJ HOMEMADE EYEWEAR
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette (Deep Luxury Earthy Theme / Mockup Matched) */
  --bg-primary: #15110f;
  --bg-secondary: #1d1714;
  --bg-tertiary: #27201c;
  --bg-parchment: #ebdcc7;         /* Warm textured parchment cream */
  --text-paper-dark: #35291f;      /* Deep dark brown for parchment contrast */
  --text-paper-muted: #6e5e52;     /* Warm muted brown for text */
  
  --accent-primary: #9d6c41;       /* Golden Wood Brown */
  --accent-secondary: #b88659;     /* Warm Light Wood */
  --accent-dark: #704723;          /* Dark Walnut Wood */
  --accent-glow: rgba(157, 108, 65, 0.15);
  
  --text-main: #fcfbf9;            /* Warm Off-White */
  --text-muted: #bdaea2;           /* Warm Sand Gray */
  
  --border-color: rgba(157, 108, 65, 0.25);
  --border-hover: rgba(157, 108, 65, 0.5);
  
  --glass-bg: rgba(21, 17, 15, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-blur: blur(20px);
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-inset: inset 0 2px 4px rgba(255, 255, 255, 0.1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-round: 50%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(21, 17, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 5px 0;
  background: var(--bg-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 65px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 28px;
  height: 28px;
  stroke: var(--accent-primary);
  fill: none;
  stroke-width: 1.5;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: transparent;
  color: var(--accent-secondary);
  border: 1px solid var(--accent-primary);
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.cta-button:hover {
  background: var(--accent-primary);
  color: var(--text-main);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle svg {
  stroke: var(--text-main);
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(21, 17, 15, 0.7), rgba(21, 17, 15, 0.85)), url('Image%20Retouch%20-%20BJ%20Handmade/3.png') center/cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.6;
}

/* Bevel/Emboss Wood Style Buttons */
.btn-primary-wood {
  background: linear-gradient(to bottom, #9d6c41 0%, #704723 100%);
  color: var(--text-main);
  border: 1px solid #5a3a1b;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary-wood:hover {
  background: linear-gradient(to bottom, #ad7e52 0%, #7f532a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Hero About/Story Section Styling */
.hero-about {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(21, 17, 15, 0.82), rgba(21, 17, 15, 0.96)), url('../Image%20Retouch%20-%20BJ%20Handmade/3.png') center/cover no-repeat;
}

.hero-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-about-content {
  z-index: 10;
}

.hero-about-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--text-main);
}

.hero-lead {
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 600px;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-lead strong {
  color: var(--accent-secondary);
  font-weight: 600;
}

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

.btn-secondary-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent-primary);
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-secondary-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  transform: translateY(-2px);
}

/* Overlapping Photo Collage */
.about-collage-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-main-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 320px;
  z-index: 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.collage-sub-frame {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 240px;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, z-index 0.2s;
}

.collage-img-main, .collage-img-sub {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-collage-wrapper:hover .collage-img-main {
  transform: scale(1.03);
}

.about-collage-wrapper:hover .collage-sub-frame {
  transform: scale(1.05) translateY(-5px);
  z-index: 3;
}

.about-collage-wrapper:hover .collage-img-sub {
  transform: scale(1.03);
}

.collage-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(21, 17, 15, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent-secondary);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Section Header Dividers */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
}

.section-divider .line {
  height: 1px;
  background-color: #a89481;
  flex-grow: 1;
  max-width: 150px;
}

.section-divider h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-paper-dark);
  letter-spacing: 0.02em;
}

.section-subtitle {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: #7c6755;
  margin-bottom: 50px;
}

/* Detail Nilai & Visi Misi Section (Parchment) */
.about-details-section {
  background-color: var(--bg-parchment);
  color: var(--text-paper-dark);
  padding: 100px 0;
  border-bottom: 1px solid rgba(157, 108, 65, 0.15);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.value-card {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(157, 108, 65, 0.12);
  border-radius: var(--radius-md);
  padding: 30px 25px;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(157, 108, 65, 0.3);
  box-shadow: 0 15px 30px rgba(53, 41, 31, 0.08);
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(157, 108, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(10deg);
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-card h4 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-paper-dark);
  margin-bottom: 4px;
}

.value-sub {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 12px;
}

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

.about-statement {
  margin-top: 50px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px dashed rgba(124, 103, 85, 0.3);
  padding-top: 30px;
}

.about-statement p {
  font-size: 1.1rem;
  color: var(--text-paper-muted);
  line-height: 1.7;
}

.about-statement strong {
  color: var(--text-paper-dark);
  font-weight: 600;
}

/* Katalog Section with Parchment BG */
.catalog-section {
  background-color: var(--bg-parchment);
  color: var(--text-paper-dark);
  padding: 100px 0;
  position: relative;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Styled cards */
.product-card {
  background: #fbf6ee;
  border: 1px solid #dfd4c4;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(53, 41, 31, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(53, 41, 31, 0.13);
}

.product-image-wrapper {
  background: #ffffff;
  padding: 8px;
  border: 1px solid #e7ddce;
  border-radius: 4px;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.product-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-paper-dark);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-paper-muted);
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-paper-dark);
  margin-bottom: 16px;
}

/* Card Button: Wood green style */
.btn-detail {
  background: linear-gradient(to bottom, #41503c 0%, #293326 100%);
  color: var(--text-main);
  border: 1px solid #20271d;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  width: 100%;
}

.btn-detail span {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.btn-detail:hover {
  background: linear-gradient(to bottom, #4e5f48 0%, #323e2f 100%);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.btn-detail:hover span {
  transform: translateX(3px);
}

/* CTA & Contact Section (Green Wood Background) */
.cta-contact-section {
  background: linear-gradient(rgba(36, 49, 33, 0.92), rgba(20, 27, 18, 0.97)), url('Image%20Retouch%20-%20BJ%20Handmade/3.png') center/cover no-repeat;
  border-top: 1px solid #374732;
  padding: 90px 0 50px 0;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.cta-contact-section h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--bg-parchment);
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #c9d5c5;
  max-width: 680px;
  margin: 0 auto 45px auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

/* Light paper CTA Button */
.btn-cta-light {
  background: linear-gradient(to bottom, #ebdcc7 0%, #d5c4af 100%);
  color: var(--text-paper-dark);
  border: 1px solid #b7a48f;
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.btn-cta-light:hover {
  background: linear-gradient(to bottom, #f2e6d6 0%, #dbccb8 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
}

/* Dark green wood CTA Button */
.btn-cta-dark {
  background: linear-gradient(to bottom, #2b3827 0%, #171f15 100%);
  color: var(--bg-parchment);
  border: 1px solid #141b12;
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.btn-cta-dark:hover {
  background: linear-gradient(to bottom, #364631 0%, #202b1d 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
}

/* Social media buttons */
.social-channels {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 45px;
}

.social-channel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.social-channel-btn svg {
  width: 22px;
  height: 22px;
}

.social-channel-btn.whatsapp {
  background: #25d366;
}

.social-channel-btn.instagram {
  background: #e1306c;
}

.social-channel-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 18px rgba(0,0,0,0.45);
}

.footer-copyright {
  border-top: 1px solid rgba(235, 220, 199, 0.12);
  padding-top: 30px;
  font-size: 0.9rem;
  color: #92a48f;
}



/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-about-grid {
    gap: 35px;
  }
  .about-collage-wrapper {
    height: 400px;
  }
  

  
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu drawer */
  .menu-toggle {
    display: block;
    z-index: 101;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 120px 40px;
    transition: var(--transition-smooth);
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.15rem;
  }
  
  .nav-container .cta-button {
    display: none; /* Hide on mobile navbar */
  }

  /* Hero responsive */
  .hero-about {
    padding-top: 110px;
    padding-bottom: 60px;
    min-height: auto;
  }
  
  .hero-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-about-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-about h1 {
    font-size: 2.6rem;
  }
  
  .hero-lead {
    margin: 0 auto 30px auto;
  }
  
  .btn-primary-wood, .btn-secondary-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .about-collage-wrapper {
    height: 350px;
    max-width: 480px;
    margin: 0 auto;
  }

  /* About responsive */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-statement {
    margin-top: 40px;
  }

  /* CTA responsive */
  .cta-contact-section {
    padding: 70px 0 40px 0;
  }
  
  .cta-contact-section h2 {
    font-size: 2.3rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
  }
  
  .btn-cta-light, .btn-cta-dark {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-about h1 {
    font-size: 2.1rem;
  }
  
  .about-collage-wrapper {
    height: 280px;
  }
  
  .section-divider h2 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   KEY MESSAGE BADGE & RESELLER BANNER
   ========================================================================== */

/* Badge Key Message */
.key-message-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(121, 154, 113, 0.12);
  border: 1px solid rgba(121, 154, 113, 0.3);
  color: #c9d5c5;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.badge-dot-green {
  width: 8px;
  height: 8px;
  background-color: #799a71;
  border-radius: var(--radius-round);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(121, 154, 113, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(121, 154, 113, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(121, 154, 113, 0); }
}

/* Reseller Banner */
.reseller-banner {
  background: radial-gradient(circle at top left, #fbf6ee, #f3ebd9);
  border: 1px dashed rgba(124, 103, 85, 0.45);
  border-radius: 8px;
  padding: 35px 30px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(53, 41, 31, 0.03);
}

.reseller-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reseller-badge {
  background: #7c6755;
  color: #fcfbf9;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.reseller-banner h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-paper-dark);
  margin-bottom: 12px;
}

.reseller-banner p {
  color: var(--text-paper-muted);
  font-size: 0.95rem;
  max-width: 680px;
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 400;
}

.btn-reseller-contact {
  background: linear-gradient(to bottom, #7c6755 0%, #5a493c 100%);
  color: #fcfbf9;
  border: 1px solid #4a3c31;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.btn-reseller-contact:hover {
  background: linear-gradient(to bottom, #8f7763 0%, #685547 100%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

/* ==========================================================================
   MOBILE-FRIENDLY SCROLL ANIMATIONS (GPU ACCELERATED)
   ========================================================================== */

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform; /* Hardware GPU acceleration */
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered load delays for products catalog grid */
.product-card:nth-child(1) { transition-delay: 0.05s; }
.product-card:nth-child(2) { transition-delay: 0.15s; }
.product-card:nth-child(3) { transition-delay: 0.25s; }
.product-card:nth-child(4) { transition-delay: 0.35s; }

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   VISI & MISI LAYOUT (LOVABLE & PREMIUM)
   ========================================================================== */

.visi-misi-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 60px;
  background: #fbf6ee; /* Light cream to stand out from background */
  border: 1px solid #dfd4c4;
  border-radius: var(--radius-md);
  padding: 45px;
  box-shadow: 0 10px 25px rgba(53, 41, 31, 0.03);
  position: relative;
}

.visi-card {
  border-right: 1px solid #dfd4c4;
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.misi-card {
  display: flex;
  flex-direction: column;
}

.visi-card h3, .misi-card h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-paper-dark);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.02em;
}

.visi-card h3::after, .misi-card h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-primary);
}

.visi-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #5c4b3d;
  margin: 0;
}

.misi-list {
  list-style: none;
  counter-reset: misi-counter;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.misi-list li {
  counter-increment: misi-counter;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-paper-muted);
  line-height: 1.6;
}

.misi-list li::before {
  content: counter(misi-counter);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
  color: var(--text-main);
  width: 24px;
  height: 24px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(124, 103, 85, 0.2);
  margin-top: 1px;
}

@media (max-width: 992px) {
  .visi-misi-section {
    gap: 40px;
    padding: 35px;
  }
  .visi-card {
    padding-right: 35px;
  }
}

@media (max-width: 768px) {
  .visi-misi-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 30px;
  }
  
  .visi-card {
    border-right: none;
    border-bottom: 1px solid #dfd4c4;
    padding-right: 0;
    padding-bottom: 30px;
  }
}



