/* ============================================
   CV EHPRA Farm - Company Profile Website
   Color Theme: White & Light Brown
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
  /* Primary Colors */
  --brown-dark: #6b4226;
  --brown-medium: #8b6f47;
  --brown-main: #a0785a;
  --brown-light: #c8a97e;
  --brown-lighter: #d4b896;
  --brown-pale: #e8d5c0;
  --brown-cream: #f5e6d3;
  --brown-bg: #fdf8f3;

  /* Neutral */
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-light: #f5f5f5;
  --gray-100: #e8e8e8;
  --gray-200: #d1d1d1;
  --gray-300: #b0b0b0;
  --gray-400: #888888;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-700: #333333;
  --gray-800: #222222;
  --black: #111111;

  /* Accents */
  --green-wa: #25d366;
  --green-wa-dark: #128c7e;
  --gold: #d4a340;
  --red-sale: #e74c3c;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(107, 66, 38, 0.08);
  --shadow-md: 0 4px 20px rgba(107, 66, 38, 0.12);
  --shadow-lg: 0 8px 40px rgba(107, 66, 38, 0.15);
  --shadow-xl: 0 16px 60px rgba(107, 66, 38, 0.18);

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.highlight {
  color: var(--brown-main);
}

/* ========== PRELOADER ========== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brown-light), var(--brown-main));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: pulse-loader 1.5s ease-in-out infinite;
}

.loader-icon i {
  font-size: 32px;
  color: var(--white);
}

.loader p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 2px;
}

@keyframes pulse-loader {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: var(--brown-cream);
  color: var(--brown-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(160, 120, 90, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(160, 120, 90, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brown-dark);
  border-color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--brown-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.logo-sub {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar.scrolled .logo-main {
  color: var(--brown-dark);
}

.navbar.scrolled .logo-sub {
  color: var(--brown-main);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link {
  color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--brown-dark);
  background: var(--brown-cream);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--green-wa);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa-nav:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-wa-nav i {
  font-size: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger .bar {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger .bar {
  background: var(--brown-dark);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 40%, var(--brown-main) 70%, var(--brown-light) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--brown-cream);
  position: relative;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-slider {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.hero-slider-pagination {
  position: absolute;
  bottom: 14px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.hero-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 4px;
  transition: var(--transition);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--brown-dark);
  font-weight: 600;
  font-size: 14px;
  animation: float 3s ease-in-out infinite;
}

.hero-img-badge i {
  color: var(--green-wa);
  font-size: 20px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== ABOUT SECTION ========== */
.about {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: -40px;
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  color: var(--white);
  text-align: center;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.9;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.about-content > p {
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  background: var(--brown-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 20px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  color: var(--white);
  transform: scale(1.1);
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ========== PRODUCTS SECTION ========== */
.products {
  background: var(--brown-bg);
}

.products-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(200, 169, 126, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(200, 169, 126, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Product Filter */
.product-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(160, 120, 90, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Catalog page header */
.catalog-hero {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium), var(--brown-main));
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.catalog-hero .container {
  position: relative;
  z-index: 2;
}

.catalog-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.catalog-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.catalog-hero .breadcrumb a:hover {
  color: var(--white);
}

.catalog-hero .breadcrumb span {
  color: var(--white);
  font-weight: 600;
}

.catalog-hero h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.catalog-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto;
}

/* Category section titles */
.category-section {
  margin-bottom: 10px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brown-pale);
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}

.category-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-800);
}

.category-header h2 .count {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-400);
  margin-left: 8px;
}

/* Catalog page navbar always scrolled style */
.navbar-catalog {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar-catalog .logo-main {
  color: var(--brown-dark);
}

.navbar-catalog .logo-sub {
  color: var(--brown-main);
}

.navbar-catalog .nav-link {
  color: var(--gray-600);
}

.navbar-catalog .nav-link:hover,
.navbar-catalog .nav-link.active {
  color: var(--brown-dark);
  background: var(--brown-cream);
}

.navbar-catalog .hamburger .bar {
  background: var(--brown-dark);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card.hidden {
  display: none;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.sale {
  background: linear-gradient(135deg, var(--red-sale), #c0392b);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--white);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--green-wa);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-product:hover {
  background: var(--green-wa-dark);
  transform: scale(1.05);
}

/* Product marketplace / order buttons */
.product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.product-actions .btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  flex: 1;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
}

.btn-order.btn-wa {
  background: var(--green-wa);
  color: var(--white);
}

.btn-order.btn-wa:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
}

.btn-order.btn-shopee {
  background: #ee4d2d;
  color: var(--white);
}

.btn-order.btn-shopee:hover {
  background: #d73211;
  transform: translateY(-2px);
}

.btn-order.btn-tokped {
  background: #42b549;
  color: var(--white);
}

.btn-order.btn-tokped:hover {
  background: #319438;
  transform: translateY(-2px);
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--brown-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-dark);
}

.product-features-mini {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.product-features-mini span {
  font-size: 11px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-features-mini i {
  color: var(--green-wa);
  font-size: 12px;
}

.products-cta {
  text-align: center;
  margin-top: 36px;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.products-cta p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ========== ADVANTAGES SECTION ========== */
.advantages {
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brown-light), var(--brown-main));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--brown-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--brown-dark);
  transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.advantage-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== PROCESS SECTION ========== */
.process {
  background: var(--brown-bg);
}

.process-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  padding: 30px 24px;
  flex: 1;
  min-width: 200px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--brown-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--white);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(160, 120, 90, 0.4);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.process-connector {
  width: 80px;
  height: 2px;
  background: var(--brown-pale);
  margin-top: 110px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brown-light);
  border-top: 2px solid var(--brown-light);
  transform: rotate(45deg);
}

/* ========== SHIPPING & PAYMENT SECTION ========== */
.shipping-payment {
  background: var(--brown-bg);
  padding-top: 0;
}

.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
}

.sp-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.sp-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brown-pale);
}

.sp-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}

.sp-card-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
}

.sp-payment-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.payment-badge i {
  font-size: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.payment-badge div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-badge strong {
  font-size: 15px;
  font-weight: 700;
}

.payment-badge span {
  font-size: 13px;
  opacity: 0.85;
}

.payment-badge.cod {
  background: #e8f8ef;
  color: #1a7a40;
  border: 1px solid #b3e8c9;
}

.payment-badge.transfer {
  background: #e8f0fb;
  color: #1a4fa0;
  border: 1px solid #b3ccf0;
}

.sp-courier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.courier-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--brown-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
  min-height: 120px;
}

.courier-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--brown-pale);
}

.courier-badge img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.courier-logo-text {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.courier-fallback {
  font-size: 13px;
  font-weight: 700;
  color: #ff6b00;
  display: flex;
  align-items: center;
  gap: 5px;
}

.courier-badge p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

/* ========== GALLERY SECTION ========== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(107, 66, 38, 0.1), rgba(107, 66, 38, 0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 8px;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--brown-light);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-content img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  background: var(--brown-bg);
}

.testimonial-slider {
  padding-bottom: 60px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin: 10px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating i {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brown-pale), var(--brown-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 20px;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.author-info span {
  font-size: 13px;
  color: var(--gray-400);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--brown-pale);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--brown-main);
  width: 30px;
  border-radius: 5px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium), var(--brown-main));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ========== CONTACT SECTION ========== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--brown-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card:hover {
  background: var(--brown-cream);
  transform: translateX(5px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.contact-detail h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--gray-500);
}

.contact-detail a {
  color: var(--brown-main);
}

.contact-detail a:hover {
  color: var(--brown-dark);
}

.contact-social h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brown-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-main);
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--brown-main), var(--brown-dark));
  color: var(--white);
  transform: translateY(-3px);
}

.contact-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-social-center {
  text-align: center;
}

.contact-social-center h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.contact-social-center .social-links {
  justify-content: center;
}

.btn-wa-contact {
  font-size: 16px;
  padding: 14px 36px;
  gap: 10px;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-800);
}

.footer-top {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-main {
  color: var(--white);
}

.footer-logo .logo-sub {
  color: var(--brown-light);
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--brown-main);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brown-main);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  font-size: 14px;
  color: var(--gray-300);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul a::before {
  content: '›';
  color: var(--brown-light);
  font-size: 18px;
  font-weight: 700;
}

.footer-links ul a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--gray-300);
}

.footer-contact ul li i {
  color: var(--brown-light);
  font-size: 16px;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact ul li a {
  color: var(--gray-300);
}

.footer-contact ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

/* ========== FLOATING WHATSAPP ========== */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.floating-wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--green-wa);
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wa-pulse 2s ease-in-out infinite;
}

.floating-wa a:hover {
  background: var(--green-wa-dark);
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(37, 211, 102, 0.6),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--brown-main);
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brown-dark);
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */

/* Tablets & Small Laptops */
@media screen and (max-width: 1024px) {
  .btn-wa-nav span {
    display: none;
  }

  .btn-wa-nav {
    padding: 10px 14px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 0;
  }

  .hero-image {
    order: 1;
    margin-bottom: 20px;
  }

  .hero-img-wrapper {
    max-width: 350px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-experience-badge {
    right: 10px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sp-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .catalog-hero h1 {
    font-size: 36px;
  }

  .category-header h2 {
    font-size: 24px;
  }
}

/* Mobile Landscape & Tablets Portrait */
@media screen and (max-width: 768px) {
  :root {
    --section-padding: 55px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  /* Navbar Mobile */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 30px 30px;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    gap: 4px;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    color: var(--gray-700);
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--brown-cream);
    color: var(--brown-dark);
  }

  .nav-actions {
    display: none;
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding: 90px 0 50px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 28px;
  }

  .hero-img-wrapper {
    max-width: 280px;
  }

  .hero-img-badge {
    display: flex;
    bottom: 40px;
    left: 8px;
    font-size: 12px;
    padding: 10px 16px;
  }

  /* About Mobile */
  .about-image {
    overflow: hidden;
  }

  .about-img-float {
    right: 0;
    bottom: -15px;
  }

  .about-experience-badge {
    right: 0;
    top: 20px;
    padding: 16px 18px;
  }

  /* Products Mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Advantages Mobile */
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advantage-card {
    padding: 24px 20px;
  }

  /* Process Mobile */
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .process-connector::after {
    top: auto;
    bottom: -5px;
    left: -4px;
    right: auto;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid var(--brown-light);
    border-left: 2px solid var(--brown-light);
    transform: rotate(-45deg);
  }

  /* Shipping-Payment Mobile */
  .sp-card {
    padding: 24px 16px;
  }

  .sp-courier-grid {
    justify-items: center;
  }

  .courier-badge {
    padding: 20px 14px;
    min-height: 140px;
    width: 100%;
  }

  .courier-badge img {
    height: 48px;
  }

  .courier-logo-text {
    font-size: 16px;
  }

  .courier-badge p {
    font-size: 12px;
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  /* CTA Mobile */
  .cta-banner {
    padding: 48px 0;
  }

  .cta-text h2 {
    font-size: 28px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
    width: 100%;
  }

  /* Contact Cards Mobile */
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    padding: 50px 0 30px;
  }

  /* Catalog Mobile */
  .catalog-hero {
    padding: 110px 0 40px;
  }

  .catalog-hero h1 {
    font-size: 30px;
  }

  .catalog-hero p {
    font-size: 14px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .category-header h2 {
    font-size: 22px;
  }

  .category-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-item {
    flex: 1;
    min-width: 80px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .about-img-float {
    width: 140px;
    height: 140px;
    right: 0;
    bottom: -10px;
  }

  .about-experience-badge {
    right: 0;
    top: 20px;
    padding: 18px 20px;
  }

  .exp-number {
    font-size: 34px;
  }

  .lightbox-content img {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .floating-wa a {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 90px;
    right: 24px;
  }

  .floating-wa {
    right: 20px;
    bottom: 24px;
  }

  .wa-tooltip {
    display: none;
  }

  .catalog-hero h1 {
    font-size: 26px;
  }

  .category-header h2 {
    font-size: 20px;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
  text-align: center;
}
.text-white {
  color: var(--white);
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--brown-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brown-main);
}

/* ========== SELECTION ========== */
::selection {
  background: var(--brown-light);
  color: var(--white);
}
