/* ===== VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E4A6;
    --gold-dark: #B8860B;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-dark: #444444;
    --success: #2E8B57;
}


/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Promo banner (managed from admin → Контент) */
.arus-promo-bar {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: linear-gradient(90deg, #c41e24 0%, #e11d24 50%, #c41e24 100%);
    color: #fff;
    padding: 0.7rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(225, 29, 36, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.arus-promo-bar span {
    font-weight: 500;
}

.arus-promo-bar a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.arus-promo-bar a:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .arus-promo-bar {
        font-size: 0.82rem;
        padding: 0.6rem 0.85rem;
        gap: 0.5rem;
    }
}

#story,
#order,
#products {
    scroll-margin-top: 90px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== ANIMATED BACKGROUND ===== */
.gold-particle {
    position: fixed;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

#particle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

#particle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation: float 25s infinite ease-in-out reverse;
}

#particle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ===== HEADER ===== */
.luxury-header {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 0 5%;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* ===== NAVIGATION ===== */
.luxury-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    z-index: 100;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    font-size: 2.5rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-name {
    font-size: 1.8rem;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    position: relative;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link span {
    font-size: 0.7rem;
    color: var(--gold);
    margin-right: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.highlight {
    background: linear(45deg, var(--gold), var(--gold-dark));
    border-radius: 30px;
    font-weight: 600;
}

.nav-link.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.nav-hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.hero-badge span {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
}

.hero-line.gold {
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-line.gold::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* ===== IMAGE FRAME ===== */
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.frame-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    opacity: 0.5;
    z-index: 1;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-text h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 8rem 5%;
    background: var(--black-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    color: var(--gray);
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.product-card.featured {
    border: 2px solid var(--gold);
    position: relative;
}

.product-card.featured::before {
    content: '⭐ ЛУЧШЕЕ';
    position: absolute;
    top: 15px;
    right: -10px;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-image:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.quick-view:hover {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.btn-order {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-order:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}


/* ===== UPDATED STORY SECTION ===== */
/* ===== FIRE STORY SECTION ===== */
.story-section {
    padding: 10rem 5%;
    background: linear-gradient(180deg, 
        #0A0A0A 0%, 
        #1A1A1A 30%, 
        #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background */
.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Header */
.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.decoration-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        transparent);
}

.section-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.section-title {
    font-size: 4.5rem;
    text-align: center;
    margin: 1rem 0 2rem;
    background: linear-gradient(to bottom, 
        var(--white), 
        var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.3rem;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

/* Main Story Card */
.story-main-card {
    position: relative;
    border: 2px solid var(--gold);
    border-radius: 25px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: 4rem;
    margin-bottom: 6rem;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(212, 175, 55, 0.05);
}

.story-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 2;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.5s;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.9), 
        transparent);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.badge-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.badge-sub {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Quote Styling */
.main-quote {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--gold);
}

.quote-start {
    position: absolute;
    top: -40px;
    left: -10px;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.quote-text {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.quote-text .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.quote-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.main-quote:hover .highlight::after {
    transform: scaleX(1);
}

.quote-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.author-name {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-handle {
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Timeline */
.story-timeline {
    margin-bottom: 6rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.timeline-header p {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--gold), 
        var(--gold-dark), 
        transparent);
    opacity: 0.5;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-year {
    min-width: 120px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    z-index: -1;
}

.timeline-content {
    flex: 1;
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    margin: 0 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
    border-color: var(--gold);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-stats .stat {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-icon {
    font-size: 3rem;
    min-width: 80px;
    height: 80px;
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.philosophy-card {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid transparent;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
}

.philosophy-card.fire {
    background: linear-gradient(135deg, 
        rgba(212, 55, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0.1) 100%);
    border-color: rgba(212, 55, 55, 0.3);
}

.philosophy-card.mountain {
    background: linear-gradient(135deg, 
        rgba(85, 212, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0.1) 100%);
    border-color: rgba(85, 212, 55, 0.3);
}

.philosophy-card.rebel {
    background: linear-gradient(135deg, 
        rgba(212, 55, 212, 0.1) 0%, 
        rgba(212, 175, 55, 0.1) 100%);
    border-color: rgba(212, 55, 212, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.philosophy-card h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* CTA Block */
.story-cta {
    position: relative;
    background: linear-gradient(135deg, 
        var(--black-light) 0%, 
        var(--black) 100%);
    border: 2px solid var(--gold);
    border-radius: 25px;
    padding: 5rem;
    text-align: center;
    overflow: hidden;
}

.story-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.2) 0%, 
        transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-explosive {
    background: linear-gradient(45deg, 
        #ff0000, 
        #ff8800, 
        var(--gold));
    color: var(--black);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3); }
    50% { box-shadow: 0 5px 40px rgba(255, 0, 0, 0.6); }
}

.btn-explosive:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.8);
}

.btn-ghost {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.cta-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transform: rotate(-5deg);
    animation: rotateBadge 3s infinite;
}

@keyframes rotateBadge {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .timeline-year {
        min-width: 100px;
        font-size: 2.5rem;
    }
    
    .timeline-content {
        margin-left: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-main-card {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.8rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .story-cta {
        padding: 3rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-year {
        min-width: 80px;
        font-size: 2rem;
    }
    
    .timeline-year::after {
        width: 80px;
        height: 80px;
    }
    
    .timeline-content {
        padding: 1.5rem;
        margin-left: 2rem;
    }
    
    .btn-explosive,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}
/* ===== ORDER SECTION ===== */
.order-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
}

.order-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.order-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.order-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.order-steps {
    max-width: 800px;
    margin: 0 auto 4rem;
}
/* ===== ORDER SECTION ===== */

.order-cta {
    max-width: 600px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-card .btn-outline,
.cta-card .btn-gold,
.cta-card .cart-stats {
    position: relative;
    z-index: 1;
}

.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s;
}

.btn-instagram:hover {
    transform: translateY(-3px);
}

.pulse-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    animation: pulse-border 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-border {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

/* ===== FOOTER ===== */
.luxury-footer {
    background: var(--black);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover:not(.disabled) {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.social-links a.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.luxury-footer .social-links a:not(.disabled) {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    color: var(--gray);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.subscribe-form {
    display: flex;
    margin-top: 1rem;
}

.subscribe-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 30px 0 0 30px;
    color: var(--white);
}

.subscribe-form button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background: var(--gold-dark);
}

.newsletter-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.subscribe-success {
    display: none;
    color: var(--gold);
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.newsletter-agree {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1.4;
}

.newsletter-agree input {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modal-appear 0.5s ease-out;
}

@keyframes modal-appear {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.modal-header p {
    color: var(--gray);
}

#selectedProduct {
    color: var(--gold);
    font-weight: 600;
}

.modal-body {
    text-align: center;
}

.message-template {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

#orderMessage {
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.6;
}

#copyMessage {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

#copyMessage:hover {
    background: var(--gold-dark);
}

.btn-instagram-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(45deg, #405DE6, #833AB4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
    width: 100%;
    transition: transform 0.3s;
}

.btn-instagram-modal:hover {
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .luxury-nav {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-hamburger {
        display: block;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        padding-left: 0;
    }
    
    .story-features {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-gold,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
}
/* Градиентные обводки для иконок */
.step-icon {
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), transparent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.step:hover .step-icon::before {
    opacity: 0.5;
}

/* Тень при наведении */
.step:hover .step-icon {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Анимация цифр */
.step:hover .step-number {
    animation: pulseNumber 1s;
}

@keyframes pulseNumber {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
/* ===== ORDER SECTION ===== */
.order-steps {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    background: rgba(26, 26, 26, 0.7);
    transition: all 0.4s;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0.3;
    transition: opacity 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    background: rgba(26, 26, 26, 0.9);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Cormorant Garamond', serif;
}

.step-content {
    margin-top: 2rem;
}

/* Золотые иконки */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

/* Эффект свечения вокруг иконок */
.step-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.step:hover .step-icon::after {
    opacity: 0.5;
}

/* Анимация иконок при наведении */
.step:hover .step-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Соединительные линии между шагами */
.order-steps {
    position: relative;
}

.order-steps::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 15%, 
        rgba(212, 175, 55, 0.3) 25%, 
        rgba(212, 175, 55, 0.3) 75%, 
        transparent 85%);
    z-index: -1;
}

/* Декоративные элементы */
.step::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.step:hover::after {
    opacity: 1;
}

/* Адаптивность */
@media (max-width: 768px) {
    .order-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .order-steps::before {
        display: none;
    }
    
    .step {
        padding: 2rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}
/* ===== BURGER MENU STYLES ===== */

/* Фон при открытом меню */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 999;
    backdrop-filter: blur(10px);
}

/* Бургер-иконка - ОСНОВНОЙ СТИЛЬ (скрыта на десктопе) */
.nav-hamburger {
    display: none; /* Вот это главное - на десктопе скрыто */
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gold);
    z-index: 1001;
    transition: transform 0.3s;
    padding: 10px;
}

.nav-hamburger:hover {
    transform: scale(1.1);
}

/* Скрываем дополнительные мобильные элементы на десктопе */
.mobile-social,
.mobile-hours {
    display: none;
}

/* ===== ДЕСКТОПНЫЕ СТИЛИ ===== */
/* Нормальное меню на десктопе */
.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(131, 58, 180, 0.3);
}

.instagram-btn:hover::after {
    display: none;
}

/* ===== МОБИЛЬНЫЕ СТИЛИ (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* Показываем бургер ТОЛЬКО на мобильных */
    .nav-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Скрываем обычное меню на мобильных */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 2rem;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--gold);
        overflow-y: auto;
        display: flex;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link span {
        font-size: 0.9rem;
        min-width: 30px;
        display: inline-block;
    }
    
    /* Instagram кнопка в мобильном меню */
    .nav-link.instagram-btn {
        margin-top: 1rem;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        width: auto;
        border-bottom: none;
        color: white !important;
    }
    
    /* Дополнительные элементы для мобильного меню */
    .mobile-social {
        display: block;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        width: 100%;
    }
    
    .mobile-social a {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--gold);
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 0.8rem;
        border-radius: 10px;
        background: rgba(212, 175, 55, 0.1);
        transition: all 0.3s;
    }
    
    .mobile-social a:hover {
        background: rgba(212, 175, 55, 0.2);
        transform: translateX(5px);
    }
    
    .mobile-hours {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--gray);
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    /* Анимация появления ссылок */
    .nav-menu.active .nav-link {
        animation: slideInRight 0.5s ease-out forwards;
        opacity: 0;
        transform: translateX(50px);
    }
    
    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .mobile-social { animation-delay: 0.5s; }
    
    /* Блокировка скролла при открытом меню */
    body.menu-open {
        overflow: hidden;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Декоративный элемент для мобильного меню */
.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-menu.active {
        right: 0;
    }
}
/* ===== CATALOG STYLES ===== */

/* Шапка каталога */
.catalog-header {
    padding: 6rem 5% 5rem;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 58%),
        linear-gradient(180deg, var(--black-light) 0%, #111111 42%, var(--black) 88%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.catalog-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0), var(--black));
    pointer-events: none;
    z-index: 1;
}

.catalog-hero {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.catalog-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.catalog-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.catalog-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Категории */
.categories-section {
    padding: 5rem 5%;
    background: var(--black);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.category-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-count {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Управление каталогом */
.all-products-section {
    background: var(--black);
    padding-top: 1rem;
    padding-bottom: 5rem;
    position: relative;
}

.all-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.28), transparent);
    pointer-events: none;
}

.catalog-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 5%;
}

.catalog-controls .catalog-page-title {
    grid-column: 2;
    justify-self: center;
    text-align: center;
    margin: 0;
    width: max-content;
}

.catalog-controls .sorting {
    grid-column: 3;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.sorting-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-width: 220px;
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
}

.sorting-label i {
    color: var(--gold);
    font-size: 0.8rem;
}

.sort-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 220px;
}

.sort-select,
.sorting select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.98) 0%, rgba(12, 12, 12, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--white);
    padding: 0.85rem 2.8rem 0.85rem 1.25rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 220px;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sort-select-icon {
    position: absolute;
    right: 1.1rem;
    pointer-events: none;
    color: var(--gold);
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.sort-select:hover,
.sorting select:hover {
    border-color: rgba(212, 175, 55, 0.75);
    transform: translateY(-1px);
}

.sort-select:focus,
.sorting select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.18),
        0 12px 30px rgba(212, 175, 55, 0.12);
}

.sort-select-wrap:focus-within .sort-select-icon {
    transform: rotate(180deg);
}

.sort-select option {
    background: #141414;
    color: var(--white);
}

/* Сетка каталога */
.catalog-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.product-card .product-category {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover,
.page-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.next-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.next-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.page-dots {
    color: var(--gray);
    padding: 0 1rem;
}

/* Фильтры */
.catalog-filters {
    position: fixed;
    top: 150px;
    left: 5%;
    width: 280px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    z-index: 100;
    backdrop-filter: blur(10px);
    display: none; /* Пока скрываем, покажем когда понадобится */
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.clear-filters {
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.clear-filters:hover {
    opacity: 0.8;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.filter-checkbox:hover {
    color: var(--white);
}

.filter-checkbox input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.filter-checkbox input:checked + .checkmark {
    background: var(--gold);
}

.filter-checkbox input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--black);
    font-weight: bold;
    font-size: 12px;
}

.price-range {
    padding: 1rem 0;
}

.price-slider {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA каталога */
.catalog-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
}

.catalog-cta .cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Адаптивность каталога */
@media (max-width: 1024px) {
    .catalog-filters {
        display: none; /* На планшетах и телефонах скрываем боковые фильтры */
    }
    
    .catalog-controls {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
    }

    .catalog-controls .catalog-page-title {
        grid-column: 1;
        width: 100%;
    }

    .catalog-controls .sorting {
        grid-column: 1;
        justify-self: center;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .sort-select-wrap {
        width: 100%;
    }

    .sort-select,
    .sorting select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .catalog-title {
        font-size: 2.5rem;
    }
    
    .catalog-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .catalog-title {
        font-size: 2rem;
    }
    
    .catalog-subtitle {
        font-size: 1rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}
/* ===== CART WIDGET ===== */
.cart-widget {
    position: relative;
    padding: 0.5rem 1rem !important;
    margin-left: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.cart-widget:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black-light);
}

.cart-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black-light);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid var(--gold);
    z-index: 1000;
}

.cart-widget:hover .cart-tooltip {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

/* Для мобильных - адаптируем корзину */
@media (max-width: 768px) {
    .cart-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background: var(--gold);
        color: var(--black);
        border: none;
        padding: 1rem !important;
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
        margin-left: 0;
    }
    
    .cart-count {
        top: -5px;
        right: -5px;
        border-color: var(--gold);
    }
    
    .cart-tooltip {
        display: none;
    }
}
/* ===== FIXED CONTAINER PADDING ===== */
.luxury-nav {
    padding: 2rem 5% !important; /* Используем !important чтобы перекрыть другие стили */
}

.luxury-header {
    padding: 0 5% !important;
}

.products-section,
.story-section,
.order-section,
.catalog-header,
.categories-section,
.all-products-section,
.catalog-cta,
.luxury-footer {
    padding-left: 5% !important;
    padding-right: 5% !important;
}

/* Контейнер для центрирования контента */
.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Применим к основным секциям */
.products-section > .section-header,
.products-grid,
.story-container,
.order-steps,
.order-cta,
.catalog-controls,
.catalog-grid,
.categories-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Для шапки каталога */
.catalog-hero {
    max-width: 1400px;
    margin: 0 auto;
}

/* Для навигации внутри контейнера */
.luxury-nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
}
/* ===== LUXURY GOLD PARTICLES ===== */
.gold-particle {
    position: fixed;
    background: transparent;
    z-index: -1;
    pointer-events: none;
}

#particle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -150px;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.1) 30%,
        transparent 70%);
    animation: float-1 25s infinite ease-in-out;
    filter: blur(10px);
}

#particle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -100px;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.05) 40%,
        transparent 80%);
    animation: float-2 30s infinite ease-in-out reverse;
    filter: blur(15px);
}

#particle-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.2) 0%,
        rgba(212, 175, 55, 0.1) 50%,
        transparent 90%);
    animation: float-3 35s infinite ease-in-out;
    filter: blur(8px);
}

/* Добавим еще частиц для Luxury эффекта */
#particle-4 {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 10%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 100%);
    animation: float-4 40s infinite ease-in-out;
    filter: blur(12px);
}

#particle-5 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 20%;
    background: radial-gradient(ellipse, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.03) 60%,
        transparent 100%);
    animation: float-5 28s infinite ease-in-out reverse;
    filter: blur(20px);
}

/* Улучшенные анимации */
@keyframes float-1 {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg); 
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-40px) translateX(30px) rotate(120deg); 
        opacity: 0.5;
    }
    66% { 
        transform: translateY(20px) translateX(-20px) rotate(240deg); 
        opacity: 0.2;
    }
}

@keyframes float-2 {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1); 
    }
    50% { 
        transform: translateY(-60px) translateX(-20px) scale(1.2); 
    }
}

@keyframes float-3 {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-50px) rotate(90deg); }
    50% { transform: translateY(0) rotate(180deg); }
    75% { transform: translateY(50px) rotate(270deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes float-4 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.1;
    }
    25% { 
        transform: translate(30px, -40px) rotate(90deg); 
        opacity: 0.3;
    }
    50% { 
        transform: translate(-20px, -20px) rotate(180deg); 
        opacity: 0.1;
    }
    75% { 
        transform: translate(-30px, 30px) rotate(270deg); 
        opacity: 0.2;
    }
}

@keyframes float-5 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-40px, 40px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Эффект мерцания */
@keyframes shimmer {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.gold-particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.8) 0%,
        transparent 80%);
    border-radius: 50%;
    animation: shimmer 3s infinite alternate;
    mix-blend-mode: overlay;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    #particle-1,
    #particle-2,
    #particle-3,
    #particle-4,
    #particle-5 {
        opacity: 0.3;
        filter: blur(5px);
    }
}
/* ===== LUXURY AK MONOGRAM ===== */
.ak-monogram {
    position: relative;
    margin-right: 20px;
    padding: 5px;
}

.ak-logo {
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
    transition: all 0.4s ease;
    animation: logoFloat 8s ease-in-out infinite;
}

.ak-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.6));
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    33% { 
        transform: translateY(-3px) rotate(0.5deg); 
    }
    66% { 
        transform: translateY(2px) rotate(-0.5deg); 
    }
}

/* Эффект свечения при наведении */
.ak-logo:hover path {
    animation: pathGlow 1.5s ease-in-out infinite;
}

@keyframes pathGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    }
}

/* Для лучшей видимости на темном фоне */
.nav-brand {
    padding: 0;
}
/* style.css - добавьте эти стили */

/* Базовые стили для бургер-меню */
.nav-hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-hamburger:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.menu-overlay {
    display: none;
    transition: opacity 0.3s ease;
}

.mobile-social {
    display: none;
}

/* Анимация иконки бургера */
.nav-hamburger i {
    transition: transform 0.3s ease;
}

/* Убедитесь, что меню скрыто на мобильных по умолчанию */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideIn 0.4s ease forwards;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* ===== CART PAGE STYLES ===== */
.cart-section {
    padding: 4rem 5% 8rem;
    background: var(--black);
    min-height: 70vh;
}

.cart-container {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start; /* КРИТИЧЕСКИ ВАЖНО для sticky */
}

@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
}
/* Фикс для блока итогов - гарантированная работа sticky */
.cart-summary {
    position: relative;
    height: 100%;
}

@media (min-width: 1025px) {
    .cart-summary {
        position: sticky;
        top: 100px;
        align-self: start;
    }
    
    .summary-card {
        position: relative;
        top: 0;
    }
}

.cart-items {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-item {
    display: grid;
    grid-template-columns: 260px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 260px;
    aspect-ratio: 956 / 1280;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    isolation: isolate;
}

.cart-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
}

.cart-item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cart-item-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.quantity-input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #ff4444;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.cart-empty h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cart-empty p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.summary-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    transition: top 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

/* Стилизация скроллбара для summary-card */
.summary-card::-webkit-scrollbar {
    width: 4px;
}

.summary-card::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.summary-card::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.summary-card::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--gray);
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.discount {
    color: #2E8B57;
}

.promo-code {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.promo-code input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 0.8rem 1rem;
    color: var(--white);
}

.promo-code button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.promo-code button:hover {
    background: var(--gold-dark);
}

.checkout-btn {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.secure-checkout {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.delivery-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: static !important; /* Оставляем static */
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Когда корзина пустая - делаем доставку полупрозрачной */
.cart-items:empty ~ .cart-summary .delivery-info {
    opacity: 0.3;
}

.delivery-info h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.delivery-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.recommended-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recommended-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.recommended-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.recommended-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.recommended-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.recommended-item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 956 / 1280;
    object-fit: cover;
    object-position: center;
}

.recommended-info {
    padding: 1rem;
}

.recommended-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.recommended-info .price {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.btn-add-recommended {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-recommended:hover {
    background: var(--gold);
    color: var(--black);
}

/* Стили для формы заказа */
.order-form-section {
    padding: 4rem 5% 8rem;
    background: var(--black-light);
}

.order-form-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.payment-methods {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--gray);
}

.payment-method:hover {
    color: var(--white);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
}

.success-icon {
    font-size: 4rem;
    color: #2E8B57;
    text-align: center;
    margin-bottom: 1.5rem;
}

.order-details-preview {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .success-actions {
        flex-direction: column;
    }
}

/* Анимации */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item {
    animation: slideInUp 0.3s ease-out;
}

/* Стили для корзины в навигации */
.cart-widget {
    position: relative;
    padding: 0.5rem 1rem !important;
    margin-left: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.cart-widget:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black-light);
}

.cart-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black-light);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid var(--gold);
    z-index: 1000;
}

.cart-widget:hover .cart-tooltip {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

/* Для мобильных - адаптируем корзину */
@media (max-width: 768px) {
    .cart-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background: var(--gold);
        color: var(--black);
        border: none;
        padding: 1rem !important;
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
        margin-left: 0;
    }
    
    .cart-count {
        top: -5px;
        right: -5px;
        border-color: var(--gold);
    }
    
    .cart-tooltip {
        display: none;
    }
}
/* ===== IMPROVED CATALOG STYLES ===== */

/* Улучшенные категории */
.category-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.9);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.2);
}

/* Улучшенные карточки товаров */
.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
}

.product-category {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.3;
}

.product-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Рейтинг */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.product-rating span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Кнопка заказа */
.btn-order {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Стили для пагинации */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(.active):not(:disabled) {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.pagination-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prev-btn,
.next-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
}

.prev-btn:hover:not(:disabled),
.next-btn:hover:not(:disabled) {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.prev-btn:disabled,
.next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--gray);
    color: var(--gray);
}

.page-dots {
    color: var(--gray);
    padding: 0 1rem;
}

/* Страницы товаров */
.products-page {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.products-page.active {
    display: grid;
}

/* Индикатор товаров на странице */
.page-info {
    text-align: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Быстрая навигация по категориям */
#categories {
    scroll-margin-top: 100px;
}

.all-products-section#all-products {
    scroll-margin-top: 90px;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.category-filter-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-filter-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.category-filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Адаптивность */
@media (max-width: 768px) {
    .pagination-wrapper {
        gap: 0.5rem;
    }
    
    .pagination-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn,
    .next-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .category-filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pagination-btn {
        width: 35px;
        height: 35px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* Дополнительные стили для каталога */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-filter-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-filter-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.category-filter-btn.active {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.page-info {
    text-align: center;
    margin: 1.5rem 0;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    min-height: 30px;
}

.page-info-text {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
}

.no-products {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    color: var(--gray);
    font-size: 1.2rem;
}

.no-products i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.prev-btn,
.next-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover:not(:disabled),
.next-btn:hover:not(:disabled) {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.prev-btn:disabled,
.next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(.active) {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.pagination-btn.active {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.page-dots {
    color: var(--gray);
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
}

/* Анимация появления товаров */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pages-wrapper .products-grid {
    animation: fadeIn 0.5s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .category-filters {
        gap: 0.5rem;
    }
    
    .category-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .pagination-btn,
    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }
    
    .page-info {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sort-select,
    .sorting select {
        min-width: 0;
    }

    .catalog-controls {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .catalog-controls .catalog-page-title {
        grid-column: 1;
        font-size: 2.5rem;
    }

    .catalog-controls .sorting {
        grid-column: 1;
        justify-self: center;
        align-items: center;
        width: 100%;
    }
}
/* Добавить эти стили в конец вашего style.css файла */

/* Адаптивные стили для бургер-меню */
@media (max-width: 1024px) {
    .luxury-nav {
        position: relative;
        z-index: 100;
    }
    
    .brand-text h1 {
        font-size: 1.5rem;
    }
    
    .brand-text p {
        font-size: 0.8rem;
    }
}

/* Стили для счетчика корзины в мобильном меню */
.cart-count {
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Анимация для иконки бургера */
.nav-hamburger i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-hamburger.active i {
    transform: rotate(180deg);
}

/* Стили для активной ссылки в мобильном меню */
.nav-menu.active .nav-link.active {
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}

/* Улучшение читаемости на мобильных */
@media (max-width: 768px) {
    .section-description,
    .product-description,
    .footer-content p {
        line-height: 1.6;
    }
    
    h1, h2, h3, h4 {
        line-height: 1.3;
    }
}

/* Оптимизация изображений для мобильных */
@media (max-width: 768px) {
    .product-image {
        height: 250px;
    }
    
    .hero-image {
        height: 300px;
    }
}

/* Адаптивные отступы */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .story-section,
    .products-section,
    .order-section {
        padding: 3rem 1rem;
    }
    
    .luxury-footer {
        padding: 2rem 1rem;
    }
}

/* Стили для категорий в каталоге на мобильных */
@media (max-width: 768px) {
    .category-card {
        min-height: 200px;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .catalog-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
        padding: 1rem;
    }
}

/* Стили для пагинации на мобильных */
@media (max-width: 768px) {
    .pagination-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .page-dots {
        display: none;
    }
}

/* Улучшение форм на мобильных */
@media (max-width: 480px) {
    input, select, textarea {
        padding: 0.8rem;
        font-size: 16px; /* Предотвращает зум на iOS */
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

/* Оптимизация модальных окон для мобильных */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .quick-view-content {
        grid-template-columns: 1fr;
    }
}

/* Стили для кнопок на мобильных */
@media (max-width: 768px) {
    .btn-gold, .btn-outline, .btn-order {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
    
    .btn-order i {
        margin-left: 0.5rem;
    }
}

/* Анимация появления элементов */
@media (max-width: 1024px) {
    .product-card {
        animation: fadeInUp 0.5s ease forwards;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Предотвращение скролла на iOS при открытом меню */
html.menu-open,
html.menu-open body {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* Анимации для корзины */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Уведомления корзины */
.cart-notification {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Стили для кнопок управления */
.quantity-btn {
    cursor: pointer;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.remove-item {
    cursor: pointer;
    transition: all 0.2s;
    padding: 8px 12px;
    border-radius: 5px;
}

.remove-item:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.quantity-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    width: 50px;
    color: white;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Скрыть текст "Удалить" на мобильных */
@media (max-width: 768px) {
    .remove-text {
        display: none;
    }
}

/* Итоговая цена для каждого товара */
.cart-item-total {
    color: var(--gold);
    font-weight: 600;
    margin-top: 5px;
}

/* Стили для изображений товаров */
.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #1a1a1a;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Карточка товара - ТЕМНЫЙ СТИЛЬ */
.product-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(193, 154, 91, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(193, 154, 91, 0.4);
}

/* Особый стиль для избранных товаров */
.product-card.featured {
    background: linear-gradient(135deg, #333333 0%, #222222 100%);
    border: 2px solid rgba(193, 154, 91, 0.4);
    box-shadow: 0 10px 35px rgba(193, 154, 91, 0.2);
}

.product-card.featured:hover {
    box-shadow: 0 20px 45px rgba(193, 154, 91, 0.3);
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.product-description {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37; /* Золотой цвет для темного фона */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.product-category {
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0;
    color: #ffffff;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #c19a5b 0%, #d4af37 100%);
    color: #1a1a1a;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* Цвета для разных типов бейджей на темном фоне */
.product-badge[style*="Хит"],
.product-badge[style*="Хит продаж"] {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #1a1a1a;
}

.product-badge[style*="Новинка"] {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    color: white;
}

.product-badge[style*="Эксклюзив"],
.product-badge[style*="Премиум"] {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #1a1a1a;
}

.product-badge[style*="Выбор Аруси"] {
    background: linear-gradient(135deg, #ff4500 0%, #dc143c 100%);
    color: white;
}

.product-badge[style*="Рекомендуем"] {
    background: linear-gradient(135deg, #00ced1 0%, #20b2aa 100%);
    color: white;
}

.product-badge[style*="Любимое"] {
    background: linear-gradient(135deg, #ba55d3 0%, #9932cc 100%);
    color: white;
}

.product-badge[style*="Натуральный"] {
    background: linear-gradient(135deg, #90ee90 0%, #3cb371 100%);
    color: #1a1a1a;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.quick-view {
    background: rgba(212, 175, 55, 0.9);
    color: #1a1a1a;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.quick-view:hover {
    background: #d4af37;
    color: #1a1a1a;
    border-color: #d4af37;
    transform: scale(1.05);
}

.product-rating {
    color: #ffd700;
    margin: 8px 0;
    font-size: 14px;
}

.product-rating span {
    color: #b8b8b8;
    font-size: 12px;
    margin-left: 5px;
}

.btn-order {
    background: linear-gradient(135deg, #d4af37 0%, #c19a5b 100%);
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-order:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.7);
    color: #1a1a1a;
}

.btn-order i {
    font-size: 14px;
}

/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .product-image {
        height: 180px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Исправления для меню навигации */

/* Убедимся, что меню всегда видимо на десктопе */
@media (min-width: 1025px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        overflow: visible !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
    
    .nav-hamburger {
        display: none !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
    
    .mobile-social {
        display: none !important;
    }
    
    /* Стили для десктопного меню */
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
        border-bottom: none;
        position: relative;
        display: inline-block;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
}

/* На мобильных устройствах меню должно быть фиксированным и скрытым по умолчанию */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 2rem;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--gold);
        overflow-y: auto;
        display: flex !important;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.95);
        z-index: 999;
        backdrop-filter: blur(10px);
    }
    
    .menu-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }
    
    .nav-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
        cursor: pointer;
        z-index: 1001;
        transition: all 0.3s ease;
    }
    
    .nav-hamburger:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.4);
        transform: translateY(-2px);
    }
    
    .nav-hamburger i {
        font-size: 1.5rem;
        color: var(--gold);
        transition: transform 0.3s ease;
    }
    
    .nav-hamburger.active i {
        transform: rotate(90deg);
    }
    
    /* Блокировка скролла при открытом меню */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* Убедимся, что ссылки меню всегда видны */
.nav-link {
    color: var(--white) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: color 0.3s ease !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link span {
    color: var(--gold) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

/* Корзина в навигации */
.cart-widget {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.cart-widget:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black-light);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.quantity-input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    /* Убираем стрелки вверх/вниз */
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}

/* Убираем стрелки для всех браузеров */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

/* Добавить в стили для корректного отображения доставки */
.delivery-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    /* Убираем sticky из delivery-info */
    position: static !important;
}
/* Добавьте в конец вашего style.css */

/* Исправления для корзины */
.summary-card {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Убираем стрелки из полей ввода количества */
.quantity-input {
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type="number"] {
    -moz-appearance: textfield;
}

/* Стили для пустой корзины */
.cart-empty {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Стили для доставки при пустой корзине */
.delivery-info {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.delivery-info:not(:has(~ .summary-row .cart-items:empty)) {
    opacity: 1;
}

/* Анимация удаления товаров */
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.cart-item.removing {
    animation: slideOutRight 0.3s ease forwards;
}

/* Стили для кнопок управления */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Адаптивность для корзины */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 180px 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .cart-item-image {
        width: 180px;
    }
    
    .cart-item-controls {
        grid-column: 1 / -1;
        justify-content: space-between;
    }
    
    .remove-text {
        display: none;
    }
}

/* Фикс для поля ввода количества */
.quantity-input[type="text"] {
    background: transparent;
    border: none;
    color: var(--white);
    text-align: center;
    width: 40px;
    font-size: 1rem;
    padding: 0;
}

/* Улучшение внешнего вид карточки итогов */
.summary-card::-webkit-scrollbar {
    width: 4px;
}

.summary-card::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.summary-card::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}
/* ========== СТИЛИ ДЛЯ МОДАЛЬНОГО ОКНА КОРЗИНЫ ========== */

/* Контейнер для кнопок в модалке */
.cart-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Первая кнопка - "Перейти в корзину" */
.cart-actions .btn-gold {
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: var(--black);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cart-actions .btn-gold:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Вторая кнопка - "Продолжить покупки" */
.cart-actions .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.cart-actions .btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* Чтобы кнопки были одинаковой ширины */
.cart-actions .btn-gold,
.cart-actions .btn-outline {
    min-width: 200px;
}

/* Блок с информацией о корзине */
.cart-preview {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-preview p {
    color: var(--gray);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cart-preview i {
    color: var(--gold);
    font-size: 1rem;
}

/* Для мобильных телефонов */
@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cart-actions .btn-gold,
    .cart-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 1.5rem;
        min-width: auto;
    }
    
    .cart-preview {
        padding: 1rem;
        margin-top: 1rem;
    }
}
/* ========== СТИЛИ ДЛЯ КНОПОК НА ВСЁМ САЙТЕ ========== */

/* 1. Кнопки в модалке корзины на главной странице */
/* (Когда добавляешь товар - появляется окно) */
.cart-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Золотая кнопка "Перейти в корзину" */
.cart-actions .btn-gold {
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: var(--black);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    min-width: 200px;
}

.cart-actions .btn-gold:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Чёрная кнопка "Продолжить покупки" */
.cart-actions .btn-outline {
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    min-width: 200px;
}

.cart-actions .btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* 2. Кнопки в форме оформления заказа в корзине */
.form-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Чёрная кнопка "Вернуться в корзину" */
.form-actions .btn-outline {
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    flex: 1;
    justify-content: center;
}

.form-actions .btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* Золотая кнопка "Подтвердить заказ" */
.form-actions .btn-gold {
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: var(--black);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    flex: 1;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.form-actions .btn-gold:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* 3. Кнопки в окне "Заказ оформлен" */
.success-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Золотая кнопка "На главную" */
.success-actions .btn-gold {
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: var(--black);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    min-width: 200px;
}

.success-actions .btn-gold:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Чёрная кнопка "Распечатать заказ" */
.success-actions .btn-outline {
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    min-width: 200px;
}

.success-actions .btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* Информация о корзине в модалке */
.cart-preview {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-preview p {
    color: var(--gray);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cart-preview i {
    color: var(--gold);
    font-size: 1rem;
}

/* Для телефонов */
@media (max-width: 768px) {
    .cart-actions,
    .form-actions,
    .success-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cart-actions .btn-gold,
    .cart-actions .btn-outline,
    .form-actions .btn-outline,
    .form-actions .btn-gold,
    .success-actions .btn-gold,
    .success-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 1.5rem;
        min-width: auto;
    }
    
    .cart-preview {
        padding: 1rem;
        margin-top: 1rem;
    }
}
/* ========== МИНИ-УВЕДОМЛЕНИЕ ПРИ ДОБАВЛЕНИИ В КОРЗИНУ ========== */

.mini-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2E8B57;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    max-width: 300px;
}

.mini-notification i {
    font-size: 1.2rem;
    color: #90EE90;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.mini-notification.hiding {
    animation: fadeOut 0.5s ease forwards;
}

/* Для мобильных */
@media (max-width: 768px) {
    .mini-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        justify-content: center;
    }
}
.summary-card {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}
/* Отключаем sticky ТОЛЬКО на мобильных */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr !important;
    }
    .cart-summary,
    .summary-card {
        position: relative !important;
        top: 0 !important;
    }
}

/* А на ноутбуках (от 769px до 1024px) - sticky РАБОТАЕТ! */
@media (min-width: 769px) and (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 2fr 1fr !important;
    }
    .cart-summary {
        position: sticky !important;
        top: 100px !important;
    }
    .summary-card {
        position: sticky !important;
        top: 100px !important;
    }
}
/* ЕДИНСТВЕННЫЙ ПРАВИЛЬНЫЙ МЕДИА-ЗАПРОС */
@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 2fr 1fr !important;
    }
    .cart-summary,
    .summary-card {
        position: sticky !important;
        top: 100px !important;
    }
}

@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr !important;
    }
    .cart-summary,
    .summary-card {
        position: relative !important;
        top: 0 !important;
    }
}
/* ===== БАСТУРМА РАЗДЕЛ (скопирован со стилями муки) ===== */
.basturma-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}

.basturma-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.basturma-section .section-subtitle {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.basturma-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.basturma-section .section-description {
    color: var(--gray);
    font-size: 1.1rem;
}

.basturma-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.basturma-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.basturma-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.basturma-card.featured {
    border: 2px solid var(--gold);
    position: relative;
}

.basturma-card.featured::before {
    content: '⭐ ХИТ ОПТА';
    position: absolute;
    top: 15px;
    right: -10px;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.basturma-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.basturma-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basturma-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.basturma-content {
    padding: 1.5rem;
}

.basturma-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.basturma-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.basturma-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basturma-price {
    display: flex;
    flex-direction: column;
}

.basturma-price .price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.basturma-price .price-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-basturma-order {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-basturma-order:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.basturma-section .catalog-btn-container {
    text-align: center;
    margin: 3rem 0 2rem;
}

.basturma-section .text-center {
    text-align: center;
    margin-top: 3rem;
}

/* Адаптив для бастурмы */
@media (max-width: 768px) {
    .basturma-section .section-title {
        font-size: 2.5rem;
    }
    .basturma-products-grid {
        grid-template-columns: 1fr;
    }
    .basturma-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .basturma-section .section-title {
        font-size: 2rem;
    }
    .basturma-image {
        height: 200px;
    }
}
/* Фикс для 4 карточек бастурмы в ряд */
@media (min-width: 1200px) {
    .basturma-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .basturma-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .basturma-products-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== КРАСИВЫЕ КНОПКИ КАТАЛОГА ===== */
.catalog-main-btn {
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
}

.catalog-main-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4) !important;
}

.catalog-main-btn i {
    transition: transform 0.3s ease;
}

.catalog-main-btn:hover i {
    transform: translateX(5px);
}

.catalog-main-btn i:first-child {
    transform: none;
}

.catalog-main-btn:hover i:first-child {
    transform: scale(1.1);
}

/* Адаптив для кнопок */
@media (max-width: 768px) {
    .catalog-main-btn {
        padding: 1.2rem 2rem !important;
        font-size: 1.2rem !important;
        min-width: 200px !important;
    }
    
    .catalog-main-btn i {
        font-size: 1.3rem !important;
    }
    
    .products-buttons-grid {
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .catalog-main-btn {
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
        min-width: 160px !important;
    }
    
    .catalog-main-btn i {
        font-size: 1.1rem !important;
    }
}
/* ===== ДВА БОЛЬШИХ ОКНА-КНОПКИ ===== */
.products-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.product-category-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 320px;
    flex: 1;
    max-width: 400px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.product-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-category-card:hover::before {
    opacity: 1;
}

.product-category-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 30px 50px rgba(212, 175, 55, 0.25);
}

.category-card-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.product-category-card:hover .category-card-icon {
    transform: scale(1.15);
}

.category-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.category-card-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
}

.category-card-btn {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.category-card-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    gap: 1.2rem;
}

.partnership-btn-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.partnership-main-btn {
    padding: 1.2rem 3rem !important;
    font-size: 1.2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    border-width: 2px !important;
}

/* Адаптив */
@media (max-width: 900px) {
    .products-showcase {
        gap: 1.5rem;
    }
    
    .product-category-card {
        min-width: 280px;
        padding: 2rem 1.5rem;
    }
    
    .category-card-title {
        font-size: 1.8rem;
    }
    
    .category-card-icon {
        font-size: 4rem;
    }
}

@media (max-width: 650px) {
    .products-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .product-category-card {
        max-width: 100%;
        width: 100%;
    }
}
/* Стили для кнопки "Связаться" внутри модалки */
.catalog-modal-info .btn-order {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    text-decoration: none;
    padding: 0.8rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}/* Простые большие кнопки */
#openFlourCatalogBtnMain:hover,
#openBasturmaCatalogBtnMain:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #e6c84a, #c49f2e) !important;
}

#openFlourCatalogBtnMain:active,
#openBasturmaCatalogBtnMain:active {
    transform: translateY(0);
}
/* ===== ДВЕ БОЛЬШИЕ КАРТОЧКИ-КНОПКИ ===== */
.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.product-category-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    padding: 2.5rem 3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
}

.product-category-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #222222 0%, #141414 100%);
}

.card-icon {
    font-size: 4rem;
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.product-category-card:hover .card-icon {
    transform: scale(1.15);
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin: 0;
    transition: color 0.3s ease;
}

.product-category-card:hover .card-title {
    color: #D4AF37;
}

/* Кнопка опт сотрудничества */
.partnership-btn-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.partnership-main-btn {
    padding: 1rem 3rem !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    border-radius: 50px !important;
}

/* Адаптив */
@media (max-width: 768px) {
    .product-category-card {
        padding: 1.8rem 2rem;
        gap: 1rem;
    }
    
    .card-icon {
        font-size: 2.8rem;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .product-category-card {
        padding: 1.5rem 1.5rem;
        gap: 0.8rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
}
/* ===== ФИНАЛЬНЫЕ СТИЛИ ДЛЯ КАРТОЧЕК-КНОПОК (ПЕРЕЗАПИСЬ) ===== */
.products-showcase {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.product-category-card {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    width: 100% !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 50px !important;
    padding: 2.5rem 3rem !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    text-align: center !important;
    box-shadow: none !important;
    min-width: auto !important;
    max-width: none !important;
    backdrop-filter: none !important;
    position: relative !important;
    overflow: visible !important;
}

.product-category-card:hover {
    transform: translateY(-5px) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.3) !important;
    background: linear-gradient(135deg, #222222 0%, #141414 100%) !important;
}

.product-category-card .card-icon {
    font-size: 4rem !important;
    color: #D4AF37 !important;
    transition: transform 0.3s ease !important;
    margin: 0 !important;
}

.product-category-card:hover .card-icon {
    transform: scale(1.15) !important;
}

.product-category-card .card-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

.product-category-card:hover .card-title {
    color: #D4AF37 !important;
}

/* Убираем псевдоэлементы, которые мешают */
.product-category-card::before,
.product-category-card::after {
    display: none !important;
}

/* Кнопка опт сотрудничества */
.partnership-btn-wrapper {
    text-align: center !important;
    margin-top: 3rem !important;
}

.partnership-main-btn {
    padding: 1rem 3rem !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    border-radius: 50px !important;
}

@media (max-width: 768px) {
    .product-category-card {
        padding: 1.8rem 2rem !important;
        gap: 1rem !important;
    }
    
    .product-category-card .card-icon {
        font-size: 2.8rem !important;
    }
    
    .product-category-card .card-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .product-category-card {
        padding: 1.5rem 1.5rem !important;
        gap: 0.8rem !important;
    }
    
    .product-category-card .card-icon {
        font-size: 2rem !important;
    }
    
    .product-category-card .card-title {
        font-size: 1.4rem !important;
    }
}
/* ===== ГОРИЗОНТАЛЬНЫЕ ДЛИННЫЕ КАРТОЧКИ ===== */
.products-showcase {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.product-category-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    width: 100% !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 50px !important;
    padding: 2rem 3rem !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    text-align: center !important;
    box-shadow: none !important;
    min-width: 280px !important;
    flex: 1 !important;
}

.product-category-card:hover {
    transform: translateY(-5px) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.3) !important;
    background: linear-gradient(135deg, #222222 0%, #141414 100%) !important;
}

.product-category-card .card-icon {
    font-size: 3.5rem !important;
    color: #D4AF37 !important;
    transition: transform 0.3s ease !important;
    margin: 0 !important;
}

.product-category-card:hover .card-icon {
    transform: scale(1.15) !important;
}

.product-category-card .card-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

.product-category-card:hover .card-title {
    color: #D4AF37 !important;
}

/* Убираем псевдоэлементы */
.product-category-card::before,
.product-category-card::after {
    display: none !important;
}

/* Кнопка опт сотрудничества */
.partnership-btn-wrapper {
    text-align: center !important;
    margin-top: 3rem !important;
}

.partnership-main-btn {
    padding: 1rem 3rem !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    border-radius: 50px !important;
}

/* Адаптив — на мобильных становятся вертикальными */
@media (max-width: 768px) {
    .products-showcase {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .product-category-card {
        padding: 1.5rem 2rem !important;
        gap: 1.5rem !important;
        min-width: auto !important;
        width: 100% !important;
    }
    
    .product-category-card .card-icon {
        font-size: 2.5rem !important;
    }
    
    .product-category-card .card-title {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 480px) {
    .product-category-card {
        padding: 1.2rem 1.5rem !important;
        gap: 1rem !important;
    }
    
    .product-category-card .card-icon {
        font-size: 2rem !important;
    }
    
    .product-category-card .card-title {
        font-size: 1.3rem !important;
    }
}
/* ===== ВЕРТИКАЛЬНЫЕ БОЛЬШИЕ КАРТОЧКИ С МЕСТОМ ПОД КАРТИНКУ ===== */
.products-showcase {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.product-category-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.5rem !important;
    width: 100% !important;
    min-height: 380px !important;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 30px !important;
    padding: 2.5rem 2rem !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    text-align: center !important;
    box-shadow: none !important;
    flex: 1 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Место под картинку (потом добавишь) */
.product-category-card .card-image-placeholder {
    width: 100%;
    height: 160px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

.product-category-card .card-image-placeholder i {
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
}

/* Иконка (временная, потом заменишь на картинку) */
.product-category-card .card-icon {
    font-size: 3.5rem !important;
    color: #D4AF37 !important;
    transition: transform 0.3s ease !important;
    margin-bottom: 0.5rem !important;
}

.product-category-card .card-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #FFFFFF !important;
    margin: 0.5rem 0 !important;
    background: none !important;
}

/* Кнопка по центру */
.product-category-card .card-btn {
    background: linear-gradient(45deg, #D4AF37, #B8860B) !important;
    border: none !important;
    padding: 0.8rem 2rem !important;
    border-radius: 40px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #0A0A0A !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    transition: all 0.3s ease !important;
    margin-top: 0.5rem !important;
}

.product-category-card .card-btn i {
    transition: transform 0.3s ease !important;
}

.product-category-card:hover .card-btn {
    transform: translateY(-3px) !important;
    gap: 1rem !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4) !important;
}

.product-category-card:hover .card-btn i {
    transform: translateX(5px) !important;
}

/* Эффекты при наведении */
.product-category-card:hover {
    transform: translateY(-8px) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.25) !important;
    background: linear-gradient(145deg, #222222 0%, #141414 100%) !important;
}

.product-category-card:hover .card-icon {
    transform: scale(1.1) !important;
}

.product-category-card:hover .card-title {
    color: #D4AF37 !important;
}

/* Убираем лишние псевдоэлементы */
.product-category-card::before,
.product-category-card::after {
    display: none !important;
}

/* Кнопка опт сотрудничества */
.partnership-btn-wrapper {
    text-align: center !important;
    margin-top: 3rem !important;
}

.partnership-main-btn {
    padding: 1rem 3rem !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    border-radius: 50px !important;
}

/* Адаптив */
@media (max-width: 900px) {
    .products-showcase {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .product-category-card {
        min-height: 350px !important;
        max-width: 400px !important;
    }
}

@media (max-width: 480px) {
    .product-category-card {
        min-height: 320px !important;
        padding: 1.8rem 1.5rem !important;
    }
    
    .product-category-card .card-icon {
        font-size: 2.8rem !important;
    }
    
    .product-category-card .card-title {
        font-size: 1.6rem !important;
    }
    
    .product-category-card .card-btn {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.85rem !important;
    }
}
/* Для муки */
.product-category-card:first-child {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.85)), url('/Foto\ for\ Arusya/#00ced1');
    background-size: cover;
    background-position: center;
}

/* Для деликатесов */
.product-category-card:last-child {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.85)), url('бастурма.jpg');
    background-size: cover;
    background-position: center;
}
/* ===== МОДАЛЬНОЕ ОКНО СВЯЗАТЬСЯ ===== */
.contact-modal-content {
    max-width: 450px;
    padding: 2rem;
}

.contact-modal-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-btn i {
    font-size: 1.8rem;
}

.contact-btn span {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Кнопка звонка */
.call-btn {
    background: linear-gradient(135deg, #2E8B57, #1e5a3a);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 139, 86, 0.4);
}

/* Кнопка оптового сотрудничества */
.wholesale-btn {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.wholesale-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #222, #111);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.contact-note {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    color: var(--gray);
    font-size: 0.85rem;
}

.contact-note i {
    color: var(--gold);
    margin-right: 0.5rem;
}
/* ===== МОДАЛЬНОЕ ОКНО СВЯЗАТЬСЯ ===== */
.contact-modal-content {
    max-width: 450px;
    padding: 2rem;
}

.contact-modal-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-btn i {
    font-size: 1.8rem;
}

.contact-btn span {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.call-btn {
    background: linear-gradient(135deg, #2E8B57, #1e5a3a);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 139, 86, 0.4);
}

.wholesale-btn {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.wholesale-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #222, #111);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.contact-note {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    color: var(--gray);
    font-size: 0.85rem;
}

.contact-note i {
    color: var(--gold);
    margin-right: 0.5rem;
}
/* ===== HERO SECTION - АДАПТИВ КАРТИНКИ ===== */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Главное исправление для картинки */
    .image-frame {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .main-image {
        width: 100%;
        height: auto !important;
        max-height: 350px;
        object-fit: contain !important; /* Вместо cover — картинка не обрезается */
    }
    
    /* Убираем перспективу на мобильных */
    .image-frame {
        transform: none !important;
    }
    
    .image-frame:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .main-image {
        max-height: 250px;
    }
    
    .image-frame {
        max-width: 100%;
    }
}

/* Mobile performance: reduce costly paint/composite effects on phones. */
@media (max-width: 768px) {
    .gold-particle,
    .gold-particle::after,
    .header-overlay,
    .story-section::before,
    .frame-decoration {
        display: none !important;
        animation: none !important;
        filter: none !important;
    }

    .hero-section,
    .story-main-card,
    .image-wrapper,
    .product-category-card,
    .modal-overlay,
    .catalog-modal-content,
    .contact-card,
    .location-card,
    .working-hours,
    .story-cta {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .image-frame,
    .image-wrapper,
    .ak-logo,
    .cart-widget-icon,
    .story-badge {
        transform: none !important;
        animation: none !important;
    }

    .image-overlay {
        transform: none !important;
    }

    .btn-gold:hover,
    .btn-outline:hover,
    .product-category-card:hover,
    .image-frame:hover,
    .image-wrapper:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

@media (prefers-reduced-motion: reduce), (max-width: 768px) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
/* ===== АДАПТИВ КАРТИНКИ АРУСИ В СЕКЦИИ HISTORY ===== */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Картинка Аруси */
    .story-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        transform: none !important;
    }
    
    .image-wrapper img {
        width: 100%;
        height: auto !important;
        max-height: 350px;
        object-fit: contain !important;
        border-radius: 20px;
    }
    
    /* Бейдж с инициалами */
    .image-badge {
        bottom: 15px;
        left: 15px;
        padding: 0.5rem 1rem;
    }
    
    .badge-text {
        font-size: 1.2rem;
    }
    
    .badge-sub {
        font-size: 0.6rem;
    }
    
    /* Цитата */
    .main-quote {
        padding-left: 1rem;
    }
    
    .quote-start {
        font-size: 4rem;
        top: -25px;
        left: -5px;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .quote-sub {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        max-width: 100%;
    }
    
    .image-wrapper img {
        max-height: 250px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}
/* ===== ИСПРАВЛЕНИЕ ДЛЯ КАРТИНОК В МОДАЛЬНЫХ ОКНАХ ===== */
.catalog-modal-image {
    height: 220px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.catalog-modal-item:hover .catalog-modal-image img {
    transform: scale(1.05);
}

/* Если хочешь, чтобы картинки были одинаковой высоты, но не обрезались */
@media (max-width: 768px) {
    .catalog-modal-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .catalog-modal-image {
        height: 160px;
    }
}
.catalog-modal-image {
    height: 220px;
    overflow: hidden;
    background: #1a1a1a;
}

.catalog-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* было cover, стало contain — картинка целиком */
    object-position: center;
    transition: transform 0.3s ease;
}

.catalog-modal-item:hover .catalog-modal-image img {
    transform: scale(1.05);  /* лёгкое увеличение при наведении */
}
/* ФИНАЛЬНЫЙ ПЕРЕЗАПИСЫВАЮЩИЙ БЛОК */
.catalog-modal-image {
    height: 220px !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
}

.catalog-modal-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
}

.catalog-modal-item:hover .catalog-modal-image img {
    transform: scale(1.05) !important;
}
/* ===== КАРТИНКИ В МОДАЛКАХ — ПОЛНОСТЬЮ ВИДНЫ ===== */
.catalog-modal-image {
    height: 220px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* картинка целиком, без обрезания */
    object-position: center;
    transition: transform 0.3s ease;
}

.catalog-modal-item:hover .catalog-modal-image img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .catalog-modal-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .catalog-modal-image {
        height: 180px;
    }
}
/* ===== ЖЕСТКОЕ ПЕРЕОПРЕДЕЛЕНИЕ КАРТИНОК В МОДАЛКАХ ===== */
.modal-overlay .catalog-modal-image {
    height: 260px !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-overlay .catalog-modal-image img {
    width: 100% !important;
    height: 100% !important;
    min-width: auto !important;
    min-height: auto !important;
    object-fit: cover !important;
    object-position: 50% 30% !important;
    transition: transform 0.3s ease !important;
}

.modal-overlay .catalog-modal-item:hover .catalog-modal-image img {
    transform: scale(1.05) !important;
}
/* ===== КАРТИНКИ В МОДАЛКАХ — ФИНАЛ ===== */
.modal-overlay .catalog-modal-image {
    height: 260px !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-overlay .catalog-modal-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 70% !important;  /* 70% — картинка смещена вниз */
    transition: transform 0.3s ease !important;
}

.modal-overlay .catalog-modal-item:hover .catalog-modal-image img {
    transform: scale(1.05) !important;
}
/* ===== КАРТИНКИ В МОДАЛКАХ — ВЕСЬ МЕШОК ВИДЕН ===== */
.modal-overlay .catalog-modal-image {
    height: 260px !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-overlay .catalog-modal-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;  /* картинка целиком */
    object-position: center !important;
    transition: transform 0.3s ease !important;
}

.modal-overlay .catalog-modal-item:hover .catalog-modal-image img {
    transform: scale(1.03) !important;
}
.product-category-card {
    cursor: pointer;
    transition: all 0.4s ease;
}

.product-category-card:hover {
    transform: translateY(-3px);
}

.product-category-card:active {
    transform: translateY(-3px);
}
.product-category-card:hover .card-icon {
    transform: scale(1.1);
}

.product-category-card:hover .card-title {
    color: #FFFFFF;
}
.product-category-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: none !important;
    background: inherit !important;
}

.product-category-card:hover .card-title {
    color: #FFFFFF !important;
}

.product-category-card:hover .card-icon {
    transform: scale(1.05) !important;
    color: #D4AF37 !important;
}

.product-category-card::before,
.product-category-card::after {
    display: none !important;
    opacity: 0 !important;
}
.product-category-card,
.product-category-card:hover,
.product-category-card:active,
.product-category-card:focus {
    transform: none !important;
    box-shadow: none !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    background: inherit !important;
    transition: none !important;
    filter: none !important;
    backdrop-filter: none !important;
}

.product-category-card:hover .card-title {
    color: #FFFFFF !important;
}

.product-category-card:hover .card-icon {
    color: #D4AF37 !important;
}

.product-category-card::before,
.product-category-card::after,
.product-category-card:hover::before,
.product-category-card:hover::after {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
}
/* ===== АНИМАЦИЯ КАРТОЧЕК КАТЕГОРИЙ ===== */
.product-category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-category-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(212, 175, 55, 0.8) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3) !important;
    background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.85)) !important;
}

.product-category-card .card-icon {
    transition: all 0.4s ease !important;
}

.product-category-card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg) !important;
    color: #FFD700 !important;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) !important;
}

.product-category-card .card-title {
    transition: all 0.4s ease !important;
}

.product-category-card:hover .card-title {
    letter-spacing: 5px !important;
    color: #FFFFFF !important;
}
/* Фикс для иконки бургера/крестика */
.nav-hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
}

.nav-hamburger i {
    font-size: 1.6rem !important;
    transition: all 0.3s ease !important;
}

/* Когда меню открыто — иконка не должна смещаться */
.nav-hamburger.active i,
.nav-hamburger i.fa-times {
    transform: rotate(0deg) !important;
}

/* Фикс для позиционирования крестика */
#hamburgerIcon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Фикс для мобильного меню на странице партнерства */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 320px !important;
        height: 100vh !important;
        background: #1a1a1a !important;
        flex-direction: column !important;
        padding: 100px 30px 30px !important;
        transition: right 0.4s ease !important;
        z-index: 1000 !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0,0,0,0.8) !important;
        z-index: 999 !important;
        backdrop-filter: blur(5px) !important;
    }
    
    /* Крестик в бургере */
    .nav-hamburger {
        position: relative !important;
        z-index: 1001 !important;
    }
}
/* ===== ЖЕСТКИЙ ФИКС — БУРГЕР ТОЛЬКО НА МОБИЛЬНЫХ ===== */
@media (min-width: 1025px) {
    /* Скрываем бургер на ноутбуках и десктопах */
    .nav-hamburger {
        display: none !important;
    }
    
    /* Показываем обычное меню */
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        right: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border-left: none !important;
    }
    
    /* Скрываем оверлей */
    .menu-overlay {
        display: none !important;
    }
    
    /* Убираем блокировку скролла */
    body.menu-open {
        overflow: auto !important;
        position: static !important;
    }
}

@media (max-width: 1024px) {
    /* На планшетах и телефонах — показываем бургер */
    .nav-hamburger {
        display: flex !important;
    }
    
    /* Меню скрыто справа */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 320px !important;
        height: 100vh !important;
        background: #1a1a1a !important;
        flex-direction: column !important;
        padding: 100px 30px 30px !important;
        transition: right 0.4s ease !important;
        z-index: 1000 !important;
        display: flex !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.8) !important;
        z-index: 999 !important;
        backdrop-filter: blur(5px) !important;
        display: none !important;
    }
    
    .menu-overlay.active {
        display: block !important;
    }
}

/* Для совсем маленьких экранов (телефоны) */
@media (max-width: 768px) {
    .nav-menu {
        width: 280px !important;
    }
}

/* Каталог: крупные карточки с полным фото */
.all-products-section .pages-wrapper .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 1rem 0 2rem !important;
}

.all-products-section .catalog-product-card {
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.all-products-section .catalog-product-image.product-image {
    position: relative;
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    aspect-ratio: 956 / 1280;
    display: block !important;
    padding: 0;
    background: #141414;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.all-products-section .catalog-product-image.product-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    image-rendering: auto;
}

.all-products-section .catalog-product-card:hover .catalog-product-image img {
    transform: none !important;
}

.all-products-section .catalog-product-card .product-content {
    padding: 1.25rem 1.5rem 1.5rem;
}

.all-products-section .catalog-product-card .product-name {
    font-size: 1.35rem;
}

.all-products-section .catalog-product-card .product-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .all-products-section .pages-wrapper .products-grid {
        max-width: 900px !important;
    }
}

@media (max-width: 768px) {
    .all-products-section .pages-wrapper .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
        max-width: 480px !important;
    }
}

/* Быстрый просмотр */
.quick-view-modal {
    max-width: 900px;
    width: 95%;
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 0.5rem;
}

.quick-view-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(180deg, #1f1f1f 0%, #141414 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.quick-view-image img {
    max-width: 100%;
    max-height: 460px;
    width: auto;
    height: auto;
    object-fit: contain !important;
    object-position: center;
}

.quick-view-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.quick-view-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1rem 0;
}

.quick-view-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .quick-view-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-view-image {
        min-height: 280px;
    }

    .quick-view-image img {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .partnership-btn-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .partnership-btn-wrapper .partnership-main-btn {
        display: flex !important;
        width: 100% !important;
        max-width: 360px;
        justify-content: center !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    .partnership-btn-wrapper .partnership-main-btn:first-of-type {
        margin-bottom: 1.25rem !important;
    }
}

@media (min-width: 1025px) {
    .nav-link.cart-widget {
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        min-width: 52px;
        padding: 0.55rem 1rem !important;
    }

    .nav-link.cart-widget .cart-widget-icon {
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1;
    }

    .nav-link.cart-widget .cart-count {
        top: -6px !important;
        right: -6px !important;
        left: auto !important;
    }
}