/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1a5929;
  --green-mid: #2d7a3a;
  --green-light: #3d8a4a;
  --gold: #c8a020;
  --gold-light: #d4b040;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: white;
  font-size: 12.5px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-features .feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-bar-features .feature-item img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.top-bar-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 12.5px;
  transition: color var(--transition);
}

.top-bar-contact a:hover { color: var(--gold-light); }

.top-bar-contact a img {
  width: 15px;
  height: 15px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  outline: none;
}

.logo img {
  width: 148px;
  height: auto;
  display: block;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a,
.nav-links > .dropdown > a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 12px;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--green-dark);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links > a:hover,
.nav-links > a.active { color: var(--green-dark); }

.nav-links > a:hover::after,
.nav-links > a.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 12px;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  white-space: nowrap;
}

.dropdown > a:hover { color: var(--green-dark); }

.dropdown-arrow {
  font-size: 9px;
  transition: transform var(--transition);
}

.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 160px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text-mid);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--green-dark);
  padding-left: 24px;
}

/* Nav icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  position: relative;
}

.icon-btn:hover { background: var(--cream); }

.icon-btn img { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--green-dark);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--cream); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid #eee;
  padding: 16px 24px;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.4px;
}

.mobile-nav a:hover {
  background: var(--cream);
  color: var(--green-dark);
  padding-left: 22px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #f8f5ef 0%, #f0ebe0 50%, #e8f4ec 100%);
  padding: 60px 0 40px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,160,32,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content { max-width: 520px; }

.hero-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-line1 { display: block; color: var(--text-dark); }

.hero-line2 {
  display: block;
  color: var(--green-dark);
  font-style: italic;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 120px;
}

.hero-feature img {
  width: 30px;
  height: 30px;
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-feature strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.hero-feature span {
  font-size: 11.5px;
  color: var(--text-mid);
  line-height: 1.4;
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(26,89,41,0.30);
}

.btn-shop:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,89,41,0.35);
}

.btn-shop .arrow {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  animation: float 4s ease-in-out infinite;
}

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

/* Hero carousel dots (mobile) */
.hero-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.hero-dot.active { background: var(--green-dark); }

/* ===== ABOUT US SECTION ===== */
.about-section {
  padding: 72px 0 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(26,89,41,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  margin-bottom: 52px;
}

.about-content .section-label { margin-bottom: 10px; }

.about-title {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.about-title span { color: var(--green-dark); }

.about-divider { margin-bottom: 22px; }

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

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

.about-mission {
  margin-top: 20px !important;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: white;
  border-radius: 0 8px 8px 0;
  font-size: 14.5px !important;
  color: var(--green-dark) !important;
  font-style: italic;
}

/* Highlight cards */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-card {
  background: white;
  border: 1px solid #e4ddd0;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,89,41,0.12);
  border-color: var(--gold);
}

.highlight-icon {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1;
}

.highlight-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.highlight-card span {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Social Media Bar */
.social-bar {
  border-top: 1px solid #ddd8cc;
  padding-top: 36px;
  text-align: center;
}

.social-bar-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 22px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition);
  text-decoration: none;
}

.social-link img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: box-shadow var(--transition);
}

.social-link span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-link:hover img {
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.social-link:hover span { color: var(--green-dark); }

.social-link--inactive {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Footer social row */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.footer-social a img { width: 36px; height: 36px; }

.footer-bottom {
  background: #0f3a1a;
  text-align: center;
  padding: 14px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
}

.footer-bottom a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* ===== RESPONSIVE — About ===== */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-highlights { grid-template-columns: 1fr 1fr; gap: 12px; }
  .social-icons { gap: 14px; }
  .social-link img { width: 40px; height: 40px; }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 70px 0 80px;
  background: white;
}

.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--green-dark);
  margin-bottom: 12px;
}

.section-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 48px;
}

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

.product-card {
  background: white;
  border: 1px solid #ece8e0;
  border-radius: 12px;
  padding: 20px 16px 22px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,89,41,0.03), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #d4c8a8;
}

.product-card:hover::before { opacity: 1; }

.product-image {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.btn-view {
  display: inline-block;
  background: var(--green-dark);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 9px 20px;
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-view:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,89,41,0.28);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  padding: 28px 0;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.footer-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.footer-feature:last-child { border-right: none; }

.footer-feature img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.footer-feature strong {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-feature span {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  margin-top: 2px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
  border: none;
}

.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--green-mid); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-icons { display: none; }
  .hamburger { display: flex; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-features { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 420px; }
  .hero-dots { display: flex; }

  .footer-features { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .footer-feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer-feature:nth-child(2n) { border-right: none; }
  .footer-feature:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 640px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .top-bar-features { gap: 12px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .hero { padding: 36px 0 28px; }
  .hero-features { gap: 14px; }
  .hero-feature { min-width: 100px; }

  .footer-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-name { font-size: 18px; }
}
