/* ===== Variables ===== */
:root {
  --green: #5a9e2f;
  --green-dark: #4a8526;
  --green-light: #e8f5e0;
  --green-pale: #f3faf0;
  --text: #333;
  --text-muted: #777;
  --border: #e5e5e5;
  --white: #fff;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 28px;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}

.top-bar-actions { display: flex; gap: 12px; }

.top-bar select {
  border: none;
  background: transparent;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* ===== Header ===== */
.site-header {
  background: var(--white);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img-header {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.logo-img-full {
  height: 130px;
  width: auto;
  margin-bottom: 8px;
}

.logo-footer {
  display: inline-flex;
}

.search-bar {
  flex: 1;
  display: flex;
  max-width: 520px;
  margin: 0 auto;
}

.search-bar input {
  flex: 1;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 10px 16px;
  font-size: 0.9rem;
  outline: none;
}

.search-bar input:focus { border-color: var(--green); }

.search-bar button {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.search-bar button:hover { background: var(--green-dark); }

.header-icons { display: flex; gap: 8px; }

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  position: relative;
}

.icon-btn:hover { color: var(--green); }

.badge {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Navigation ===== */
.main-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 50px;
}

.nav-dropdown {
  position: relative;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.category-btn:hover { background: var(--green-dark); }

.category-btn .chevron {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.category-btn[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 50;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.arrow { font-size: 0.7rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover { background: var(--green-dark); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-whatsapp:hover { background: #1da851; }

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  transition: background 0.2s;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-row.center { justify-content: center; margin-top: 32px; }

.whatsapp-btn { color: #25d366; }
.whatsapp-btn:hover { color: #1da851; }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: var(--green-pale);
  padding: 48px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 1.75rem;
  margin-top: 8px;
}

.page-hero .section-desc {
  margin-bottom: 0;
}

/* ===== Contact channels ===== */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-channel:hover {
  box-shadow: var(--shadow);
}

.contact-channel.whatsapp {
  border-color: #25d366;
  background: #f0fdf4;
}

.contact-channel.email {
  border-color: var(--green);
  background: var(--green-pale);
}

.contact-channel strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-channel small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.channel-icon {
  font-size: 1.8rem;
}

.footer-contact-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-contact-links .btn {
  padding: 8px 16px;
  font-size: 0.75rem;
}

.footer-contact-links .btn-outline {
  color: #ccc;
  border-color: rgba(255,255,255,0.3);
}

/* ===== Quality / About images ===== */
.quality-image img,
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--green-light);
}

.deal-image img {
  min-height: 280px;
  object-fit: cover;
  background: var(--green-light);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #1a2233;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 6s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.94);
  padding: 40px 56px;
  border-radius: var(--radius-lg);
  text-align: center;
  z-index: 2;
  min-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-tag {
  display: inline-block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.dot.active { background: var(--green); border-color: var(--green); }

/* ===== Features ===== */
.features {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== Categories ===== */
.categories {
  background: var(--green-pale);
  padding: 48px 0;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.category-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.category-item {
  text-align: center;
  transition: transform 0.2s;
}

.category-item:hover { transform: translateY(-4px); }

.category-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green-light);
  margin: 0 auto 10px;
  background: var(--white);
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}

/* ===== Featured Deal ===== */
.featured-deal {
  padding: 48px 0;
}

.deal-card {
  display: flex;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.deal-image {
  position: relative;
  flex: 0 0 45%;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.deal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
}

.deal-info {
  flex: 1;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deal-info h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.deal-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-new {
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 700;
}

.stock-bar { margin-bottom: 20px; }

.stock-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.progress-track {
  height: 8px;
  background: var(--green-light);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 4px;
}

.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.countdown-item {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 8px 14px;
  text-align: center;
  min-width: 56px;
}

.count-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.count-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== Products ===== */
.products {
  padding: 48px 0;
  background: var(--white);
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.tab {
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.tab:hover,
.tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius);
}

.product-actions {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 8px;
  transition: all 0.3s;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-actions button,
.product-actions a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  text-decoration: none;
}

.product-actions button:hover,
.product-actions a:hover {
  background: var(--green);
  color: var(--white);
}

.product-details {
  padding: 14px 16px;
}

.product-details h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-prices .price-old {
  font-size: 0.82rem;
}

.product-prices .price-new {
  font-size: 0.95rem;
}

/* ===== About ===== */
.about {
  padding: 64px 0;
  background: var(--green-pale);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.6rem;
  margin: 10px 0 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  gap: 32px;
}

.about-stats li {
  text-align: center;
}

.about-stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--green);
}

.about-stats span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ===== Contact ===== */
.contact {
  padding: 64px 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form textarea {
  margin-bottom: 16px;
  resize: vertical;
}

.contact-form .btn {
  border: none;
  cursor: pointer;
}

/* ===== Footer ===== */
.site-footer {
  background: #2a3a1f;
  color: #ccc;
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.site-footer ul li {
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.site-footer ul a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-card { flex-direction: column; }
  .deal-image { flex: none; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-inner { flex-wrap: wrap; }
  .logo-img-header { height: 44px; max-width: 170px; }
  .search-bar { order: 3; max-width: 100%; width: 100%; }
  .contact-channels { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hero-content { min-width: auto; padding: 28px 32px; margin: 0 16px; width: calc(100% - 32px); }
  .hero-content h1 { font-size: 1.3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .category-row { gap: 20px; }
  .category-img { width: 80px; height: 80px; }
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Hero subtitle ===== */
.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

/* ===== Mobile menu ===== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
}

.mobile-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 0 16px;
}

.mobile-nav > ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 16px;
}

.mobile-nav a,
.mobile-products-toggle {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--text);
}

.mobile-nav a:hover { color: var(--green); }

.mobile-products-item { list-style: none; }

.mobile-products-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
}

.mobile-products-toggle .chevron {
  transition: transform 0.2s;
}

.mobile-products-toggle.open .chevron,
.mobile-products-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.mobile-products-list {
  list-style: none;
  padding: 0 0 8px 12px;
  background: var(--green-pale);
}

.mobile-products-list a {
  font-size: 0.92rem;
  padding: 12px 8px;
  border-bottom-color: rgba(90, 158, 47, 0.15);
}

/* ===== 6-column features ===== */
.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Featured deal updates ===== */
.deal-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.deal-highlights {
  margin-bottom: 24px;
}

.deal-highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text);
}

.deal-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===== Product card extras ===== */
.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.product-packaging {
  font-size: 0.75rem;
  color: var(--green-dark);
  font-weight: 500;
}

/* ===== Services ===== */
.services {
  padding: 64px 0;
  background: var(--white);
}

.section-title.left {
  text-align: left;
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
}

.page-hero .section-desc {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  max-width: none;
}

.services .hero-tag,
.process .hero-tag,
.quality .hero-tag {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 8px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Process ===== */
.process {
  padding: 64px 0;
  background: var(--green-pale);
}

.process-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.process-tab {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.process-tab:hover,
.process-tab.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.process-step-num {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 auto 10px;
}

.process-step h4 {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ===== Quality ===== */
.quality {
  padding: 64px 0;
  background: var(--white);
}

.quality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quality-text h2 {
  font-size: 1.6rem;
  margin: 10px 0 16px;
}

.quality-text > p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.quality-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.quality-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.quality-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ===== Markets ===== */
.markets {
  padding: 64px 0;
  background: var(--green-pale);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.market-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.market-card.highlight {
  border-color: var(--green);
  background: var(--green-light);
}

.market-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--green-dark);
}

.market-card li {
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.market-card li:last-child { border-bottom: none; }

/* ===== About extras ===== */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.vision-mission h3 {
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 8px;
}

.vision-mission p,
.vision-mission li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vision-mission li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.vision-mission li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
}

.founders {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== Contact form security ===== */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group label span {
  color: #c0392b;
}

.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
}

.contact-form select:focus { border-color: var(--green); }

.form-error {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 1em;
}

.contact-form input.invalid,
.contact-form textarea.invalid,
.contact-form select.invalid {
  border-color: #c0392b;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-status {
  margin-bottom: 12px;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status.success { color: var(--green-dark); }
.form-status.error { color: #c0392b; }

.site-footer address { font-style: normal; }

/* ===== Tooltips ===== */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  background: #222;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 6px 10px;
  border-radius: 6px;
  max-width: 240px;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 100;
  text-align: center;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===== Manage products (internal) ===== */
.manage-products { padding: 48px 0 72px; }

.manage-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.manage-form-panel h2,
.manage-list-panel h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.manage-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.manage-hint code {
  background: var(--green-pale);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

.tag-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.tag-fieldset legend {
  padding: 0 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
  font-size: 0.9rem;
  cursor: pointer;
}

.managed-product-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.managed-product-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--white);
}

.managed-product-card.status-unavailable {
  border-color: #e0b35a;
  background: #fffaf0;
}

.managed-product-card.status-hidden {
  opacity: 0.72;
  background: #f7f7f7;
}

.managed-product-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
}

.managed-product-card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.managed-product-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.managed-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.status-control {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.status-control select {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: var(--white);
  max-width: 220px;
}

.pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--border);
  color: var(--text-muted);
}

.pill.custom {
  background: var(--green-light);
  color: var(--green-dark);
}

.pill.warn {
  background: #ffe8b8;
  color: #8a5a00;
}

.pill.muted {
  background: #e8e8e8;
  color: #666;
}

.managed-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-warn {
  background: #d68910;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-warn:hover { background: #b9770e; }

.product-card.is-unavailable {
  opacity: 0.85;
}

.product-status-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #d68910;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 4px;
  z-index: 2;
}

.product-actions .action-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-outline-dark {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.btn-outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-danger {
  background: #c0392b;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-danger:hover { background: #a93226; }

.empty-products {
  color: var(--text-muted);
  text-align: center;
  padding: 40px 0;
}

@media (max-width: 992px) {
  .manage-layout { grid-template-columns: 1fr; }
  .managed-product-card {
    grid-template-columns: 64px 1fr;
  }
  .managed-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }
}

.contact-inner .section-desc { margin-bottom: 32px; }

/* ===== Responsive additions ===== */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: 1fr; }
  .quality-inner { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}
