/* Красивый одностраничный сайт для мясного бутика «Мякоть» */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B0000;
    --secondary-color: #A52A2A;
    --accent-color: #DC143C;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --meat-texture: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="meat-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%238B0000" opacity="0.15"/><circle cx="5" cy="25" r="1.5" fill="%23A52A2A" opacity="0.12"/><circle cx="25" cy="5" r="1" fill="%23DC143C" opacity="0.1"/><circle cx="20" cy="20" r="0.8" fill="%238B0000" opacity="0.08"/><circle cx="10" cy="10" r="0.5" fill="%23A52A2A" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23meat-pattern)"/></svg>');
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 25%, #ffffff 50%, #f8f9fa 75%, #fefefe 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(165, 42, 42, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 20, 60, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 60% 70%, rgba(139, 0, 0, 0.06) 0%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="meat-texture" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="3" fill="%238B0000" opacity="0.08"/><circle cx="20" cy="60" r="2" fill="%23A52A2A" opacity="0.06"/><circle cx="60" cy="20" r="2.5" fill="%23DC143C" opacity="0.05"/><circle cx="50" cy="50" r="1.5" fill="%238B0000" opacity="0.04"/><circle cx="30" cy="30" r="1" fill="%23A52A2A" opacity="0.05"/><circle cx="15" cy="80" r="0.8" fill="%23DC143C" opacity="0.04"/><circle cx="80" cy="15" r="0.6" fill="%238B0000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23meat-texture)"/></svg>');
    background-attachment: fixed;
    background-size: 120% 120%, 120% 120%, 120% 120%, 80px 80px;
    overflow-x: hidden;
    position: relative;
}

/* Параллакс слои */
.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.parallax-smoke {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="smoke" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="30" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/><circle cx="80" cy="30" r="20" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.08"/><circle cx="20" cy="80" r="25" fill="none" stroke="%23ffffff" stroke-width="0.4" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23smoke)"/></svg>');
    background-size: 400px 400px;
    animation: smokeFloat 20s ease-in-out infinite;
}

.parallax-sparks {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparks" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.8"/><circle cx="10" cy="10" r="0.5" fill="%23ffa500" opacity="0.6"/><circle cx="40" cy="15" r="0.8" fill="%23ff4500" opacity="0.7"/><circle cx="15" cy="40" r="0.6" fill="%23ff8c00" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23sparks)"/></svg>');
    background-size: 100px 100px;
    animation: sparksFloat 15s ease-in-out infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(248, 249, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header:hover::before {
    opacity: 1;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Корзина */
.floating-cart {
    position: relative;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cart-icon:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.cart-emoji {
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
    border: 2px solid var(--white);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.cart-dropdown.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
}

.cart-close:hover {
    color: #ffcccc;
    transform: scale(1.1);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem;
}

.quantity-btn {
    background: var(--bg-light);
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.cart-item-total {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 80px;
    text-align: right;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    background: var(--bg-light);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cart-actions {
    display: flex;
    gap: 0.75rem;
}

.cart-checkout, .cart-continue {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    border: none;
}

.cart-checkout {
    background: var(--primary-color);
    color: var(--white);
}

.cart-checkout:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cart-continue {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #ddd;
}

.cart-continue:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #A52A2A 50%, var(--accent-color) 100%);
    background-image: var(--meat-texture);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A52A2A 0%, var(--primary-color) 50%, #DC143C 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #8B0000 15%, 
        var(--secondary-color) 35%, 
        #A52A2A 50%, 
        var(--accent-color) 70%, 
        #DC143C 85%, 
        var(--primary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes smokeFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateX(-20px) translateY(-10px) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateX(10px) translateY(-20px) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateX(-10px) translateY(10px) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes sparksFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    33% { 
        transform: translateX(15px) translateY(-15px) rotate(120deg);
        opacity: 0.6;
    }
    66% { 
        transform: translateX(-10px) translateY(-25px) rotate(240deg);
        opacity: 0.9;
    }
}

@keyframes coalsGlow {
    0%, 100% { 
        opacity: 0.6;
        filter: brightness(1);
    }
    50% { 
        opacity: 0.9;
        filter: brightness(1.3);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #ffcccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.photo-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.photo-collage::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.1), rgba(165, 42, 42, 0.1), rgba(220, 20, 60, 0.1));
    border-radius: 20px;
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.photo-collage::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60"><defs><pattern id="coals" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="3" fill="%23ff4500" opacity="0.8"/><circle cx="5" cy="15" r="2" fill="%23ff6b35" opacity="0.6"/><circle cx="15" cy="5" r="1.5" fill="%23ffa500" opacity="0.7"/><circle cx="8" cy="8" r="1" fill="%23ff8c00" opacity="0.9"/><circle cx="12" cy="12" r="0.8" fill="%23ff6347" opacity="0.5"/></pattern></defs><rect width="100" height="60" fill="url(%23coals)"/></svg>');
    background-size: 40px 20px;
    animation: coalsGlow 3s ease-in-out infinite;
    z-index: -1;
}

.collage-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.collage-item.main-item {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.collage-item:nth-child(7) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.collage-item:nth-child(8) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.collage-item:nth-child(9) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.collage-item:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.collage-item:nth-child(2n) {
    transform: rotate(-2deg);
}

.collage-item:nth-child(2n):hover {
    transform: scale(1.08) rotate(-1deg);
}

.collage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

.collage-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Секции */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* О нас - Красивый современный дизайн */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 25%, #f8f9fa 50%, #ffffff 75%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(165, 42, 42, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.about-intro {
    margin-bottom: 2rem;
}

.about-intro h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.about-intro h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-process {
    margin-bottom: 2rem;
}

.about-process h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.about-process h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.process-steps {
    display: grid;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(139, 0, 0, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(139, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(139, 0, 0, 0.02));
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.feature p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.1), transparent);
    pointer-events: none;
}

/* Продукты */
.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(139, 0, 0, 0.08);
    position: relative;
    transform-style: preserve-3d;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.02), rgba(220, 20, 60, 0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.03) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(139, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    opacity: 1;
}
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) contrast(1.1) saturate(1.2);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.product-card:hover .product-overlay {
        opacity: 1;
}

/* Стили для кнопок в overlay */
.product-overlay .btn {
    opacity: 1 !important;
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white) !important;
    font-weight: 600 !important;
    z-index: 15 !important;
    position: relative !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.product-overlay .btn:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4) !important;
}

.overlay-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    z-index: 11;
    position: relative;
}

.overlay-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.product-category {
    font-size: 0.85rem;
    color: #8B0000 !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(139, 0, 0, 0.15) !important;
    padding: 0.4rem 1rem !important;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(139, 0, 0, 0.3) !important;
    box-shadow: 0 2px 4px rgba(139, 0, 0, 0.2) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Детали товара */
.product-details {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-calories,
.product-weight,
.product-shelf-life {
    background: rgba(139, 0, 0, 0.05);
    color: #666;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-calories,
.product-weight,
.product-shelf-life {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-actions .btn {
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, #A52A2A 50%, var(--accent-color) 100%) !important;
    background-image: var(--meat-texture) !important;
    color: var(--white) !important;
    border: 2px solid transparent !important;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4) !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 10 !important;
}

.product-actions .btn:hover {
    background: linear-gradient(135deg, #A52A2A 0%, var(--primary-color) 50%, #DC143C 100%) !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.6) !important;
}

/* Дополнительные стили для кнопок в product-actions */
.product-card .product-actions .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    pointer-events: auto !important;
}

/* Принудительные стили для всех кнопок в продуктах */
.product-card .btn,
.product-card .product-actions .btn,
.product-card .product-overlay .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    pointer-events: auto !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, #A52A2A 50%, var(--accent-color) 100%) !important;
    background-image: var(--meat-texture) !important;
    color: var(--white) !important;
    border: 2px solid transparent !important;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4) !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 15 !important;
}

/* Секции с винами и гидом */
.wine-pairings, .smoking-guide {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(139, 0, 0, 0.02) 100%);
}

/* МАКСИМАЛЬНАЯ СПЕЦИФИЧНОСТЬ ДЛЯ ВСЕХ КНОПОК */
body .btn,
body .container .products-section .products-grid .product-card .product-actions .btn,
body .container .products-section .products-grid .product-card .product-overlay .btn,
body .hero-section .btn,
body .modal-content .btn,
body .cart-dropdown .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    pointer-events: auto !important;
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 50%, #DC143C 100%) !important;
    color: white !important;
    border: 2px solid transparent !important;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4) !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 15 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

/* Дополнительные стили для кнопок */
.btn-primary {
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 50%, #DC143C 100%) !important;
    color: white !important;
    border: 2px solid transparent !important;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A52A2A 0%, #8B0000 50%, #DC143C 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.6) !important;
}

/* Специальные стили для кнопок корзины */
body .cart-dropdown .quantity-btn,
body .cart-dropdown .remove-btn {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 50%, #A52A2A 100%) !important;
    color: white !important;
    border: 1px solid #8B0000 !important;
    padding: 8px 12px !important;
    margin: 2px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    min-width: 30px !important;
}

.wine-grid, .guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wine-card, .guide-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.wine-card::before, .guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.wine-card:hover, .guide-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.wine-card h3, .guide-card h3 {
    color: #8B0000 !important;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.wine-meat, .guide-method {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.wine-name {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.guide-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.guide-detail {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.guide-detail strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

/* Отзывы */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Контакты */
.contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(139, 0, 0, 0.02) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.messenger-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.messenger-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.messenger-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.messenger-btn.telegram {
    background: #0088cc;
    color: var(--white);
}

.messenger-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Формы */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Модальные окна */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) rotateX(10deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 0, 0, 0.1);
}

/* Стили для изображения в модальном окне */
.product-image-modal {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--border-radius);
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-modal img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.modal-overlay.active .modal-content {
    transform: scale(1) rotateX(0deg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
        font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Корзина */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    max-height: 500px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    transition: var(--transition);
}

.cart-item:hover {
    background: rgba(139, 0, 0, 0.02);
}

.cart-item-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-actions button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.cart-item-actions button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cart-item-actions .remove-btn {
    border-color: #dc3545;
    color: #dc3545;
    margin-left: 0.5rem;
}

.cart-item-actions .remove-btn:hover {
    background: #dc3545;
    color: var(--white);
}

.cart-item-actions span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-total {
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.cart-total-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    color: var(--white);
    font-weight: 600;
    z-index: 3000;
    transform: translateX(100%) scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.notification.success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.notification.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.notification.info {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.notification.show {
    transform: translateX(0) scale(1);
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Универсальные стили для читаемости заголовков */
h3 {
    color: #8B0000 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    font-weight: 600 !important;
}

/* Дополнительные стили для заголовков на светлом фоне */
.about-intro h3,
.about-process h3,
.wine-card h3,
.guide-card h3,
.contact-info h3,
.contact-form h3 {
    color: #8B0000 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    font-weight: 700 !important;
}

/* Стили для параграфов под заголовками */
.about-intro p,
.about-process p,
.wine-card p,
.guide-card p {
    color: #333 !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* Дополнительные стили для текста на светлом фоне */
.about-intro,
.about-process,
.wine-card,
.guide-card {
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 1.5rem !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

/* Адаптивные изображения */
.product-image img,
.hero-image img,
.about-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive images для разных экранов */
@media (max-width: 1200px) {
    .product-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
    
    .hero-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 180px;
    }
    
    .hero-image {
        height: 250px;
    }
}

/* Lazy loading для изображений */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* WebP поддержка с fallback */
.product-image img,
.hero-image img {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB2aWV3Qm94PSIwIDAgMSAxIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmM2Y0ZjYiLz48L3N2Zz4=');
    background-size: cover;
    background-position: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        width: 200px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .photo-collage {
        max-width: 350px;
        gap: 0.75rem;
    }
    
    .collage-item.main-item {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .product-details {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .photo-collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .wine-grid, .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-dropdown {
        width: calc(100vw - 40px);
        right: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1rem;
    }
    
    .guide-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cart-dropdown {
        width: calc(100vw - 20px);
        right: 10px;
    }
    
    .photo-collage {
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
    }
}

/* Дополнительные эффекты */
.product-card, .feature, .wine-card, .guide-card, .testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}

.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }
.product-card:nth-child(6) { animation-delay: 0.5s; }

/* Плавающие частицы */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(165, 42, 42, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: float 15s ease-in-out infinite;
}

/* Улучшенные секции */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

section:hover::before {
    left: 100%;
}

/* Улучшенные кнопки */
.btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Скрытие скроллбара для webkit браузеров */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Красивые стили для секции "О нашем бутике" */

/* Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #8B0000 !important;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    font-family: 'Arial', sans-serif !important;
    letter-spacing: 0px;
    text-transform: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 400;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Stats Section */
.about-stats {
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Story Section */
.about-story {
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(139, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Process Section */
.about-process {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.process-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.process-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.process-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.check-icon {
    color: #28a745;
    font-weight: bold;
}

/* Values Section */
.about-values {
    position: relative;
    z-index: 1;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(139, 0, 0, 0.02));
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

.value-icon {
    font-size: 2rem;
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 0px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section {
        padding: 2rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
}

