* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --burgundy: #4A0E0E;
  --golden: #D4A017;
  --slate: #708090;
  --basil: #468F4A;
  --light-bg: #F5F3F0;
  --white: #FFFFFF;
  --dark-text: #2C2C2C;
}

html, body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  color: var(--burgundy);
}

h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 32px;
  color: var(--burgundy);
}

h2 .accent {
  color: var(--golden);
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--burgundy);
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--dark-text);
}

body {
  padding-top: 80px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(74, 14, 14, 0.95);
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--golden);
  text-decoration: none;
  display: flex;
  align-items: center;
}

header nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

header nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--golden);
}

@media (max-width: 768px) {
  header {
    padding: 12px 20px;
    flex-direction: column;
    gap: 12px;
  }

  header nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

section {
  padding: 160px 40px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, var(--burgundy) 0%, #6B1515 100%);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 200px 40px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 68px;
  margin-bottom: 24px;
}

.hero p {
  color: var(--light-bg);
  font-size: 20px;
  line-height: 1.8;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.product-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--golden);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card-content {
  padding: 32px;
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-card p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

.nutrient-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: var(--white);
}

.nutrient-table th {
  background-color: var(--burgundy);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.nutrient-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #E0E0E0;
  font-size: 16px;
}

.nutrient-table tr:hover {
  background-color: var(--light-bg);
}

.image-block {
  margin: 40px 0;
  text-align: center;
}

.image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: inline-block;
  max-height: 400px;
}

.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 40px 0;
}

.side-by-side img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .side-by-side {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  section {
    padding: 80px 20px;
  }

  .hero {
    padding: 120px 20px;
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--burgundy);
  color: var(--white);
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--burgundy);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(74, 14, 14, 0.2);
}

.cta-button:hover {
  background-color: var(--white);
  color: var(--burgundy);
  box-shadow: 0 6px 16px rgba(212, 160, 23, 0.3);
}

footer {
  background-color: var(--burgundy);
  color: var(--white);
  padding: 48px 40px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.footer-section h3 {
  color: var(--golden);
  margin-bottom: 16px;
}

.footer-section p {
  color: #E0E0E0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--golden);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-disclaimer {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: #E0E0E0;
}

.disclaimer-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--golden);
  padding: 24px;
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer-box p {
  color: var(--dark-text);
  margin: 0;
}

.faq-item {
  margin-bottom: 32px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--golden);
}

.faq-item h3 {
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--slate);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--burgundy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--golden);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.success-message {
  background-color: #D4EDDA;
  color: #155724;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--burgundy);
  color: var(--white);
  padding: 24px 40px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  margin-right: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--golden);
  color: var(--burgundy);
}

.cookie-btn-accept:hover {
  background-color: #FFC107;
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-policy {
  background-color: transparent;
  color: var(--golden);
  border: none;
  text-decoration: underline;
  padding: 10px 0;
}

.cookie-btn-policy:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }

  .cookie-text {
    margin-right: 0;
  }

  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
}

.animation-fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animation-scale {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
