/*========================================
Символ лаундж — кафе внутри жилого дома
========================================*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:opsz,wght@14..32,300;400;500;600;700&display=swap');

:root {
    --bg-deep: #0A0806;
    --bg-rich: #110D0A;
    --bg-soft: #1A1410;
    --bg-card: rgba(26, 20, 16, 0.7);
    --gold-mid: #D4A259;
    --gold-dark: #C4903E;
    --gold-light: #E8C67A;
    --text-light: #F5EFE6;
    --text-muted: #B8A99A;
    --text-dim: #6B5B4A;
    --transition: all 0.4s cubic-bezier(0.2, 0.95, 0.4, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-deep);
    color: var(--text-light);
    scroll-behavior: smooth;
    font-weight: 300;
    overflow-x: hidden;
}

/* ========== АНИМАЦИЯ СКРОЛЛА ========== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== АНИМАЦИЯ ПОЯВЛЕНИЯ ТОВАРОВ ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.4s ease forwards;
}

/* ========== СКРОЛЛ ========== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #1A1410;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-mid);
    border-radius: 10px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-mid) #1A1410;
}

/* ========== НАВИГАЦИЯ LIQUID GLASS ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 8, 6, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 162, 89, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0.75rem 1rem;
    }
}

.navbar-logo img {
    height: 48px;
    width: auto;
}

@media (max-width: 768px) {
    .navbar-logo img {
        height: 40px;
    }
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .navbar-right {
        gap: 0.75rem;
    }
}

.navbar-contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.contact-link i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: var(--gold-mid);
}

.contact-number {
    display: none;
}

@media (min-width: 768px) {
    .contact-number {
        display: inline;
    }
}

.contact-telegram {
    font-size: 1.1rem;
}

.menu-btn-wrapper {
    position: relative;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 162, 89, 0.15);
    border: 1px solid rgba(212, 162, 89, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: rgba(212, 162, 89, 0.25);
    border-color: var(--gold-mid);
}

.menu-btn.active {
    background: rgba(212, 162, 89, 0.25);
    border-color: var(--gold-mid);
}

.menu-btn-icon {
    font-size: 1rem;
    color: var(--gold-mid);
}

.menu-btn-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light);
}

.menu-btn-arrow {
    font-size: 0.7rem;
    color: var(--gold-mid);
    transition: transform 0.3s ease;
}

.menu-btn.active .menu-btn-arrow {
    transform: rotate(180deg);
}

@media (max-width: 480px) {
    .menu-btn-text {
        display: inline;
    }
    .menu-btn {
        padding: 8px 12px;
    }
}

/* ========== МЕГА-МЕНЮ ========== */
.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 560px;
    background: rgba(17, 13, 10, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(212, 162, 89, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 20px;
}

.mega-col {
    padding: 0 16px;
}

.mega-col:first-child {
    border-right: 1px solid rgba(212, 162, 89, 0.15);
}

.mega-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-mid);
    margin: 0 0 12px 0;
}

.mega-title-mt {
    margin-top: 16px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    margin: 0 -10px;
}

.mega-menu-item i {
    width: 24px;
    font-size: 1rem;
    color: var(--gold-mid);
}

.mega-menu-item:hover {
    background: rgba(212, 162, 89, 0.1);
    color: var(--gold-mid);
}

.mega-menu-item:hover i {
    color: var(--gold-mid);
}

@media (max-width: 768px) {
    .mega-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-radius: 0 0 20px 20px;
    }
    .mega-menu-grid.two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mega-col:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(212, 162, 89, 0.15);
        padding-bottom: 16px;
    }
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon i {
    font-size: 1rem;
    color: var(--gold-mid);
    transition: var(--transition);
}

.cart-icon:hover i {
    color: var(--gold-light);
}

.cart-icon.bump {
    animation: cartBump 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--gold-dark);
    color: #0A0806;
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* ========== КНОПКА "ПОКАЗАТЬ ЕЩЁ" ========== */
.load-more-btn {
    display: block;
    width: 220px;
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    background: rgba(10, 8, 6, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 162, 89, 0.3);
    border-radius: 50px;
    color: var(--gold-mid);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.load-more-btn:hover {
    background: rgba(212, 162, 89, 0.15);
    border-color: var(--gold-mid);
    transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero-fixed {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 6, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    transform: translate(0, 0) !important;
    animation: none !important;
    transition: none !important;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 40px;
    border: 1px solid var(--gold-mid);
    color: var(--gold-mid);
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: 'Cinema', 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    white-space: nowrap;
    color: var(--gold-mid);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
        white-space: normal;
    }
    .hero-content {
        padding: 1rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 0.85rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    color: #0A0806;
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
}

.btn-outline {
    border: 1px solid var(--gold-mid);
    color: var(--gold-mid);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold-mid);
    color: #0A0806;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    cursor: pointer;
}

.scroll-down span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    animation: gentlePulse 2s infinite;
}

.scroll-down i {
    font-size: 1.25rem;
    color: var(--gold-mid);
    animation: bounce 1.5s infinite;
    display: inline-block;
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ========== КАТАЛОГ ========== */
.catalog {
    padding: 4rem 2rem;
}

@media (max-width: 768px) {
    .catalog {
        padding: 2rem 1rem;
    }
}

.catalog-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .catalog-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.categories-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .categories-sidebar {
        width: 100%;
        position: static;
        margin-top: 1.5rem;
    }
}

.categories-sidebar h3 {
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--gold-mid);
}

@media (max-width: 1024px) {
    .categories-sidebar h3 {
        display: none;
    }
}

.desktop-categories {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (max-width: 1024px) {
    .desktop-categories {
        display: none;
    }
}

.categories-mobile-horizontal {
    display: none;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.categories-mobile-horizontal::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1024px) {
    .categories-mobile-horizontal {
        display: flex;
        gap: 0.5rem;
    }
}

.mobile-category-btn {
    background: transparent;
    border: 1px solid rgba(212, 162, 89, 0.3);
    border-radius: 40px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-category-btn i {
    font-size: 0.8rem;
    color: var(--gold-mid);
}

.mobile-category-btn.active {
    background: rgba(212, 162, 89, 0.15);
    border-color: var(--gold-mid);
    color: var(--gold-mid);
}

.category-btn {
    background: transparent;
    border: none;
    padding: 0.7rem 1rem;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-btn i {
    font-size: 1.1rem;
    width: 24px;
    color: var(--gold-mid);
}

.category-btn:hover {
    color: var(--gold-mid);
    background: rgba(212, 162, 89, 0.08);
}

.category-btn.active {
    color: var(--gold-mid);
    background: rgba(212, 162, 89, 0.12);
}

.products-wrapper {
    flex: 1;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(212, 162, 89, 0.15);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-mid);
}

.product-img {
    height: 180px;
    flex-shrink: 0;
    background: #1A1512;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-info {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 0.5rem;
}

.product-price {
    color: var(--gold-mid);
    font-size: 1rem;
    font-weight: 500;
}

.btn-add-to-cart-card {
    background: transparent;
    border: 1px solid var(--gold-mid);
    border-radius: 40px;
    padding: 0.4rem 0.8rem;
    color: var(--gold-mid);
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-add-to-cart-card i {
    font-size: 0.7rem;
}

.btn-add-to-cart-card:hover {
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    color: #0A0806;
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.features-section {
    padding: 4rem 2rem;
    background: var(--bg-rich);
}

@media (max-width: 768px) {
    .features-section {
        padding: 2rem 1rem;
    }
}

.features-desktop-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .features-desktop-grid {
        display: none;
    }
}

.features-mobile-swiper {
    display: none;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .features-mobile-swiper {
        display: block;
    }
}

.features-mobile-swiper .swiper-slide {
    width: 80%;
}

.feature-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(212, 162, 89, 0.15);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold-mid);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold-mid);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.feature-card p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.features-mobile-swiper .swiper-pagination-bullet {
    background: var(--text-dim);
}

.features-mobile-swiper .swiper-pagination-bullet-active {
    background: var(--gold-mid);
}

/* ========== ГАЛЕРЕЯ MASONRY ========== */
.gallery-section-desktop {
    display: block;
    padding: 4rem 2rem;
    background: var(--bg-deep);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 162, 89, 0.2);
}

.gallery-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-masonry-item:hover img {
    transform: scale(1.02);
}

.gallery-masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px 15px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-masonry-item:hover .gallery-masonry-overlay {
    opacity: 1;
}

.gallery-masonry-overlay span {
    color: var(--gold-mid);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .gallery-masonry {
        column-count: 1;
    }
}

/* ========== ГАЛЕРЕЯ СЛАЙДЕР ДЛЯ МОБИЛЬНЫХ ========== */
.gallery-section-mobile {
    display: none;
    padding: 2rem 1rem;
    background: var(--bg-deep);
}

.mobile-gallery-item {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.mobile-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-swiper .swiper-slide {
    width: 80%;
}

.gallery-swiper .swiper-pagination-bullet {
    background: var(--text-dim);
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--gold-mid);
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    color: var(--gold-mid);
    background: rgba(0, 0, 0, 0.5);
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.gallery-swiper .swiper-button-prev:after,
.gallery-swiper .swiper-button-next:after {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .gallery-section-desktop {
        display: none;
    }
    .gallery-section-mobile {
        display: block;
    }
}

/* Лайтбокс */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* ========== ДОСТАВКА ========== */
.delivery-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-deep), var(--bg-rich));
}

@media (max-width: 768px) {
    .delivery-section {
        padding: 2rem 1rem;
    }
}

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

.delivery-title {
    text-align: center;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-mid);
    margin-bottom: 2rem;
}

.delivery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 1.25rem;
    border: 1px solid rgba(212, 162, 89, 0.15);
}

.delivery-feature i {
    font-size: 2rem;
    color: var(--gold-mid);
}

.delivery-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.delivery-feature p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.delivery-note {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 162, 89, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.delivery-note i {
    color: var(--gold-mid);
}

.delivery-note p {
    font-size: 0.8rem;
}

/* ========== КОНТАКТЫ ========== */
.contacts-section {
    padding: 4rem 2rem;
    background: var(--bg-deep);
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 2rem 1rem;
    }
}

.contacts-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contacts-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.contacts-info {
    flex: 1;
}

.contacts-title {
    color: var(--gold-mid);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contacts-list p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.contacts-list i {
    width: 24px;
    color: var(--gold-mid);
}

.requisites h4 {
    color: var(--gold-mid);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.requisites p {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.contacts-map {
    flex: 1;
}

.map-container {
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 162, 89, 0.2);
}

@media (max-width: 768px) {
    .map-container {
        height: 250px;
    }
}

.footer {
    background: #050403;
    border-top: 1px solid rgba(212, 162, 89, 0.1);
    padding: 2rem;
    text-align: center;
}

.footer p {
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* ========== КОРЗИНА-САЙДБАР ========== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #110D0A;
    border-left: 1px solid rgba(212, 162, 89, 0.2);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(212, 162, 89, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.cart-close:hover {
    color: white;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 162, 89, 0.1);
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 162, 89, 0.1);
    border-radius: 40px;
    padding: 4px 8px;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--gold-mid);
    color: var(--gold-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.cart-qty-btn:hover {
    background: var(--gold-mid);
    color: #0A0806;
}

.cart-qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 500;
    color: var(--text-light);
}

.cart-item-total {
    color: var(--gold-mid);
    font-weight: 500;
    min-width: 70px;
    text-align: right;
}

.cart-remove {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    margin-left: 0.75rem;
}

.cart-remove:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid rgba(212, 162, 89, 0.15);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cart-total span:last-child {
    color: var(--gold-mid);
    font-size: 1.1rem;
}

.cart-promo {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 162, 89, 0.2);
    border-radius: 40px;
    padding: 0.6rem 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    border: none;
    border-radius: 40px;
    padding: 0.75rem;
    color: #0A0806;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
}

.min-order-warning {
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background: rgba(212, 162, 89, 0.15);
    border-radius: 40px;
    font-size: 0.7rem;
    color: var(--gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========== ПОЛНОЭКРАННАЯ МОДАЛКА ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 6, 0.75);
    backdrop-filter: blur(12px);
    z-index: 1200;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.modal.active {
    display: flex;
    animation: modalOverlayFadeIn 0.25s ease forwards;
}

@keyframes modalOverlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.closing {
    animation: modalOverlayFadeOut 0.25s ease forwards;
}

@keyframes modalOverlayFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.modal-content {
    width: 100%;
    background: rgba(26, 20, 16, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px 28px 0 0;
    border-top: 1px solid rgba(212, 162, 89, 0.3);
    overflow-y: auto;
    position: relative;
    margin-top: 10px;
    height: calc(100% - 30px);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal.closing .modal-content {
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s ease;
    border: 0.5px solid rgba(212, 162, 89, 0.3);
    color: var(--gold-mid);
    font-size: 18px;
    font-weight: 400;
}

.modal-close:hover {
    background: rgba(212, 162, 89, 0.25);
    transform: scale(1.05);
    border-color: var(--gold-mid);
}

.modal-drag-handle {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(212, 162, 89, 0.35);
    border-radius: 4px;
    z-index: 20;
    cursor: grab;
}

.modal-drag-handle:active {
    cursor: grabbing;
}

.modal-body {
    padding: 60px 20px 30px;
}

.modal-gallery {
    margin-bottom: 20px;
}

.modal-main-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-main-img i {
    font-size: 3rem;
    color: var(--gold-mid);
    opacity: 0.5;
}

.modal-details h3 {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 6px;
    color: var(--gold-mid);
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.modal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.modal-price {
    font-size: 1.6rem;
    color: var(--gold-mid);
    font-weight: 600;
    white-space: nowrap;
}

.btn-add-to-cart-modal {
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    border: none;
    border-radius: 40px;
    padding: 10px 20px;
    color: #0A0806;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-add-to-cart-modal:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(212, 162, 89, 0.3);
}

.tech-card {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 14px;
    border: 0.5px solid rgba(212, 162, 89, 0.1);
}

.tech-card h4 {
    font-size: 0.7rem;
    color: var(--gold-mid);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.tech-card p {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .modal {
        align-items: center;
        background: rgba(10, 8, 6, 0.85);
    }
    .modal-content {
        height: auto;
        max-width: 1000px;
        max-height: 85vh;
        border-radius: 32px;
        margin-top: 0;
        transform: scale(0.95);
        transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    .modal.active .modal-content {
        transform: scale(1);
    }
    .modal.closing .modal-content {
        transform: scale(0.95);
    }
    .modal-drag-handle {
        display: none;
    }
    .modal-close {
        top: 14px;
        right: 14px;
    }
    .modal-body {
        display: flex;
        gap: 24px;
        padding: 28px;
    }
    .modal-gallery {
        flex: 1;
        margin-bottom: 0;
    }
    .modal-details {
        flex: 1;
    }
    .modal-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .btn-add-to-cart-modal {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modal-price {
        font-size: 1.4rem;
    }
    .btn-add-to-cart-modal {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

.recommended-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 162, 89, 0.15);
}

.recommended-title {
    font-size: 0.75rem;
    color: var(--gold-mid);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.recommended-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommended-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 8px 16px;
    border: 0.5px solid rgba(212, 162, 89, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.recommended-item:hover {
    background: rgba(212, 162, 89, 0.08);
    border-color: rgba(212, 162, 89, 0.3);
}

.recommended-name {
    font-size: 0.8rem;
    flex: 1;
}

.recommended-price {
    font-size: 0.75rem;
    color: var(--gold-mid);
    margin-right: 12px;
    font-weight: 500;
}

.recommended-add {
    background: rgba(212, 162, 89, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 162, 89, 0.3);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gold-mid);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.recommended-add:hover {
    background: rgba(212, 162, 89, 0.2);
    border-color: var(--gold-mid);
    transform: translateY(-1px);
}

/* ========== УВЕДОМЛЕНИЕ ========== */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold-mid);
    color: #0A0806;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    z-index: 1300;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.3s ease, toastFadeOut 0.3s ease 2.7s forwards;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========== МОДАЛЬНОЕ ОКНО БРОНИРОВАНИЯ ========== */
.booking-modal .modal-content {
    max-width: 900px;
    width: 90%;
    background: rgba(26, 20, 16, 0.96);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow-y: auto;
    position: relative;
    max-height: 85vh;
}

@media (min-width: 768px) {
    .booking-modal {
        align-items: center;
        background: rgba(10, 8, 6, 0.85);
    }
    .booking-modal .modal-content {
        transform: scale(0.95);
        transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        border-radius: 32px;
    }
    .booking-modal.active .modal-content {
        transform: scale(1);
    }
    .booking-modal.closing .modal-content {
        transform: scale(0.95);
    }
    .booking-modal .modal-drag-handle {
        display: none;
    }
}

@media (max-width: 768px) {
    .booking-modal .modal-content {
        width: 100%;
        border-radius: 28px 28px 0 0;
        margin-top: 10px;
        height: calc(100% - 30px);
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        max-height: none;
    }
    .booking-modal.active .modal-content {
        transform: translateY(0);
    }
    .booking-modal.closing .modal-content {
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.booking-modal-body {
    display: flex;
    gap: 24px;
    padding: 28px;
}

.booking-modal-gallery {
    flex: 1;
    margin-bottom: 0;
}

.booking-modal-gallery .modal-main-img {
    aspect-ratio: 1/1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-gallery .modal-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-modal-details {
    flex: 1;
}

.booking-modal-details h3 {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 6px;
    color: var(--gold-mid);
}

.booking-field {
    margin-bottom: 14px;
}

.booking-row {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.booking-field.half {
    flex: 1;
    margin-bottom: 14px;
}

.booking-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--gold-mid);
}

.booking-label i {
    margin-right: 6px;
    font-size: 0.7rem;
}

.booking-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 162, 89, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: var(--transition);
}

.booking-input:focus {
    outline: none;
    border-color: var(--gold-mid);
    background: rgba(0, 0, 0, 0.6);
}

.booking-input::placeholder {
    color: var(--text-dim);
}

.date-input-container {
    position: relative;
    width: 100%;
}

.date-input-container .booking-input {
    width: 100%;
}

@media (max-width: 768px) {
    .date-placeholder {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-dim);
        pointer-events: none;
        font-size: 0.85rem;
        transition: opacity 0.2s;
        z-index: 1;
    }
    .date-input-container .booking-input:focus+.date-placeholder,
    .date-input-container .booking-input:valid+.date-placeholder {
        opacity: 0;
        visibility: hidden;
    }
}

@media (min-width: 769px) {
    .date-placeholder {
        display: none;
    }
}

input[type="date"].booking-input::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(5) hue-rotate(350deg);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
}

input[type="date"].booking-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.05);
}

input[type="date"].booking-input {
    color-scheme: dark;
}

select.booking-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4A259'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    cursor: pointer;
}

select.booking-input option {
    background-color: var(--bg-rich);
    color: var(--text-light);
}

.booking-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    border: none;
    border-radius: 40px;
    padding: 10px;
    color: #0A0806;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 162, 89, 0.3);
}

.booking-note {
    margin-top: 16px;
    padding: 10px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 0.5px solid rgba(212, 162, 89, 0.1);
}

.booking-note i {
    color: var(--gold-mid);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .booking-modal-body {
        flex-direction: column;
        gap: 0;
        padding: 60px 20px 30px;
    }
    .booking-modal-gallery {
        margin-bottom: 20px;
    }
    .booking-modal-gallery .modal-main-img {
        aspect-ratio: 16/9;
    }
    .booking-modal-details h3 {
        font-size: 1.2rem;
    }
    .booking-row {
        flex-direction: column;
        gap: 0;
    }
    .booking-submit-btn {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .booking-modal-body {
        padding: 50px 16px 25px;
    }
    .booking-field {
        margin-bottom: 12px;
    }
    .booking-input {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* ========== COOKIE УВЕДОМЛЕНИЕ ========== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(17, 13, 10, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(212, 162, 89, 0.25);
    padding: 16px 20px;
    z-index: 1400;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 1.8rem;
    color: var(--gold-mid);
}

.cookie-content p {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-content a {
    color: var(--gold-mid);
    text-decoration: none;
    border-bottom: 1px dashed var(--gold-mid);
}

.cookie-content a:hover {
    color: var(--gold-light);
}

.cookie-accept {
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    border: none;
    border-radius: 40px;
    padding: 8px 24px;
    color: #0A0806;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 162, 89, 0.3);
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px 16px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content i {
        font-size: 1.5rem;
    }
    .cookie-content p {
        font-size: 0.7rem;
    }
}

/* ========== ФУТЕР СО ССЫЛКАМИ ========== */
.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-mid);
    text-decoration: underline;
}

/* ========== СОГЛАСИЕ В ФОРМАХ ========== */
.booking-agreement {
    margin: 20px 0 15px;
    padding: 10px 12px;
    background: rgba(212, 162, 89, 0.08);
    border-radius: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-agreement i {
    color: var(--gold-mid);
    font-size: 0.8rem;
}

.booking-agreement a {
    color: var(--gold-mid);
    text-decoration: none;
    border-bottom: 1px dashed var(--gold-mid);
}

.booking-agreement a:hover {
    color: var(--gold-light);
}

/* ========== COOKIE УВЕДОМЛЕНИЕ ========== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(17, 13, 10, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(212, 162, 89, 0.25);
    padding: 16px 20px;
    z-index: 1400;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ ОФОРМЛЕНИЯ ЗАКАЗА ========== */

/* Стили для кастомных классов (аналоги Tailwind) */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

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

.font-medium {
    font-weight: 500;
}

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

.text-gold {
    color: var(--gold-mid);
}

.text-gray-400 {
    color: #B8A99A;
}

.text-gray-500 {
    color: #9CA3AF;
}

.text-white {
    color: #FFFFFF;
}

.bg-gold {
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
}

.rounded-full {
    border-radius: 9999px;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

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

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.w-full {
    width: 100%;
}

.max-w-md {
    max-width: 28rem;
}

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

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Кнопки */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    color: #0A0806;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
}

.btn-outline {
    border: 1px solid var(--gold-mid);
    color: var(--gold-mid);
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--gold-mid);
    color: #0A0806;
}

/* Формы */
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 162, 89, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold-mid);
    background: rgba(0, 0, 0, 0.6);
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--gold-mid);
}

/* Секции */
.section-dark {
    background: var(--bg-deep);
    color: var(--text-light);
}

/* Футер */
.footer {
    background: #050403;
    border-top: 1px solid rgba(212, 162, 89, 0.1);
    padding: 2rem;
    text-align: center;
}

.footer p {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-mid);
    text-decoration: underline;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 8, 6, 0.6);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 162, 89, 0.2);
    padding: 0.75rem 2rem;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    height: 48px;
    width: auto;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.contact-link:hover {
    color: var(--gold-mid);
}

.contact-number {
    display: none;
}

@media (min-width: 768px) {
    .contact-number {
        display: inline;
    }
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon i {
    font-size: 1rem;
    color: var(--gold-mid);
    transition: var(--transition);
}

/* Адаптив */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    .navbar-logo img {
        height: 40px;
    }
    .navbar-right {
        gap: 0.75rem;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    animation: fadeIn 0.4s ease forwards;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 1.8rem;
    color: var(--gold-mid);
}

.cookie-content p {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-content a {
    color: var(--gold-mid);
    text-decoration: none;
    border-bottom: 1px dashed var(--gold-mid);
}

.cookie-content a:hover {
    color: var(--gold-light);
}

.cookie-accept {
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    border: none;
    border-radius: 40px;
    padding: 8px 24px;
    color: #0A0806;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 162, 89, 0.3);
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px 16px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content i {
        font-size: 1.5rem;
    }
    .cookie-content p {
        font-size: 0.7rem;
    }
}