/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
    /* Colors */
    --color-dark: #040A0A;
    --color-cyan: #000000;
    --color-magenta: #7D2253;
    --color-pink: #D978AC;
    --color-white: #2d1b3d;
    
    /* Fonts */
    --font-heading: 'Cormorant', serif;
    --font-body: 'Oswald', sans-serif;
    
    /* Spacing */
    --container-padding: 20px;
    --section-padding: 80px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: transparent;
    background-image: url('../images/fon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--color-white);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-white);
    margin-bottom: 40px;
    opacity: 1;
}

.section-description {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--color-white);
    margin-bottom: 50px;
    max-width: 800px;
    opacity: 1;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-cyan);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--color-magenta);
    color: #FFFFFF;
}

.btn-primary:active {
    background-color: var(--color-magenta);
    color: #FFFFFF;
}

.btn-primary:disabled {
    background-color: var(--color-dark);
    border: 1px solid rgba(67, 255, 210, 0.3);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(67, 255, 210, 0.6);
    box-shadow: 0 0 10px rgba(67, 255, 210, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-cyan);
    color: var(--color-dark);
    text-shadow: none;
    box-shadow: 0 0 20px rgba(67, 255, 210, 0.6);
}

.btn-secondary:active {
    background-color: var(--color-cyan);
    color: var(--color-dark);
}

.btn-secondary:disabled {
    background-color: transparent;
    border: 1px solid rgba(67, 255, 210, 0.3);
    color: rgba(67, 255, 210, 0.5);
    cursor: not-allowed;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: transparent;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(67, 255, 210, 0.1);
    transition: transform 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.logo {
    flex-shrink: 0;
}

.header-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 35px);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    display: inline-block;
}

.logo-line1,
.logo-line2 {
    display: block;
}

@media (max-width: 768px) {
    .logo a {
        font-size: clamp(14px, 3.5vw, 18px);
        line-height: 1.1;
        text-align: center;
    }
    
    .logo-line1,
    .logo-line2 {
        display: block;
        line-height: 1.1;
    }
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 20px);
    color: var(--color-cyan);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-cyan);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.header-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon,
.cart-icon {
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s ease;
}

.search-icon:hover,
.cart-icon:hover {
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-cyan);
    color: var(--color-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.phone {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
}

.working-hours {
    font-family: var(--font-body);
    font-size: clamp(11px, 1.1vw, 13px);
    color: var(--color-white);
    opacity: 1;
}

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

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 4px;
}

.social-icon:hover {
    background-color: var(--color-cyan);
    border-color: var(--color-cyan);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover img {
    filter: brightness(0) invert(0);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 12vw, 200px);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 40px);
    color: var(--color-white);
    margin-bottom: 40px;
    opacity: 1;
}

.hero-decorative {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 60px);
    color: rgba(67, 255, 210, 0.2);
    font-style: italic;
    transform: rotate(-5deg);
    z-index: 1;
}

/* ============================================
   CATALOG SECTION
   ============================================ */

.catalog-section {
    position: relative;
    padding: var(--section-padding);
    background: transparent;
    overflow: hidden;
}

.catalog-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(120px, 25vw, 500px);
    color: rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-weight: 300;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.catalog-card {
    background: transparent;
    padding: 30px 20px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.catalog-card:hover {
    transform: translateY(-5px);
}

.catalog-card-title {
    font-family: var(--font-body);
    font-size: clamp(22px, 3.5vw, 36px);
    color: var(--color-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(67, 255, 210, 0.8), 0 0 30px rgba(67, 255, 210, 0.4);
    font-weight: 500;
    letter-spacing: 1px;
}

.catalog-list {
    list-style: none;
    margin-bottom: 30px;
}

.catalog-list li {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--color-white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(67, 255, 210, 0.1);
}

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

/* ============================================
   POPULAR SECTION
   ============================================ */

.popular-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-card {
    background: transparent;
    border: 1px solid rgba(67, 255, 210, 0.1);
    transition: all 0.3s ease;
    overflow: visible;
    width: 100%;
    max-width: 400px;
    min-height: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.product-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
}

.badge-new {
    background-color: var(--color-pink);
    color: var(--color-white);
}

.badge-sale {
    background-color: var(--color-cyan);
    color: var(--color-dark);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-title {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-white);
    padding: 12px 15px 8px;
    text-transform: uppercase;
    line-height: 1.4;
    flex-shrink: 0;
    overflow: visible;
    word-wrap: break-word;
    min-height: 40px;
}

.product-price {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-white);
    padding: 0 15px 12px;
    flex-shrink: 0;
    min-height: 25px;
}

.price-old {
    text-decoration: line-through;
    opacity: 1;
    margin-right: 10px;
}

.price-new {
    color: var(--color-cyan);
}

.product-card .btn {
    margin: auto 15px 15px;
    width: calc(100% - 30px);
    padding: 12px 15px;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: auto;
}

.section-link {
    text-align: center;
    margin-top: 40px;
}

.link-text {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--color-cyan);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

.link-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-cyan);
}

/* ============================================
   HOW TO ORDER SECTION
   ============================================ */

.how-to-order {
    position: relative;
    padding: var(--section-padding);
    background: transparent;
    overflow: hidden;
}

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

.how-to-order-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.how-to-order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-to-order-steps {
    position: relative;
    z-index: 1;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 40px);
    color: var(--color-cyan);
    min-width: 100px;
    text-transform: uppercase;
}

.step-text {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--color-white);
    line-height: 1.6;
    flex: 1;
}

/* ============================================
   SPECIAL OCCASION SECTION
   ============================================ */

.special-occasion {
    padding: var(--section-padding);
    background: transparent;
}

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

.special-list {
    list-style: none;
    margin: 30px 0;
}

.special-list li {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--color-white);
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
}

.special-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-cyan);
    font-size: 24px;
}

.special-occasion-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* ============================================
   QUESTIONS SECTION
   ============================================ */

.questions {
    position: relative;
    padding: var(--section-padding);
    background: transparent;
    overflow: hidden;
}

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

.questions-decorative {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: clamp(30px, 5vw, 100px);
    color: rgba(67, 255, 210, 0.1);
    font-style: italic;
    transform: rotate(-5deg);
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   FORMS
   ============================================ */

.contact-form {
    position: relative;
    z-index: 1;
}

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

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(12px, 1.2vw, 16px);
    color: var(--color-white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--color-dark);
    border: 1px solid var(--color-cyan);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(67, 255, 210, 0.3);
}

.form-input:disabled,
.form-textarea:disabled {
    border-color: rgba(67, 255, 210, 0.3);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

.form-input.error,
.form-textarea.error {
    border-color: #ff0000;
}

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

.form-privacy {
    font-family: var(--font-body);
    font-size: clamp(10px, 1vw, 12px);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.privacy-link {
    color: var(--color-cyan);
    text-decoration: underline;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */

.instagram-section {
    padding: var(--section-padding);
    background: transparent;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    justify-items: center;
}

.instagram-item {
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    margin: 0 auto;
}

.instagram-item img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: transparent;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(67, 255, 210, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 50px);
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-info {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--color-white);
    line-height: 2;
}

.footer-info a {
    color: var(--color-cyan);
    text-decoration: none;
}

.footer-title {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--color-cyan);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(67, 255, 210, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: clamp(10px, 1vw, 12px);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .how-to-order-content,
    .special-occasion-content,
    .questions-content {
        grid-template-columns: 1fr;
    }
    
    .how-to-order-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(40px, 15vw, 100px);
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .special-occasion-gallery {
        grid-template-columns: 1fr;
    }
    
    .instagram-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .header {
        padding: 6px 0;
    }
    
    .header-top {
        padding: 0 10px;
    }
    
    .logo a {
        font-size: 16px;
    }
    
    .cart-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .hero {
        min-height: 45vh;
        padding: 25px 0;
    }
    
    .hero-title {
        font-size: clamp(28px, 9vw, 50px);
    }
    
    .hero-subtitle {
        font-size: clamp(13px, 3vw, 18px);
    }
    
    .catalog-grid {
        gap: 15px;
    }
    
    .catalog-card {
        padding: 20px 15px;
    }
    
    .catalog-card-title {
        font-size: clamp(16px, 3.5vw, 22px);
    }
    
    .products-grid {
        gap: 15px;
    }
    
    .product-image {
        min-height: 220px;
    }
    
    .section-title {
        font-size: clamp(24px, 6.5vw, 42px);
    }
    
    .mobile-menu {
        width: 85%;
        max-width: 300px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: clamp(11px, 2.5vw, 15px);
    }
    
    .how-to-order-image {
        height: 200px;
    }
    
    .special-occasion-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .instagram-item img {
        height: 250px;
    }
}

/* ============================================
   MOBILE MENU (Hamburger)
   ============================================ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #000000;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--color-cyan);
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-list li {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: #333333;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(67, 255, 210, 0.1);
    color: var(--color-cyan);
}

.mobile-menu-contact {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.mobile-menu-contact-item {
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 14px;
}

.mobile-menu-contact-item a {
    color: var(--color-cyan);
    text-decoration: none;
}

.mobile-menu-contact-item p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    margin-top: 5px;
}

.mobile-menu-social {
    display: flex;
    gap: 15px;
    padding-top: 20px;
}

.mobile-menu-social a {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
    background: var(--color-cyan);
}

.mobile-menu-social img {
    width: 24px;
    height: 24px;
    filter: brightness(0);
}

.mobile-menu-social a:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
        order: 1;
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        background-color: #000000;
    }
    
    .nav {
        display: none;
    }
    
    .header-top {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        margin-bottom: 0;
        padding: 0 10px;
    }
    
    .logo {
        order: 2;
        flex: 1;
        text-align: center;
        padding: 0 10px;
    }
    
    .logo a {
        font-size: 18px;
        line-height: 1.1;
        display: block;
        font-weight: 400;
    }
    
    .logo-line1,
    .logo-line2 {
        display: block;
        line-height: 1.1;
    }
    
    .header-right {
        order: 3;
        flex-direction: row;
        align-items: center;
        gap: 0;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .header-contact-info {
        display: none;
    }
    
    .header-icons {
        gap: 0;
        display: flex;
        align-items: center;
    }
    
    .search-icon {
        display: none;
    }
    
    .cart-icon {
        padding: 8px;
    }
    
    .cart-icon svg {
        width: 24px;
        height: 24px;
        stroke: #000000;
    }
    
    .cart-count {
        top: 2px;
        right: 2px;
        width: 18px;
        height: 18px;
        font-size: 11px;
        background-color: #000000;
        color: #ffffff;
        border: none;
    }
    
    .header-bottom {
        display: none;
    }
    
    .header {
        padding: 8px 0;
        background-color: transparent;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 50vh;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: clamp(32px, 10vw, 60px);
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 3.5vw, 20px);
        margin-bottom: 25px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    /* Catalog Section Mobile */
    .catalog-section {
        padding: 40px 0;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .catalog-card {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .catalog-card-title {
        font-size: clamp(18px, 4vw, 24px);
        margin-bottom: 20px;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-card {
        padding: 0;
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 400px;
    }
    
    .product-image {
        width: 100%;
        height: 280px;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-title {
        font-size: clamp(16px, 3.5vw, 20px);
        margin: 15px 0 10px;
    }
    
    .product-price {
        font-size: clamp(16px, 3.5vw, 20px);
        margin-bottom: 15px;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: clamp(28px, 7vw, 48px);
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: clamp(14px, 3vw, 18px);
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    /* How to Order Mobile */
    .how-to-order {
        padding: 40px 0;
    }
    
    .how-to-order-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .how-to-order-image {
        height: 250px;
    }
    
    .steps-list {
        gap: 20px;
    }
    
    .step-item {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .step-number {
        min-width: 80px;
        font-size: clamp(14px, 3vw, 18px);
    }
    
    .step-text {
        font-size: clamp(14px, 3vw, 18px);
    }
    
    /* Special Occasion Mobile */
    .special-occasion {
        padding: 40px 0;
    }
    
    .special-occasion-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .special-occasion-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    
    /* Questions Section Mobile */
    .questions {
        padding: 40px 0;
    }
    
    .questions-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    /* Instagram Section Mobile */
    .instagram-section {
        padding: 40px 0;
    }
    
    .instagram-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .instagram-item {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
    
    .instagram-item img {
        width: 100%;
        height: 100%;
        max-width: 400px;
        max-height: 400px;
        object-fit: cover;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-column {
        margin-bottom: 25px;
    }
    
    .footer-title {
        font-size: clamp(16px, 3vw, 20px);
        margin-bottom: 15px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: clamp(12px, 2.5vw, 16px);
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 14px 30px;
        font-size: clamp(12px, 2.5vw, 16px);
        width: 100%;
        max-width: 300px;
    }
    
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Section Padding Mobile */
    :root {
        --section-padding: 40px 0;
        --container-padding: 15px;
    }
}
