/* ================================================
   СПЕЦИИ КАВКАЗА — CSS СТИЛИ
   Тёплый, натуральный, вкусный дизайн
   
   Содержание:
   1. CSS Variables
   2. Reset & Base
   3. Accessibility (Skip Link, Focus)
   4. Typography
   5. Layout Components
   6. Buttons
   7. Header & Navigation
   8. Mobile Menu
   9. Hero Section
   10. Trust Section
   11. Catalog Section
   12. Production Section
   13. Ingredients Section
   14. Audience Section
   15. Reviews Section
   16. Delivery Section
   17. About Section
   18. CTA Section
   19. Footer
   20. Animations
   21. Scroll Animations
   22. Responsive Design
   23. Reduced Motion
   24. Page-specific Styles
   25. Utility Classes
   ================================================ */

/* ================================================
   1. CSS VARIABLES
   ================================================ */
:root {
    /* Основные цвета */
    --terracotta: #C45D3A;
    --terracotta-dark: #A84832;
    --bordeaux: #722F37;
    --bordeaux-deep: #5A252C;
    --dark-green: #2D4A3E;
    --olive: #6B7B3C;
    --olive-light: #8A9E5C;
    --sand: #E8DCC8;
    --sand-light: #F5F0E6;
    --cream: #FDF8F3;
    --warm-white: #FFFBF7;
    --white: #FFFFFF;
    
    /* Акценты */
    --pepper-red: #C41E3A;
    --pomegranate: #9B2335;
    --spice-gold: #C9A227;
    --honey: #EB9605;
    
    /* Нейтральные */
    --text-dark: #2C2416;
    --text-medium: #5C503D;
    --text-light: #8C7D66;
    --border-light: #E5DDD0;
    
    /* Шрифты */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Размеры */
    --container-max: 1280px;
    --section-padding: 100px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --header-height: 80px;
    
    /* Тени */
    --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 36, 22, 0.1);
    --shadow-lg: 0 8px 40px rgba(44, 36, 22, 0.15);
    --shadow-xl: 0 20px 60px rgba(44, 36, 22, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Focus */
    --focus-ring: 0 0 0 3px rgba(196, 93, 58, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

/* ================================================
   3. ACCESSIBILITY
   ================================================ */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    padding: 12px 24px;
    background: var(--terracotta);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 16px;
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Remove default focus for mouse users */
:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================
   4. TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* ================================================
   5. LAYOUT COMPONENTS
   ================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-light {
    color: white;
}

.section-header-light .section-title,
.section-header-light .section-desc {
    color: white;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
    color: var(--terracotta);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header-light .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   6. BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    white-space: nowrap;
    text-align: center;
}

.btn svg {
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn:focus-visible {
    box-shadow: var(--focus-ring);
}

.btn-primary {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: white;
    border-color: var(--terracotta);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--terracotta-dark) 0%, var(--bordeaux) 100%);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-light);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ================================================
   7. HEADER & NAVIGATION
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-medium);
    height: var(--header-height);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.logo:focus-visible {
    border-radius: var(--border-radius);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--text-dark);
}

.logo-accent {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li {
    display: flex;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition-fast);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:focus-visible {
    border-radius: 4px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ================================================
   8. MOBILE MENU
   ================================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: var(--border-radius);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
    transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--warm-white);
    padding: calc(var(--header-height) + 24px) 24px 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--transition-medium), visibility var(--transition-medium);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu[aria-hidden="false"] {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    list-style: none;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-menu li:last-child a {
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
    color: var(--terracotta);
    padding-left: 8px;
}

.mobile-menu a:focus-visible {
    border-radius: 4px;
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-overlay[aria-hidden="false"],
body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Ensure menu button stays on top */
body.menu-open .mobile-menu-btn {
    z-index: 1002;
}

/* ================================================
   9. HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(253, 248, 243, 0.97) 0%,
        rgba(232, 220, 200, 0.9) 50%,
        rgba(196, 93, 58, 0.15) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(196, 93, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 123, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(114, 47, 55, 0.05) 0%, transparent 30%);
    opacity: 0.8;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-icon {
    color: var(--spice-gold);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.title-accent {
    display: block;
    color: var(--terracotta);
    font-size: 0.6em;
    font-weight: 500;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle strong {
    color: var(--dark-green);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
    animation: fadeIn 1s ease 1s both;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 2px;
    animation: scrollBounce 2s ease infinite;
}

/* ================================================
   10. TRUST SECTION
   ================================================ */
.trust {
    padding: var(--section-padding) 0;
    background: var(--cream);
    contain: layout style;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.trust-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sand);
}

.trust-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
    border-radius: 50%;
    color: var(--terracotta);
}

.trust-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ================================================
   11. CATALOG SECTION
   ================================================ */
.catalog {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
    contain: layout style;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}

.catalog-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: white;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.catalog-card:focus-visible {
    box-shadow: var(--focus-ring);
}

.catalog-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.catalog-image {
    position: relative;
    flex: 1;
    min-height: 180px;
    overflow: hidden;
}

.catalog-card-large .catalog-image {
    min-height: 300px;
}

.catalog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-slow);
}

.catalog-card:hover .catalog-image-placeholder {
    transform: scale(1.05);
}

.placeholder-emoji {
    font-size: 4rem;
}

.catalog-card-large .placeholder-emoji {
    font-size: 6rem;
}

.sauces-bg {
    background: linear-gradient(135deg, #C45D3A22 0%, #72273722 100%);
}

.spices-bg {
    background: linear-gradient(135deg, #C41E3A22 0%, #C9A22722 100%);
}

.honey-bg {
    background: linear-gradient(135deg, #EB960522 0%, #C9A22722 100%);
}

.sweets-bg {
    background: linear-gradient(135deg, #9B233522 0%, #C45D3A22 100%);
}

.dried-bg {
    background: linear-gradient(135deg, #EB960522 0%, #6B7B3C22 100%);
}

.tea-bg {
    background: linear-gradient(135deg, #2D4A3E22 0%, #6B7B3C22 100%);
}

.gifts-bg {
    background: linear-gradient(135deg, #C9A22722 0%, #C45D3A22 100%);
}

.fruits-bg {
    background: linear-gradient(135deg, #6B7B3C22 0%, #EB960522 100%);
}

.catalog-content {
    padding: 20px;
}

.catalog-card-large .catalog-content {
    padding: 28px;
}

.catalog-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--pepper-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 12px;
}

.catalog-content h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.catalog-card-large .catalog-content h3 {
    font-size: 1.5rem;
}

.catalog-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--terracotta);
    font-weight: 600;
    font-size: 0.9rem;
}

.catalog-link svg {
    transition: transform var(--transition-fast);
}

.catalog-card:hover .catalog-link svg {
    transform: translateX(4px);
}

/* ================================================
   12. PRODUCTION SECTION
   ================================================ */
.production {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--bordeaux-deep) 100%);
    position: relative;
    overflow: hidden;
    contain: layout style;
}

.production::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.production-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.production-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.production-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
}

.step-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 28px 20px;
    transition: var(--transition-medium);
}

.production-step:hover .step-content {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--sand);
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ================================================
   13. INGREDIENTS SECTION
   ================================================ */
.ingredients {
    padding: var(--section-padding) 0;
    background: var(--cream);
    contain: layout style;
}

.ingredients-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ingredients-content .section-tag {
    margin-bottom: 16px;
}

.ingredients-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.ingredients-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.ingredients-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ingredients-yes h3,
.ingredients-no h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.ingredients-yes h3 {
    color: var(--dark-green);
}

.ingredients-no h3 {
    color: var(--bordeaux);
}

.ingredients-yes ul li,
.ingredients-no ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cross {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bordeaux);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ingredients-visual {
    position: relative;
    height: 450px;
}

.ingredient-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    cursor: default;
}

.ingredient-circle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.ingredient-circle span:first-child {
    font-size: 2rem;
}

.ingredient-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-top: 4px;
}

.ingredient-1 { top: 0%; left: 18%; animation: float 6s ease-in-out infinite; }
.ingredient-2 { top: 0%; right: 18%; animation: float 6s ease-in-out infinite 1s; }
.ingredient-3 { top: 42%; left: 0%; animation: float 6s ease-in-out infinite 2s; }
.ingredient-4 { top: 42%; right: 0%; animation: float 6s ease-in-out infinite 3s; }
.ingredient-5 { bottom: 0%; left: 50%; transform: translateX(-50%); animation: float 6s ease-in-out infinite 4s; }

.ingredient-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--bordeaux) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.ingredient-center span:first-child {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.ingredient-center span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ================================================
   14. AUDIENCE SECTION
   ================================================ */
.audience {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
    contain: layout style;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.audience-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: var(--transition-medium);
}

.audience-card:hover {
    border-color: var(--terracotta);
    box-shadow: var(--shadow-lg);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.audience-subtitle {
    color: var(--text-light);
    margin-bottom: 28px;
}

.audience-list {
    text-align: left;
    margin-bottom: 32px;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
}

.audience-list li:last-child {
    border-bottom: none;
}

.list-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.audience-b2c .audience-icon { color: var(--terracotta); }
.audience-b2b .audience-icon { color: var(--dark-green); }

/* ================================================
   15. REVIEWS SECTION
   ================================================ */
.reviews {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
    position: relative;
    contain: layout style;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.reviews .container {
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    transition: var(--transition-medium);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.review-card-featured {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
}

.review-card-featured:hover {
    background: white;
}

.review-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: -20px;
}

.review-card-featured .review-quote {
    color: var(--terracotta);
    opacity: 0.3;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card-featured .review-text {
    color: var(--text-dark);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.review-card-featured .author-avatar {
    background: var(--terracotta);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.review-card-featured .author-name {
    color: var(--text-dark);
}

.author-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.review-card-featured .author-location {
    color: var(--text-light);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   16. DELIVERY SECTION
   ================================================ */
.delivery-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
    contain: layout style;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.delivery-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.delivery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sand);
}

.delivery-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
    border-radius: 50%;
    color: var(--terracotta);
}

.delivery-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.delivery-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.delivery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ================================================
   17. ABOUT SECTION
   ================================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
    contain: layout style;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.value {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--sand-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.value-icon {
    font-size: 1.2rem;
}

.about-btn {
    margin-top: 24px;
}

.about-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 450px;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-image-1 {
    grid-column: span 2;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.image-placeholder span:first-child {
    font-size: 3rem;
}

.image-placeholder span:last-child {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ================================================
   18. CTA SECTION
   ================================================ */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--bordeaux) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-buttons {
    margin-bottom: 40px;
}

.cta .btn-primary {
    background: white;
    color: var(--terracotta);
    border-color: white;
}

.cta .btn-primary:hover {
    background: var(--sand-light);
    border-color: var(--sand-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.decoration-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

.decoration-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    background: rgba(255, 255, 255, 0.03);
}

/* ================================================
   19. FOOTER
   ================================================ */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition-fast);
}

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

.social-link:focus-visible {
    box-shadow: var(--focus-ring);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--terracotta);
}

.contacts-list li {
    display: flex;
    align-items: flex-start;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: white;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    font-size: 1.5rem;
}

/* ================================================
   20. ANIMATIONS
   ================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

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

/* ================================================
   21. SCROLL ANIMATIONS
   ================================================ */
.animate-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.animate-in,
.animate-ready.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: show elements if JS didn't add animate-in after 2s */
@supports (animation-timeline: scroll()) {
    .animate-ready {
        opacity: 1;
        transform: none;
    }
}

/* ================================================
   22. RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1200px) {
    .production-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .production-timeline::before {
        display: none;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .catalog-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .ingredients-wrapper,
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .ingredients-visual {
        order: -1;
        height: 350px;
    }
    
    .ingredient-circle {
        width: 85px;
        height: 85px;
    }
    
    .ingredient-circle span:first-child {
        font-size: 1.6rem;
    }
    
    .ingredient-name {
        font-size: 0.65rem;
    }
    
    .ingredient-center {
        width: 110px;
        height: 110px;
    }
    
    .ingredient-center span:first-child {
        font-size: 1.5rem;
    }
    
    .ingredient-center span:last-child {
        font-size: 0.7rem;
    }
    
    .about-image-grid {
        height: 350px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --header-height: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions .btn-outline {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: calc(var(--header-height) + 24px) 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .breadcrumbs {
        padding: calc(var(--header-height) + 12px) 0 12px;
        font-size: 0.85rem;
    }
    
    .page-header {
        padding: 30px 0 40px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-card-large {
        grid-column: span 1;
    }
    
    .production-timeline {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ingredients-lists {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-card {
        padding: 32px 24px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-accent {
        font-size: 0.55em;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ingredients on small screens - compact layout */
    .ingredients-visual {
        height: 320px;
    }
    
    .ingredient-circle {
        width: 70px;
        height: 70px;
    }
    
    .ingredient-circle span:first-child {
        font-size: 1.4rem;
    }
    
    .ingredient-name {
        font-size: 0.6rem;
    }
    
    .ingredient-center {
        width: 95px;
        height: 95px;
    }
    
    .ingredient-center span:first-child {
        font-size: 1.3rem;
    }
    
    .ingredient-center span:last-child {
        font-size: 0.65rem;
    }
    
    /* Repositon ingredients for small screens */
    .ingredient-1 { top: 0%; left: 10%; }
    .ingredient-2 { top: 0%; right: 10%; left: auto; }
    .ingredient-3 { top: 35%; left: -5%; }
    .ingredient-4 { top: 35%; right: -5%; left: auto; }
    .ingredient-5 { bottom: 0%; left: 50%; }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .about-values {
        flex-direction: column;
        gap: 12px;
    }
    
    .value {
        justify-content: center;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .trust-card:hover,
    .catalog-card:hover,
    .production-step:hover .step-content,
    .review-card:hover,
    .delivery-card:hover,
    .audience-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    .mobile-menu a {
        padding: 18px 0;
        min-height: 48px;
    }
    
    /* Full width mobile menu on small screens */
    .mobile-menu {
        max-width: 100%;
        width: 100%;
    }
}

/* ================================================
   23. REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-cta,
    .hero-features,
    .hero-scroll {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .hero-pattern {
        transform: none !important;
    }
    
    .scroll-dot {
        animation: none;
    }
    
    .ingredient-1,
    .ingredient-2,
    .ingredient-3,
    .ingredient-4,
    .ingredient-5 {
        animation: none;
    }
    
    .animate-ready {
        opacity: 1;
        transform: none;
    }
}

/* ================================================
   24. PAGE-SPECIFIC STYLES
   ================================================ */

/* Internal pages header spacing */
.page-header {
    padding: 40px 0 60px;
    background: var(--cream);
    text-align: center;
}

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

/* Breadcrumbs */
.breadcrumbs {
    padding: calc(var(--header-height) + 16px) 0 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--cream);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a {
    color: var(--text-medium);
}

.breadcrumbs a:hover {
    color: var(--terracotta);
}

.breadcrumbs span {
    margin: 0 8px;
}

/* Back button for catalog pages */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition-fast);
    margin-right: 16px;
    flex-shrink: 0;
}

.back-btn:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

.back-btn svg {
    width: 16px;
    height: 16px;
}

/* Separator after back button */
.back-btn + a::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--border-light);
    margin-right: 16px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .back-btn span {
        display: none;
    }
    
    .back-btn {
        padding: 10px;
        margin-right: 12px;
    }
    
    .back-btn + a::before {
        margin-right: 12px;
    }
}

/* Content sections for internal pages */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section--alt {
    background: var(--cream);
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    background: white;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--terracotta);
    outline: none;
    box-shadow: var(--focus-ring);
}

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

/* Form Error State */
.form-input.error,
.form-textarea.error {
    border-color: var(--pepper-red);
}

.error-message {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--pepper-red);
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-message p {
    margin: 0;
}

.form-message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message--info {
    background: var(--sand-light);
    color: var(--text-dark);
    border: 1px solid var(--sand);
}

/* Form Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--terracotta);
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.form-checkbox-label a {
    color: var(--terracotta);
    text-decoration: underline;
}

.form-checkbox-label a:hover {
    text-decoration: none;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding-bottom: 24px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Category grid for catalog pages */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ================================================
   25. UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Extended Utility Classes */
.pt-4 { padding-top: 40px; }
.pb-4 { padding-bottom: 40px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-sm { max-width: 400px; }
.max-w-md { max-width: 600px; }
.max-w-lg { max-width: 800px; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.text-sm { font-size: 0.9rem; }
.text-lg { font-size: 1.1rem; }
.text-xl { font-size: 1.25rem; }

.text-terracotta { color: var(--terracotta); }
.text-light { color: var(--text-light); }
.text-medium { color: var(--text-medium); }

.line-height-relaxed { line-height: 1.8; }

.list-disc { list-style: disc; }
.list-inside { list-style-position: inside; }
.pl-5 { padding-left: 20px; }
.pl-6 { padding-left: 24px; }

.gap-3 { gap: 24px; }
.gap-4 { gap: 16px; }

.d-grid { display: grid; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

.border-none { border: none; }
.border-top-none { border-top: none; }

/* Page-specific utility classes to replace inline styles */
.page-header--compact {
    padding-bottom: 40px;
}

.content-section--compact {
    padding-top: 40px;
}

/* Info banner */
.info-banner {
    background: var(--sand-light);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
}

.info-banner--large {
    padding: 48px;
}

.info-banner__title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* Product price */
.product-price {
    color: var(--terracotta);
    font-weight: 700;
    margin-top: 8px;
}

.product-price--sm {
    font-size: 0.9rem;
    margin-top: 12px;
}

/* Document card / Info card */
.info-card {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius-lg);
}

.info-card--centered {
    text-align: center;
}

/* Icon large (for trust/delivery cards with custom icons) */
.icon-lg {
    font-size: 2.5rem;
    background: none;
}

.icon-xl {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* List with margin */
.list-spaced li {
    margin-bottom: 8px;
}

/* Content wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Legal document styles */
.legal-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 8px;
}

/* CTA buttons group */
.cta-buttons-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Table simple */
.table-simple {
    width: 100%;
    border-collapse: collapse;
}

.table-simple td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.table-simple tr:last-child td {
    border-bottom: none;
}

.table-simple td:first-child {
    color: var(--text-light);
}

/* Package height variants */
.about-image-grid--short {
    height: 300px;
}

/* Gift set icon style */
.trust-icon--emoji {
    font-size: 2.5rem;
    background: none;
}

/* Footer minimal */
.footer-bottom--minimal {
    border-top: none;
    padding-top: 0;
}

/* Image placeholder variant */
.image-placeholder--gold {
    background: linear-gradient(135deg, var(--spice-gold) 0%, var(--terracotta) 100%);
}

/* Contact highlight */
.contact-highlight {
    color: var(--terracotta);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Season info */
.season-info {
    margin-top: 32px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ================================================
   26. E-COMMERCE STYLES
   Корзина, модальные окна, карточки товаров
   ================================================ */

/* --- Product Cards --- */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-light);
}

.product-card__emoji {
    font-size: 4rem;
}

.product-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bordeaux);
    margin-bottom: 8px;
}

.product-card__desc {
    color: var(--text-medium);
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 16px;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-card__price {
    font-weight: 700;
    color: var(--terracotta);
    font-size: 1.1rem;
}

.product-card__btn {
    flex-shrink: 0;
}

/* Product Tags */
.product-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-tag {
    background: var(--terracotta);
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.product-tag--хит {
    background: var(--success-color);
}

.product-tag--премиум {
    background: var(--spice-gold);
    color: var(--bordeaux);
}

.product-tag--острое {
    background: #E53935;
}

.product-tag--новогоднее {
    background: var(--dark-green);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* --- Cart Styles --- */
.cart-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 16px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--sand);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-item__image {
    width: 60px;
    height: 60px;
    background: var(--sand-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item__emoji {
    font-size: 2rem;
}

.cart-item__info {
    flex: 1;
    min-width: 0;
}

.cart-item__name {
    font-weight: 600;
    color: var(--bordeaux);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item__weight {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cart-item__price {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item__qty {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.cart-item__subtotal {
    font-weight: 700;
    color: var(--terracotta);
    min-width: 80px;
    text-align: right;
}

.cart-item__remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cart-item__remove:hover {
    background: #FEE2E2;
    color: #DC2626;
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--sand);
    position: sticky;
    top: 100px;
}

.cart-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FEF3C7;
    color: #92400E;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.cart-success {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #D1FAE5;
    color: #065F46;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.cart-info {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.cart-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 2px solid var(--sand);
    margin-bottom: 16px;
}

.cart-total__label {
    font-size: 1.1rem;
    font-weight: 500;
}

.cart-total__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
}

.cart-checkout-btn {
    width: 100%;
    margin-bottom: 12px;
}

.cart-clear-btn {
    width: 100%;
}

/* Cart Empty */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty__icon {
    font-size: 5rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.cart-empty__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--bordeaux);
    margin-bottom: 12px;
}

.cart-empty__text {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Quantity Button */
.quantity-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--sand);
    background: var(--white);
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.quantity-input {
    width: 48px;
    text-align: center;
    border: 2px solid var(--sand);
    border-radius: 8px;
    padding: 6px;
    font-weight: 600;
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 30, 25, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay--visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5), 
        0 0 0 1px rgba(0, 0, 0, 0.1),
        0 0 80px rgba(196, 93, 58, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-overlay--visible .modal {
    transform: scale(1) translateY(0);
}

.modal--lg {
    max-width: 700px;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal__close:hover {
    background: var(--sand-light);
    color: var(--bordeaux);
}

.modal__header {
    padding: 24px 24px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
}

.modal__product-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.modal__product-info {
    flex: 1;
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bordeaux);
    margin-bottom: 8px;
}

.modal__desc {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.modal__body {
    padding: 24px;
    background: var(--white);
}

.modal__section-title {
    font-weight: 600;
    color: var(--bordeaux);
    margin-bottom: 16px;
}

.modal__footer {
    padding: 0 24px 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
}

.modal__total {
    display: flex;
    flex-direction: column;
}

.modal__total-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.modal__total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
}

.modal__add-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

/* Variant Options */
.variant-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.variant-option {
    position: relative;
    cursor: pointer;
}

.variant-option__input {
    position: absolute;
    opacity: 0;
}

.variant-option__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 2px solid var(--sand);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.variant-option:hover .variant-option__content {
    border-color: var(--terracotta);
    background: var(--cream);
    box-shadow: 0 4px 12px rgba(196, 93, 58, 0.15);
}

.variant-option--selected .variant-option__content,
.variant-option__input:checked + .variant-option__content {
    border-color: var(--terracotta);
    background: #FEF7F4;
    box-shadow: 0 4px 16px rgba(196, 93, 58, 0.2), inset 0 0 0 2px rgba(196, 93, 58, 0.15);
}

.variant-option__weight {
    font-weight: 600;
    color: var(--bordeaux);
}

.variant-option__price {
    font-weight: 700;
    color: var(--terracotta);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quantity-selector__label {
    font-weight: 500;
    color: var(--text-medium);
}

.quantity-selector__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Delivery Options --- */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.delivery-option {
    cursor: pointer;
}

.delivery-option__input {
    position: absolute;
    opacity: 0;
}

.delivery-option__content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--sand);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.delivery-option:hover .delivery-option__content {
    border-color: var(--terracotta);
    background: var(--cream);
    box-shadow: 0 4px 12px rgba(196, 93, 58, 0.15);
}

.delivery-option--selected .delivery-option__content,
.delivery-option__input:checked + .delivery-option__content {
    border-color: var(--terracotta);
    background: #FEF7F4;
    box-shadow: 0 4px 16px rgba(196, 93, 58, 0.2), inset 0 0 0 2px rgba(196, 93, 58, 0.15);
}

.delivery-option__icon {
    font-size: 2rem;
}

.delivery-option__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-option__name {
    font-weight: 600;
    color: var(--bordeaux);
}

.delivery-option__desc {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.delivery-option__price {
    font-weight: 600;
    color: var(--terracotta);
    white-space: nowrap;
}

/* --- Checkout Styles --- */
.checkout-form {
    padding: 0 24px 24px;
    background: var(--white);
}

.checkout-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.checkout-step__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--bordeaux);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sand);
}

.checkout-step__number {
    width: 28px;
    height: 28px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.checkout-summary {
    background: linear-gradient(to bottom, var(--cream), var(--sand-light));
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--sand);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.checkout-items {
    margin-bottom: 16px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--sand);
}

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

.checkout-item__emoji {
    font-size: 1.25rem;
}

.checkout-item__name {
    flex: 1;
    font-size: 0.9rem;
}

.checkout-item__qty {
    color: var(--text-light);
    font-size: 0.85rem;
}

.checkout-item__price {
    font-weight: 600;
    font-size: 0.9rem;
}

.checkout-totals {
    border-top: 2px solid var(--sand);
    padding-top: 12px;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.checkout-total-row--final {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bordeaux);
    padding-top: 12px;
    border-top: 1px solid var(--sand);
    margin-top: 8px;
}

/* --- Auth Styles --- */
.auth-container {
    max-width: 480px;
    margin: 0 auto;
}

.auth-tabs {
    display: flex;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--sand);
}

.auth-tab {
    flex: 1;
    padding: 16px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.auth-tab:hover {
    color: var(--bordeaux);
}

.auth-tab--active {
    color: var(--terracotta);
}

.auth-tab--active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--terracotta);
}

.auth-panel {
    display: none;
}

.auth-panel--active {
    display: block;
}

.auth-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--sand);
}

.auth-form__footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-light);
}

.link-btn {
    background: none;
    border: none;
    color: var(--terracotta);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.link-btn:hover {
    color: var(--terracotta-dark);
}

/* --- Profile Styles --- */
.profile {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.profile__header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sand);
}

.profile__avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--bordeaux) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.profile__info {
    flex: 1;
}

.profile__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bordeaux);
    margin-bottom: 4px;
}

.profile__email {
    color: var(--text-medium);
    margin-bottom: 4px;
}

.profile__phone {
    color: var(--text-light);
    font-size: 0.9rem;
}

.profile__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.profile__section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--bordeaux);
    margin-bottom: 16px;
}

.profile__no-orders {
    color: var(--text-light);
    text-align: center;
    padding: 32px;
    background: var(--sand-light);
    border-radius: var(--border-radius);
}

/* Order Card */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-card {
    background: var(--sand-light);
    padding: 16px;
    border-radius: var(--border-radius);
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.order-card__date {
    font-weight: 600;
    color: var(--bordeaux);
}

.order-card__status {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.order-card__status--pending {
    background: #FEF3C7;
    color: #92400E;
}

.order-card__status--processing {
    background: #DBEAFE;
    color: #1E40AF;
}

.order-card__status--shipped {
    background: #D1FAE5;
    color: #065F46;
}

.order-card__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.order-card__item {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.order-card__more {
    font-size: 0.8rem;
    color: var(--text-light);
}

.order-card__total {
    font-weight: 700;
    color: var(--terracotta);
    text-align: right;
}

/* --- Form Styles --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--bordeaux);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--sand);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196, 93, 58, 0.15);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-body);
}

.form-error {
    display: block;
    color: #DC2626;
    font-size: 0.85rem;
    margin-top: 6px;
}

.form-error--global {
    background: #FEE2E2;
    color: #DC2626;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    display: none;
}

.form-error--global:not(:empty) {
    display: block;
}

.form-hint {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--terracotta);
}

.checkbox-label a {
    color: var(--terracotta);
}

/* --- Cart Badge & Icon --- */
.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--terracotta);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-badge--visible {
    opacity: 1;
    transform: scale(1);
}

.cart-icon--bounce {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.2); }
    50% { transform: scale(0.9); }
    70% { transform: scale(1.1); }
}

/* Nav Icon Link */
.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    color: var(--text-medium);
    border-radius: 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
}

.nav-icon-link:hover,
.nav-icon-link.active {
    background: var(--sand-light);
    color: var(--terracotta);
}

/* Auth link with user name */
.auth-link__name {
    display: inline;
}

/* Mobile: Hide user name text to prevent overlap */
@media (max-width: 480px) {
    .nav-icon-link {
        padding: 0;
        width: 40px;
        min-width: 40px;
    }
    
    .auth-link__name {
        display: none;
    }
}

/* Tablet: Compact header */
@media (min-width: 481px) and (max-width: 768px) {
    .nav-icon-link {
        padding: 0 6px;
        font-size: 0.8rem;
    }
    
    .auth-link__name {
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* --- Toast Notification --- */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bordeaux);
    color: white;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast--success {
    background: #059669;
}

.toast__icon {
    font-size: 1.25rem;
}

.toast__message {
    font-weight: 500;
}

/* --- Success Modal --- */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 24px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.order-id {
    background: var(--sand-light);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--bordeaux);
    margin: 16px 0 24px;
}

/* --- Loading States --- */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--sand);
    border-top-color: var(--terracotta);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.spinner--sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn--loading .btn__text {
    opacity: 0;
}

.btn--loading .btn__loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn__loader {
    display: none;
}

.btn--loading .btn__loader {
    display: block;
}

/* --- Button Variants --- */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-danger {
    border-color: #DC2626;
    color: #DC2626;
}

.btn-danger:hover {
    background: #DC2626;
    color: white;
}

/* --- Address Group --- */
.address-group {
    transition: all 0.3s ease;
}

/* --- Captcha Container --- */
.captcha-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .product-card__emoji {
        font-size: 3rem;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-item__subtotal {
        width: 100%;
        text-align: left;
        padding-top: 8px;
        border-top: 1px solid var(--sand);
        margin-top: 8px;
    }
    
    .modal {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .modal__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .modal__footer {
        flex-direction: column;
    }
    
    .modal__total {
        text-align: center;
        margin-bottom: 16px;
    }
    
    .auth-form {
        padding: 24px 20px;
    }
    
    .profile {
        padding: 24px 20px;
    }
    
    .profile__header {
        flex-direction: column;
        text-align: center;
    }
}
