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

:root {
    --bg-dark: #050608;
    --bg-secondary: #0f1215;
    --bg-card: #151820;
    --text-primary: #e8e8e8;
    --text-secondary: #8a8f9a;
    --accent-red: #8b5a5a;
    --accent-green: #5a7a7a;
    --accent-gold: #9a8a6a;
    --accent-blue: #5a6a7a;
    --border-color: #1f2228;
    --shadow: rgba(0, 0, 0, 0.8);
    --shadow-glow: rgba(154, 138, 106, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background: rgba(15, 18, 21, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1003;
    padding: 1.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 60px;
}

.logo-text {
    font-size: 1.6rem;
}

.nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

/* Бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Полноэкранное мобильное меню */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1002;
}

.mobile-logo {
    font-size: 1.4rem;
}

.mobile-logo .logo-icon {
    font-size: 1.5rem;
}

.mobile-logo .logo-text {
    font-size: 1.4rem;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
    padding-top: 8rem;
    min-height: 100vh;
    position: relative;
}

.mobile-menu-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-menu-link:hover {
    color: var(--text-secondary);
}

.mobile-menu-btn {
    margin-top: auto;
    margin-bottom: 2rem;
    width: auto;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out, pulse 3s infinite ease-in-out;
    user-select: none;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    transition: opacity 0.3s ease;
}

/* Поддержка изображений */
.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Стили для иконок-изображений */
.floating-icon[src],
.floating-icon img {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 60px;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 10%;
    font-size: 1.4rem;
    animation-duration: 18s;
    animation-delay: 0s;
    max-width: 50px;
    max-height: 50px;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 15%;
    font-size: 2rem;
    animation-duration: 16s;
    animation-delay: 1.5s;
    max-width: 70px;
    max-height: 70px;
}

.floating-icon.icon-3 {
    top: 40%;
    left: 5%;
    font-size: 1.6rem;
    animation-duration: 20s;
    animation-delay: 3s;
    max-width: 55px;
    max-height: 55px;
}

.floating-icon.icon-4 {
    top: 50%;
    right: 10%;
    font-size: 1.8rem;
    animation-duration: 14s;
    animation-delay: 0.5s;
    max-width: 60px;
    max-height: 60px;
}

.floating-icon.icon-5 {
    top: 70%;
    left: 20%;
    font-size: 1.5rem;
    animation-duration: 17s;
    animation-delay: 2.5s;
    max-width: 52px;
    max-height: 52px;
}

.floating-icon.icon-6 {
    top: 15%;
    left: 50%;
    font-size: 1.9rem;
    animation-duration: 19s;
    animation-delay: 4s;
    max-width: 65px;
    max-height: 65px;
}

.floating-icon.icon-7 {
    top: 60%;
    right: 25%;
    font-size: 1.7rem;
    animation-duration: 15s;
    animation-delay: 2s;
    max-width: 58px;
    max-height: 58px;
}

.floating-icon.icon-8 {
    top: 80%;
    left: 40%;
    font-size: 1.6rem;
    animation-duration: 21s;
    animation-delay: 5s;
    max-width: 54px;
    max-height: 54px;
}

.floating-icon.icon-9 {
    top: 30%;
    right: 5%;
    font-size: 1.8rem;
    animation-duration: 16s;
    animation-delay: 1s;
    max-width: 62px;
    max-height: 62px;
}

.floating-icon.icon-10 {
    top: 65%;
    left: 15%;
    font-size: 1.5rem;
    animation-duration: 18s;
    animation-delay: 4s;
    max-width: 52px;
    max-height: 52px;
}

.floating-icon.icon-11 {
    top: 25%;
    left: 35%;
    font-size: 1.7rem;
    animation-duration: 14s;
    animation-delay: 3s;
    max-width: 58px;
    max-height: 58px;
}

.floating-icon.icon-12 {
    top: 75%;
    right: 15%;
    font-size: 1.6rem;
    animation-duration: 20s;
    animation-delay: 6s;
    max-width: 55px;
    max-height: 55px;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(8deg) scale(1.1);
    }
    50% {
        transform: translate(-25px, -80px) rotate(-8deg) scale(0.95);
    }
    75% {
        transform: translate(35px, -40px) rotate(5deg) scale(1.05);
    }
}

/* Дополнительная анимация пульсации для большей активности */
@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.btn-hero {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--text-secondary);
}

/* About Section */
.about-section {
    background: transparent;
    margin: 2rem auto;
    max-width: 1200px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.about-image:hover img {
    opacity: 0.9;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Products Section */
.products-section {
    padding: 4rem 0;
}

.products-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 8px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

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

.gift-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 2.2rem;
    z-index: 10;
    opacity: 0.6;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    flex-grow: 1;
    line-height: 1.4;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-buy {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-buy:hover {
    background: var(--bg-card);
    border-color: var(--text-secondary);
    transform: translateY(-1px);
}

.btn-shop {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.btn-shop:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
    transform: translateY(-1px);
}

.shop-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* Promotions Section */
.promotions-section {
    background: transparent;
    margin: 2rem auto;
    max-width: 1200px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.promotion-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-3px);
    border-color: var(--text-secondary);
}

.promotion-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.promotion-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 400;
}

.promotion-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Conclusion Section */
.conclusion-section {
    text-align: center;
    padding: 4rem 0;
}

.conclusion-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}


/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .burger-menu {
        display: flex;
    }

    .nav {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .nav {
        display: none;
    }

    .hero-section {
        padding: 5rem 0 4rem;
    }

    .floating-icon {
        font-size: 1.2rem;
        opacity: 0.25;
        max-width: 40px !important;
        max-height: 40px !important;
    }

    .floating-icon.icon-1,
    .floating-icon.icon-5,
    .floating-icon.icon-10 {
        font-size: 1rem;
        max-width: 35px !important;
        max-height: 35px !important;
    }

    .floating-icon.icon-2,
    .floating-icon.icon-6 {
        font-size: 1.3rem;
        max-width: 45px !important;
        max-height: 45px !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .floating-icon {
        font-size: 1rem;
        opacity: 0.2;
        max-width: 35px !important;
        max-height: 35px !important;
    }

    .floating-icon.icon-1,
    .floating-icon.icon-3,
    .floating-icon.icon-5,
    .floating-icon.icon-8,
    .floating-icon.icon-10,
    .floating-icon.icon-12 {
        display: none;
    }

    section {
        padding: 2.5rem 0;
    }

    .product-card {
        padding: 1.2rem;
    }

    .promotion-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .btn-shop {
        width: auto;
        display: inline-block;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

