@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Fraunces:wght@500;600;700&family=Playfair+Display:wght@700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --brand-primary: #b8e5b8;
  --brand-secondary: #ffd4b8;
  --brand-tertiary: #ffb8a8;
  --brand-accent: #ff9f8e;
  --brand-green: #9fd49f;
  --brand-green-light: #d4f0d4;
  --brand-peach: #ffd4b8;
  --brand-peach-dark: #ffb896;
  --brand-deep: #1a4a1a;
  --brand-muted: #5a6a5a;
  --brand-cream: #fff9f0;
  --brand-cream-dark: #fff3e0;
  --brand-card: #ffffff;
  --brand-border: rgba(26, 74, 26, 0.15);
  --brand-shadow: 0 20px 50px rgba(26, 74, 26, 0.15);
  --brand-shadow-lg: 0 30px 70px rgba(26, 74, 26, 0.2);
  --brand-radius-lg: 32px;
  --brand-radius-md: 20px;
  --brand-radius-sm: 12px;
  --container-width: min(1180px, 92vw);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--brand-cream);
  color: var(--brand-deep);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 240, 212, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 212, 184, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(184, 229, 184, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Декоративные цветы на фоне */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    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='%23ffd4b8' fill-opacity='0.15'%3E%3Cpath d='M30 20c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffb8a8' fill-opacity='0.1'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 150px, 80px 80px;
  background-position: 5% 15%, 85% 75%;
  pointer-events: none;
  z-index: 0;
  animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(10px, -15px); }
  66% { transform: translate(-10px, 10px); }
}

body > * {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--brand-tertiary);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--brand-radius-md);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.98), rgba(255, 243, 224, 0.95));
  border-bottom: 3px solid rgba(184, 229, 184, 0.4);
  box-shadow: 0 4px 20px rgba(184, 229, 184, 0.15);
}

.navbar {
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  height: 60px;
  width: 60px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-deep), #2d5a2d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

nav a {
  font-weight: 600;
  color: var(--brand-deep);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

nav a:hover, nav a:focus {
  background: linear-gradient(135deg, rgba(184, 229, 184, 0.3), rgba(255, 212, 184, 0.2));
  color: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 229, 184, 0.3);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.btn, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
  color: var(--brand-deep);
  box-shadow: 0 10px 25px rgba(184, 229, 184, 0.4), 0 5px 10px rgba(255, 212, 184, 0.3);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(184, 229, 184, 0.5), 0 8px 15px rgba(255, 212, 184, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-deep);
  border: 3px solid var(--brand-primary);
  box-shadow: 0 5px 15px rgba(184, 229, 184, 0.3);
  font-weight: 700;
}

.btn-outline:hover {
  transform: translateY(-3px);
  background: var(--brand-primary);
  border-color: var(--brand-green);
  box-shadow: 0 10px 25px rgba(184, 229, 184, 0.4);
}

main {
  padding-bottom: 6rem;
}

.section {
  width: var(--container-width);
  margin: 0 auto;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Волнообразные облака сверху */
.section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -10%;
  right: -10%;
  height: 200px;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 249, 240, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255, 249, 240, 0.8) 0%, transparent 65%),
    radial-gradient(ellipse 60% 35% at 80% 0%, rgba(255, 249, 240, 0.85) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: cloudFloat 8s ease-in-out infinite;
}

/* Волнообразные облака снизу */
.section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -10%;
  right: -10%;
  height: 200px;
  background: 
    radial-gradient(ellipse 75% 45% at 15% 100%, rgba(255, 249, 240, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 65% 40% at 55% 100%, rgba(255, 249, 240, 0.8) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 85% 100%, rgba(255, 249, 240, 0.85) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: cloudFloat 10s ease-in-out infinite reverse;
}

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

/* Дополнительные декоративные цветы */
.section {
  background-image: 
    radial-gradient(circle at 8% 25%, rgba(255, 212, 184, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 92% 65%, rgba(212, 240, 212, 0.2) 0%, transparent 40%);
  background-size: 300px 300px, 250px 250px;
  background-repeat: no-repeat;
  background-attachment: local;
}

.section > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.section.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  align-items: center;
  padding-top: 5.5rem;
  background: linear-gradient(135deg, rgba(184, 229, 184, 0.25), rgba(255, 212, 184, 0.2), rgba(255, 184, 168, 0.15));
  border-radius: var(--brand-radius-lg);
  padding: 6rem 4rem 5rem;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--brand-shadow);
  border: 2px solid rgba(184, 229, 184, 0.3);
  background-image: 
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd4b8' fill-opacity='0.12'%3E%3Cpath d='M40 25c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z'/%3E%3Cpath d='M35 45c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm10 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4f0d4' fill-opacity='0.15'%3E%3Ccircle cx='25' cy='25' r='2'/%3E%3Ccircle cx='15' cy='15' r='1.5'/%3E%3Ccircle cx='35' cy='15' r='1.5'/%3E%3Ccircle cx='15' cy='35' r='1.5'/%3E%3Ccircle cx='35' cy='35' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px, 100px 100px;
  background-position: 5% 20%, 90% 70%;
  background-repeat: no-repeat;
}

/* Переопределяем облака для hero секции - более выраженные */
.section.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -15%;
  right: -15%;
  height: 250px;
  background: 
    radial-gradient(ellipse 85% 55% at 25% 0%, rgba(255, 255, 255, 0.95) 0%, transparent 75%),
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(255, 255, 255, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 75% 0%, rgba(255, 255, 255, 0.92) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  animation: cloudFloat 10s ease-in-out infinite;
}

.section.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -15%;
  right: -15%;
  height: 250px;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 100%, rgba(255, 255, 255, 0.95) 0%, transparent 75%),
    radial-gradient(ellipse 70% 45% at 55% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 75% 55% at 80% 100%, rgba(255, 255, 255, 0.92) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50% 50% 0 0;
  animation: cloudFloat 12s ease-in-out infinite reverse;
}

.section.hero .hero-copy {
  position: relative;
  z-index: 2;
}

.section.hero .hero-copy h1 {
  position: relative;
  background: linear-gradient(135deg, var(--brand-deep), #2d5a2d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(26, 74, 26, 0.2));
}

.hero-copy .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--brand-deep);
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(184, 229, 184, 0.3);
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  margin: 1.5rem 0 1.5rem;
  color: var(--brand-deep);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(26, 74, 26, 0.1);
}

.hero-copy p {
  max-width: 520px;
  color: var(--brand-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
  z-index: 2;
}

.hero-media img {
  border-radius: var(--brand-radius-lg);
  box-shadow: 0 25px 60px rgba(26, 74, 26, 0.2), 0 10px 25px rgba(255, 212, 184, 0.3);
  width: 100%;
  height: auto;
  border: 3px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-media:hover img {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(26, 74, 26, 0.25), 0 15px 35px rgba(255, 212, 184, 0.4);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.tile {
  background: var(--brand-card);
  border-radius: var(--brand-radius-lg);
  padding: 0;
  box-shadow: 0 12px 30px rgba(26, 74, 26, 0.12), 0 4px 10px rgba(255, 212, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid rgba(184, 229, 184, 0.2);
}

.tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.tile:hover::before {
  opacity: 1;
}

.tile:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(26, 74, 26, 0.18), 0 8px 20px rgba(255, 212, 184, 0.3);
  border-color: var(--brand-primary);
}

.tile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--brand-radius-lg) var(--brand-radius-lg) 0 0;
  transition: transform 0.3s;
}

.tile:hover img {
  transform: scale(1.05);
}

.tile-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: linear-gradient(to bottom, var(--brand-card), rgba(255, 249, 240, 0.5));
}

.tile h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 1.75rem;
  color: var(--brand-deep);
  font-weight: 800;
  position: relative;
}

.tile h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 2px;
}

.muted {
  color: var(--brand-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin-top: 1rem;
}

.product-card {
  background: var(--brand-card);
  border-radius: var(--brand-radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1.2rem;
  box-shadow: var(--brand-shadow);
  position: relative;
  z-index: 1;
}

.product-card h2 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 1.65rem;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--brand-muted);
}

.price-tag {
  font-weight: 700;
  font-size: 1.15rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 240, 212, 0.6), rgba(184, 229, 184, 0.4));
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(184, 229, 184, 0.4);
  box-shadow: 0 2px 8px rgba(184, 229, 184, 0.2);
  transition: all 0.2s;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 229, 184, 0.3);
}

.article-card {
  background: var(--brand-card);
  border-radius: var(--brand-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--brand-shadow);
  position: relative;
  z-index: 1;
}

.article-card h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
}

.rich-text h2, .rich-text h3 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-deep);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--brand-deep);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section h2::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-accent));
  border-radius: 3px;
  opacity: 0.7;
}

.rich-text p {
  margin-bottom: 1.6rem;
  color: var(--brand-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--brand-radius-sm);
  border: 1px solid rgba(26, 32, 48, 0.12);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

label {
  font-weight: 600;
  color: var(--brand-deep);
  margin-bottom: 0.35rem;
  display: block;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--brand-radius-md);
  box-shadow: var(--brand-shadow);
  background: var(--brand-card);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  padding: 1rem 1.2rem;
  text-align: left;
}

table th {
  background: rgba(168, 213, 168, 0.15);
  font-weight: 700;
}

table tr + tr {
  border-top: 1px solid rgba(45, 58, 45, 0.1);
}

.notice {
  padding: 1.2rem 1.6rem;
  border-radius: var(--brand-radius-md);
  background: linear-gradient(135deg, rgba(212, 240, 212, 0.4), rgba(184, 229, 184, 0.3));
  color: var(--brand-deep);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  border: 2px solid rgba(184, 229, 184, 0.5);
  box-shadow: 0 4px 15px rgba(184, 229, 184, 0.25);
  position: relative;
}

.notice::before {
  content: '💡';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  background: var(--brand-card);
  padding: 0.3rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(26, 74, 26, 0.2);
}

.footer {
  background: linear-gradient(135deg, var(--brand-deep), #2d5a2d, #1a4a1a);
  color: var(--brand-cream);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent), var(--brand-primary));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 150px;
  background: 
    radial-gradient(ellipse 70% 40% at 20% 100%, rgba(255, 249, 240, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 65% 45% at 50% 100%, rgba(255, 249, 240, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 75% 50% at 80% 100%, rgba(255, 249, 240, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand {
  color: var(--brand-cream);
  margin-bottom: 1rem;
}

.footer-brand .brand-title {
  background: linear-gradient(135deg, var(--brand-cream), rgba(255, 249, 240, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--brand-cream);
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 1px;
}

.footer a {
  color: rgba(255, 249, 240, 0.85);
  transition: all 0.2s ease;
  display: inline-block;
}

.footer a:hover {
  color: var(--brand-cream);
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(255, 249, 240, 0.3);
}

.footer nav {
  display: grid;
  gap: 0.75rem;
}

.footer p {
  color: rgba(255, 249, 240, 0.9);
  line-height: 1.7;
}

.footer strong {
  color: var(--brand-cream);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 249, 240, 0.15);
  position: relative;
  z-index: 1;
}

.legal-meta {
  text-align: center;
  color: rgba(255, 249, 240, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.breadcrumbs {
  width: var(--container-width);
  margin: 1.5rem auto 0;
  font-size: 0.9rem;
  color: var(--brand-muted);
}

.breadcrumbs a {
  color: inherit;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--brand-green-light), var(--brand-primary));
  border-radius: 999px;
  font-weight: 700;
  color: var(--brand-deep);
  box-shadow: 0 4px 12px rgba(184, 229, 184, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cart-summary {
  display: grid;
  gap: 1.2rem;
  background: var(--brand-card);
  padding: 2rem;
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
}

.flex-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.policy article {
  background: var(--brand-card);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow);
  padding: 2.8rem;
}

.policy article h1 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
}

.policy article h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 2rem;
}

.legal-list {
  padding-left: 1.4rem;
  color: var(--brand-muted);
}

.account-card {
  background: var(--brand-card);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow);
  padding: 2.3rem;
  display: grid;
  gap: 1.4rem;
}

.account-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.order-history {
  display: grid;
  gap: 1.2rem;
}

.order-card {
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius-md);
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.9);
}

.cookie-overlay {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(45, 58, 45, 0.7);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(184, 229, 184, 0.15);
  padding: 0.5rem 1rem;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 249, 240, 0.8);
  font-size: 0.7rem;
  line-height: 1.25;
  flex: 1;
  min-width: 180px;
}

.cookie-text-mobile {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: nowrap;
  align-items: center;
}

.cookie-actions .btn,
.cookie-actions .btn-outline {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.cookie-link {
  color: rgba(255, 249, 240, 0.8);
  font-size: 0.75rem;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-link:hover {
  color: rgba(255, 249, 240, 1);
}

body.cookie-lock {
  overflow: auto;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 0.35rem 0.7rem;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .cookie-text-desktop {
    display: none;
  }

  .cookie-text-mobile {
    display: block;
  }

  .cookie-banner p {
    font-size: 0.65rem;
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .cookie-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .cookie-actions .btn,
  .cookie-actions .btn-outline {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .cookie-link {
    font-size: 0.65rem;
    display: none;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 0.25rem 0.5rem;
    gap: 0.35rem;
  }

  .cookie-banner p {
    font-size: 0.55rem;
    line-height: 1.2;
  }

  .cookie-text-mobile {
    font-size: 0.55rem !important;
  }

  .cookie-actions {
    gap: 0.25rem;
  }

  .cookie-actions .btn,
  .cookie-actions .btn-outline {
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
    min-width: auto;
  }

  .cookie-actions .btn-outline {
    display: none;
  }

  .cookie-link {
    display: none;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--brand-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 74, 26, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
  display: block;
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.98), rgba(255, 243, 224, 0.95));
  backdrop-filter: blur(20px);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu nav a {
  padding: 1rem 1.25rem;
  border-radius: var(--brand-radius-sm);
  background: rgba(184, 229, 184, 0.2);
  font-weight: 600;
  color: var(--brand-deep);
  transition: all 0.2s ease;
  font-size: 1rem;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus {
  background: linear-gradient(135deg, rgba(184, 229, 184, 0.4), rgba(255, 212, 184, 0.3));
  transform: translateX(5px);
}

.mobile-menu .nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(184, 229, 184, 0.3);
}

.mobile-menu .nav-actions .btn,
.mobile-menu .nav-actions .btn-outline {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* Tablet Styles */
@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar nav {
    display: none;
  }

  .navbar .nav-actions {
    margin-left: auto;
    gap: 0.75rem;
  }

  .navbar .nav-actions .btn,
  .navbar .nav-actions .btn-outline {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .navbar .nav-actions .btn-outline {
    display: none;
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section.hero {
    padding: 4rem 2rem 3.5rem;
    margin: 1.5rem auto;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .tiles-grid,
  .tile-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .flex-split {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-inner {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 0.85rem 0;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
  }

  .navbar .brand {
    order: 1;
    flex: 1;
    min-width: 0;
  }

  .navbar .mobile-menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .navbar .nav-actions {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
    margin-left: 0;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .brand-logo {
    height: 50px;
    width: 50px;
  }

  .navbar .nav-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    flex: 0 1 auto;
  }

  .navbar .nav-actions .btn .badge-pill {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
  }

  header {
    position: sticky;
  }

  .section {
    padding: 3rem 0;
    width: calc(100% - 2rem);
    margin: 0 1rem;
  }

  .section.hero {
    padding: 3rem 1.5rem 2.5rem;
    margin: 1rem auto;
    border-radius: var(--brand-radius-md);
  }

  .hero-copy h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-copy .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .tiles-grid,
  .tile-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .tile, .product-card, .article-card, .account-card, .cart-summary {
    padding: 1.5rem;
  }

  .tile img {
    height: 250px;
  }

  .tile h3 {
    font-size: 1.5rem;
  }

  .btn, .btn-outline {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.8rem 1.6rem;
  }

  /* Tables */
  table {
    font-size: 0.9rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table thead {
    display: none;
  }

  table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 2px solid rgba(184, 229, 184, 0.3);
    border-radius: var(--brand-radius-sm);
    padding: 1rem;
    background: var(--brand-card);
  }

  table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border: none;
    text-align: right;
  }

  table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--brand-deep);
    text-align: left;
    margin-right: 1rem;
  }

  /* Forms */
  form {
    width: 100%;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  select,
  textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.85rem;
  }

  .flex-split {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 0;
    gap: 0.5rem;
  }

  .navbar .nav-actions {
    margin-top: 0.4rem;
    gap: 0.4rem;
  }

  .brand-title {
    font-size: 0.95rem;
    max-width: 140px;
  }

  .brand-logo {
    height: 45px;
    width: 45px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2.5px;
  }

  .navbar .nav-actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }

  .navbar .nav-actions .btn .badge-pill {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
  }

  .section {
    padding: 2.5rem 0;
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem;
  }

  .section.hero {
    padding: 2.5rem 1.25rem 2rem;
    margin: 0.75rem auto;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .tile, .product-card, .article-card, .account-card, .cart-summary {
    padding: 1.25rem;
  }

  .btn, .btn-outline {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  /* Additional mobile optimizations */
  .tile img {
    height: 200px;
  }

  .tile h3 {
    font-size: 1.35rem;
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .article-card {
    padding: 1.5rem;
  }

  .notice {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-inner {
    gap: 2rem;
  }

  table tbody td {
    font-size: 0.85rem;
    padding: 0.4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
