:root {
    /* Светлые основные цвета */
    --cream-white: #FAF8F5;
    --light-beige: #EDE7E0;
    --light-taupe: #E8E3DC;
    --medium-taupe: #C4B5A8;
    
    /* Акцентные цвета */
    --burgundy: #9B2242;
    --burgundy-hover: #7A1B34;
    --chocolate: #5C4033;
    --chocolate-light: #8B6F5E;
    
    /* Дополнительные */
    --text-primary: #5C4033;
    --text-secondary: #8B6F5E;
    --border-light: #E8E3DC;
    --shadow-light: rgba(92, 64, 51, 0.08);
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--cream-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Placeholders */
.image-placeholder,
.product-image,
.filling-image,
.work-image {
    background: var(--light-taupe);
    width: 100%;
    height: 100%;
}

.logo img {
    height: 150px;
    width: auto;
    display: block;
    margin-left: 10px;
}

.logo-footer {
    height: 130px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: var(--medium-taupe);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.footer .social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy);
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.footer .social-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--cream-white);
}

.footer .social-icon svg path {
    fill: var(--cream-white);
}

.footer .social-icon:hover {
    background: var(--burgundy-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(155, 34, 66, 0.3);
}

.instagram-asterisk {
    position: absolute;
    top: 2px;
    right: 2px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--cream-white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

body.menu-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--medium-taupe);
    background: var(--cream-white);
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.nav-toggle:focus-visible {
    outline: 2px solid var(--burgundy);
    outline-offset: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav a:hover {
    color: var(--burgundy);
}

.order-link {
    font-weight: bold;
    color: var(--burgundy);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(to bottom, var(--cream-white) 70%, var(--light-beige) 30%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 500px;
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    background: var(--light-taupe);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 12px;
}

/* Hero Product Info */
.hero-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info-content {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    height: 160px;
}

.product-info-content.fade-out {
    opacity: 0;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-carousel-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--burgundy);
    min-width: 200px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background: var(--cream-white);
    border: 1px solid var(--medium-taupe);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chocolate);
}

.carousel-btn:hover {
    background: var(--burgundy);
    color: var(--cream-white);
    border-color: var(--burgundy);
}

.product-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--cream-white);
    border: 2px solid var(--burgundy);
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    width: 100%;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--burgundy-hover);
    border-color: var(--burgundy-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

/* About Section */
.about {
    padding: 120px 0 80px;
    background: var(--light-beige);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

.about-text {
    padding-left: 60px;
    margin-top: -15px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.signature {
    font-style: italic;
    margin-top: 30px;
    font-size: 18px;
    color: var(--text-primary);
}

.signature-image {
    width: 150px;
    max-width: 100%;
    display: block;
}

.about-image {
    max-width: 500px;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin: 0 auto;
}

.about-image img.rounded {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.rounded {
    border-radius: 50%;
}

/* Catalog Section */
.catalog {
    padding: 80px 0;
    background: var(--cream-white);
    position: relative;
    overflow: hidden;
}

.catalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,50 Q300,90 600,50 T1200,50 L1200,0 Z' fill='%23EDE7E0'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.catalog h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

.catalog-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.catalog-filters::-webkit-scrollbar {
    height: 6px;
}

.catalog-filters::-webkit-scrollbar-track {
    background: transparent;
}

.catalog-filters::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.catalog-filters::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.filter-btn {
    background: var(--cream-white);
    border: 1px solid var(--medium-taupe);
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--text-primary);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--burgundy);
    color: var(--cream-white);
    border-color: var(--burgundy);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    position: relative;
    text-align: center;
    transition: all 0.3s;
    border-radius: 4px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-light);
}

.product-image {
    height: 280px;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--light-taupe);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: normal;
    min-height: 48px;
    color: var(--text-primary);
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--burgundy);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(155, 34, 66, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.product-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.product-overlay .product-description {
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-overlay .product-description h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: white;
}

.product-overlay .product-description p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: white;
}

.product-overlay .product-description .price-unit {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}

.btn-more {
    display: block;
    margin: 0 auto;
    background: var(--cream-white);
    border: 2px solid var(--burgundy);
    padding: 15px 50px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    color: var(--burgundy);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-more:hover {
    background: var(--burgundy);
    color: var(--cream-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

/* Popular Section */
.popular {
    padding: 80px 0;
    background: var(--light-taupe);
    position: relative;
    overflow: hidden;
}

.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,50 Q300,20 600,50 T1200,50 L1200,0 Z' fill='%23FAF8F5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.popular h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Fillings Section */
.fillings {
    padding: 80px 0;
    background: var(--cream-white);
    position: relative;
    overflow: hidden;
}

.fillings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,60 Q300,30 600,60 T1200,60 L1200,0 Z' fill='%23E8E3DC'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.fillings h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

.fillings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.filling-image {
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--cream-white);
}

.filling-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Убираем волну для секций без декоративного элемента */
.chocolate-figures::before,
.no-wave::before {
    display: none;
}

.chocolate-figures,
.no-wave {
    padding-top: 60px;
}

.chocolate-figures {
    background: var(--light-beige);
}

/* Decor Section */
.decor {
    padding: 80px 0;
    background: var(--light-taupe);
    position: relative;
    overflow: hidden;
}

.decor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,50 Q300,80 600,50 T1200,50 L1200,0 Z' fill='%23FAF8F5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.decor-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.decor-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

.decor-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.decor-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.decor-photo {
    height: 220px;
    border-radius: 10px;
    background: var(--light-taupe);
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.decor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.decor-card {
    background: var(--cream-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s;
}

.decor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(92, 64, 51, 0.12);
}

.decor-label {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: var(--burgundy);
}

.decor-price {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--chocolate);
}

.decor-description {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 15px;
}

.decor-card ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.decor-card ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.decor-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--burgundy);
    border-radius: 50%;
}

.decor-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(92, 64, 51, 0.05);
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.decor-note p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: var(--light-beige);
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,50 Q300,20 600,50 T1200,50 L1200,0 Z' fill='%23E8E3DC'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.how-we-work h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.work-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-number {
    font-size: 48px;
    color: var(--burgundy);
    font-weight: bold;
    min-width: 80px;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: normal;
    color: var(--chocolate);
}

.step-text p {
    color: var(--text-secondary);
    font-size: 15px;
}

.work-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.work-image {
    height: 200px;
    border-radius: 8px;
}

.work-image-single {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-image-single img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    box-shadow: 0 15px 40px var(--shadow-light);
    transition: all 0.3s;
    background: var(--light-beige);
}

.work-image-single img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(92, 64, 51, 0.15);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--cream-white);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,55 Q300,25 600,55 T1200,55 L1200,0 Z' fill='%23EDE7E0'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

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

.faq-icon {
    font-size: 20px;
    color: var(--medium-taupe);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
    color: var(--burgundy);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    padding: 0 0 0 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 15px 0 0 0;
    opacity: 1;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.faq-answer ul {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--light-taupe);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,50 Q300,15 600,50 T1200,50 L1200,0 Z' fill='%23FAF8F5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.why-us h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

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

.why-card {
    text-align: center;
    padding: 20px;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    background: var(--cream-white);
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: var(--burgundy);
    color: var(--cream-white);
    transform: scale(1.05);
}

.why-icon svg {
    width: 48px;
    height: 48px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: normal;
    color: var(--chocolate);
}

.why-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Order Form Section */
.order-form {
    padding: 80px 0;
    background: var(--cream-white);
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,60 Q300,30 600,60 T1200,60 L1200,0 Z' fill='%23E8E3DC'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

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

.order-image {
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-light);
    background: var(--cream-white);
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.order-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: normal;
    color: var(--chocolate);
    letter-spacing: 0.5px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 15px;
    border: 1px solid var(--medium-taupe);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: var(--cream-white);
    color: var(--text-primary);
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(155, 34, 66, 0.1);
}

.decor-options {
    margin: 10px 0;
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: var(--cream-white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.decor-options p {
    margin: 0 0 5px 0;
    font-weight: bold;
    font-size: 15px;
    color: var(--chocolate);
}

.decor-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
}

.decor-options input[type="radio"] {
    accent-color: var(--burgundy);
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 3px;
    width: auto;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
}

.form-note {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--light-beige);
    color: var(--text-primary);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-column:first-child {
    display: flex;
    align-items: flex-start;
}

.logo-footer {
    margin-top: 0;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: normal;
    color: var(--chocolate);
}

.footer-column h4 a {
    color: var(--chocolate);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column h4 a:hover {
    color: var(--burgundy);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--burgundy);
}

.footer-column p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-column p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column p a:hover {
    color: var(--burgundy);
}

.footer-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--medium-taupe);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-carousel {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
        height: 400px;
    }

    .hero-product-info {
        order: 3;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-text {
        padding-left: 20px;
    }

    .about-image {
        max-width: 400px;
    }

    .about-content,
    .work-content,
    .order-content {
        grid-template-columns: 1fr;
    }

    .work-image-single img {
        width: 400px;
        height: 400px;
    }

    .catalog-grid,
    .popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fillings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .decor-photos {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 14;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Close button in nav */
.nav-close {
    display: none;
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
        gap: 15px;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
        z-index: 20;
    }

    .nav-overlay {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        flex-direction: column;
        gap: 25px;
        background: var(--cream-white);
        padding: 80px 30px 40px;
        border-left: 1px solid var(--border-light);
        box-shadow: -10px 0 30px rgba(92, 64, 51, 0.12);
        width: min(320px, 85vw);
        z-index: 15;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav a {
        width: 100%;
        font-size: 20px;
        padding: 8px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-carousel {
        height: 350px;
    }

    .product-carousel-price {
        font-size: 28px;
        min-width: 120px;
        text-align: left;
    }

    .product-price-wrapper {
        gap: 10px;
        justify-content: center;
    }

    .product-description {
        font-size: 15px;
    }

    .product-info-content {
        height: 140px;
    }

    .catalog-grid,
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .decor-photos {
        grid-template-columns: 1fr;
    }

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

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

    .work-image-grid {
        grid-template-columns: 1fr;
    }

    .work-image-single img {
        width: 350px;
        height: 350px;
    }

    .order-image {
        height: 450px;
    }

    .about .container {
        padding-left: 20px;
    }

    .about-text {
        padding-left: 0;
        text-align: center;
    }

    .about-image {
        max-width: 350px;
    }

    .signature-image {
        margin: 0 auto;
    }

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

    .footer-column:first-child {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-carousel {
        height: 300px;
    }

    .product-carousel-price {
        font-size: 24px;
    }

    .product-description {
        font-size: 14px;
    }

    .product-info-content {
        height: 150px;
    }

    .product-price-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .product-carousel-price {
        font-size: 24px;
        min-width: 100px;
        text-align: left;
        flex-shrink: 0;
    }

    .catalog-grid,
    .popular-grid {
        grid-template-columns: 1fr;
    }

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

    .work-image-single img {
        width: 280px;
        height: 280px;
    }

    .order-image {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 28px !important;
    }

    .about-image {
        max-width: 280px;
    }
}

@media (max-width: 400px) {
    .order-image {
        height: 280px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--chocolate);
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        background: var(--light-taupe);
        border-radius: 50%;
        font-size: 40px;
    }
}

