/* ===== Scotch Prime Website Styles ===== */

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

:root {
  --bg-white: #ffffff;
  --bg-light: #f4fafa;
  --bg-card: #ffffff;
  --bg-card-hover: #eaf6fb;
  --text-primary: #0d3a4c;
  --text-secondary: #325866;
  --text-muted: #5f9bb0;
  --accent: #4bb6e0;
  --accent-light: #a5daf0;
  --accent-dark: #1c7fa6;
  --accent-darker: #0d3a4c;
  --white: #ffffff;
  --border: #d0e8f2;
  --border-light: #e8f3f8;
  --shadow: 0 2px 12px rgba(13, 58, 76, 0.06);
  --shadow-hover: 0 6px 24px rgba(13, 58, 76, 0.10);
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
  --container-width: 1200px;
  --nav-height: 70px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s, box-shadow 0.3s;
  height: var(--nav-height);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 8px rgba(13, 58, 76, 0.08);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-dark);
  background: rgba(75, 182, 224, 0.08);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 0.25s;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.lang-toggle:hover {
  border-color: var(--accent);
}

.lang-toggle .lang-zh,
.lang-toggle .lang-en {
  padding: 2px 6px;
  border-radius: 10px;
  transition: all 0.25s;
}

.lang-toggle .lang-zh.active,
.lang-toggle .lang-en.active {
  background: var(--accent);
  color: #fff;
}

.lang-divider {
  color: var(--border);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent-dark);
  transition: transform 0.3s, opacity 0.3s;
}

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

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bg-pasture.jpg') center/cover no-repeat;
  background-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.75) 0%,
    rgba(244,250,250,0.60) 40%,
    rgba(255,255,255,0.80) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(75, 182, 224, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(28, 127, 166, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-scroll {
  z-index: 2;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 16px rgba(13, 58, 76, 0.08));
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 14px 48px;
  border: 1.5px solid var(--accent-dark);
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 2px;
}

.hero-cta:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-indicator {
  width: 20px;
  height: 32px;
  border: 2px solid var(--text-muted);
  border-radius: 10px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll 2s ease infinite;
}

@keyframes scroll {
  0%, 100% { opacity: 0; top: 6px; }
  50% { opacity: 1; top: 14px; }
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section:nth-child(even) {
  background-color: var(--bg-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
}

.section-intro {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* --- Why Choose --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 400;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.why-summary {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  border-top: 1px solid var(--border-light);
}

.why-summary p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Brand Story --- */
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.story-image .image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.story-image img,
.story-main-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.story-image .image-placeholder svg {
  width: 100%;
  height: 100%;
}

.abp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.abp-logo-img {
  height: 28px;
  width: auto;
}

.abp-badge span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.story-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-dark);
  margin-bottom: 20px;
  font-weight: 400;
}

.story-text p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- Certification --- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.cert-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.cert-icon svg {
  width: 100%;
  height: 100%;
}

.cert-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4px;
  font-weight: 400;
}

.cert-subtitle {
  text-align: center;
  color: var(--accent-dark);
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.cert-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent-darker);
  margin: 20px 0 8px;
  font-weight: 400;
}

.cert-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.cert-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 100%;
  height: 100%;
}

.cert-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-icon-redtractor svg {
  filter: drop-shadow(0 2px 8px rgba(218,37,29,0.2));
}

.cert-icon-pgi svg {
  filter: drop-shadow(0 2px 8px rgba(0,51,153,0.2));
}

.cert-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.cert-highlight {
  background: var(--bg-light);
  border-radius: 6px;
  padding: 16px;
}

.cert-highlight h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--accent-darker);
  margin: 0 0 4px;
  font-weight: 400;
}

.cert-highlight p {
  font-size: 0.85rem;
  margin: 0;
}

/* --- Story Badges --- */
.story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.story-badge {
  background: rgba(75, 182, 224, 0.08);
  border: 1px solid var(--accent-light);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-dark);
}

/* --- Products --- */
.products-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.product-image-main {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.product-main-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.product-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.product-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
  font-weight: 400;
}

.product-info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.product-origin {
  background: rgba(75, 182, 224, 0.04);
  border: 1px solid rgba(75, 182, 224, 0.15);
  border-radius: 6px;
  padding: 24px;
}

.product-origin p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Ultra Tender --- */
.ut-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.ut-logo {
  width: 160px;
  height: auto;
}

.ut-highlight {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.ut-text p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}

.ut-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.ut-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.ut-card-premium {
  border-color: var(--accent-light);
  background: rgba(75, 182, 224, 0.04);
}

.ut-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 400;
}

.ut-card-premium h4 {
  color: var(--accent-dark);
}

.ut-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ut-summary {
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

/* --- Sustainability --- */
.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.sus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, box-shadow 0.3s;
  text-align: center;
}

.sus-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-hover);
}

.sus-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
}

.sus-icon svg {
  width: 100%;
  height: 100%;
}

.sus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
  font-weight: 400;
}

.sus-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

/* --- Where to Buy --- */
.store-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Store Circle Badge */
.store-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  transition: transform 0.25s;
  width: 110px;
}

.store-badge:hover {
  transform: translateY(-4px);
}

.store-badge-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s;
  padding: 10px;
  text-align: center;
}

.store-badge:hover .store-badge-circle {
  box-shadow: 0 6px 20px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.06);
}

.store-badge-text {
  font-family: var(--font-body);
  line-height: 1.15;
  display: block;
}

.store-badge-sub {
  font-size: 0.6rem;
  line-height: 1;
  display: block;
}

.store-badge-img {
  padding: 14px;
}

.store-badge-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.store-more {
  text-align: center;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

/* --- Events --- */
.events-timeline {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
}

.events-timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.event-item {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  position: relative;
}

.event-date {
  width: 120px;
  flex-shrink: 0;
  text-align: right;
  color: var(--accent-dark);
  font-size: 0.85rem;
  padding-top: 4px;
  font-weight: 500;
}

.event-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.event-content:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-hover);
}

.event-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 400;
}

.event-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

.event-content a {
  color: var(--accent-dark);
  text-decoration: none;
}

.event-content a:hover {
  text-decoration: underline;
}

/* --- Distributor --- */
.distributor-content {
  max-width: 700px;
  margin: 48px auto 0;
}

.distributor-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-light);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.company-name-zh {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 400;
}

.company-name-en {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent-dark);
  margin-bottom: 32px;
  font-weight: 400;
}

.company-details {
  text-align: left;
  margin-bottom: 32px;
}

.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.detail-item a {
  color: var(--accent-dark);
  text-decoration: none;
}

.detail-item a:hover {
  text-decoration: underline;
}

.distributor-cta {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.distributor-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* --- Footer --- */
.footer {
  background: #eaf6fb;
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

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

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--accent-dark);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 58, 76, 0.06);
}

.footer-distributor {
  margin-top: 6px;
  font-size: 0.75rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 992px) {
  .story-content,
  .products-content,
  .ut-content {
    grid-template-columns: 1fr;
  }

  .ut-comparison {
    grid-template-columns: 1fr;
  }

  .product-image-main {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(13, 58, 76, 0.06);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    display: block;
    padding: 12px 8px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
  }

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

  .sustainability-grid {
    grid-template-columns: 1fr;
  }

  .store-grid {
    gap: 14px;
  }

  .store-badge {
    width: 90px;
  }

  .store-badge-circle {
    width: 76px;
    height: 76px;
  }

  .events-timeline::before {
    left: 0;
    display: none;
  }

  .event-item {
    flex-direction: column;
    gap: 8px;
  }

  .event-date {
    width: auto;
    text-align: left;
  }

  .distributor-card {
    padding: 32px 24px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-logo {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .store-badge {
    width: 78px;
  }

  .store-badge-circle {
    width: 66px;
    height: 66px;
  }

  .store-badge-text {
    font-size: 0.6rem !important;
  }

  .footer-nav {
    gap: 12px;
  }

  .cert-highlights {
    grid-template-columns: 1fr;
  }

  .cert-icon {
    width: 100px;
    height: 100px;
  }

  .story-badges {
    justify-content: center;
  }
}
