:root {
    --sun-yellow: #F5D442;
    --sun-orange: #D4A855;
    --sun-light: #F0E6F6;
    --sun-cream: #F8F0FC;
    --sun-warm: #D4B8E0;
    --sun-dark: #7B4FAF;
    --sun-brown: #6B3FA0;
    --text-dark: #4A2D6B;
    --text-muted: #8B6FA8;
    --wb-purple: #CB11AB;
    --wb-dark: #A00E8A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--sun-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(90deg, var(--sun-yellow) 0%, var(--sun-orange) 100%);
    color: var(--text-dark);
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1032;
}

.promo-banner i {
    margin-right: 8px;
    color: var(--wb-purple);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(248, 240, 252, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(123, 79, 175, 0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--sun-dark) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    display: block;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='%237B4FAF' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-brand .sun-icon {
    display: inline-block;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--sun-orange) !important;
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #E8D5F0 0%, #C9A0DC 40%, #B88FD0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 122px;
}

.hero-section-no-padding {
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 212, 66, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 143, 208, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--sun-yellow);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sun-dark);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--sun-orange);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    overflow: visible;
}

.hero-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-image-wrapper img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(107, 63, 160, 0.2);
    transition: transform 0.5s ease;
}

.hero-image-wrapper img:hover {
    transform: scale(1.02);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Comfortaa', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sun-dark);
}

/* Акцент для цены в шапке */
.hero-stat-price {
    color: var(--sun-orange);
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn-wb {
    background: linear-gradient(135deg, var(--wb-purple), var(--wb-dark));
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(203, 17, 171, 0.3);
}

.btn-wb:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(203, 17, 171, 0.4);
    color: white;
}

.btn-wb-outline {
    background: transparent;
    color: var(--wb-purple);
    border: 2px solid var(--wb-purple);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-wb-outline:hover {
    background: var(--wb-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-ozon {
    background: linear-gradient(135deg, #005BFF, #0040CC);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 91, 255, 0.3);
}

.btn-ozon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 91, 255, 0.4);
    color: white;
}

.btn-sun {
    background: linear-gradient(135deg, var(--sun-yellow), var(--sun-orange));
    color: var(--text-dark);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 212, 66, 0.4);
}

.btn-sun:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 212, 66, 0.5);
    color: var(--text-dark);
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sun-yellow), var(--sun-orange));
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* ===== PRODUCTS ===== */
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 63, 160, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 63, 160, 0.15);
}

хем        .product-swiper {
    height: 300px;
    background: var(--sun-light);
}

.product-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
    color: var(--sun-dark);
    background: rgba(255, 255, 255, 0.8);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-swiper .swiper-button-prev::after,
.product-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.product-swiper .swiper-pagination-bullet {
    background: var(--sun-yellow);
    opacity: 0.5;
}

.product-swiper .swiper-pagination-bullet-active {
    background: var(--sun-orange);
    opacity: 1;
}

.product-card-body {
    padding: 30px;
}

.product-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.product-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.product-features li i {
    color: var(--sun-orange);
    font-size: 1rem;
}

.product-price {
    font-family: 'Comfortaa', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sun-dark);
    margin-bottom: 20px;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--sun-yellow), var(--sun-orange));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge--new {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF6B9D, #C44569);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-left: 8px;
}

.gift-badge i {
    font-size: 0.9rem;
}

/* Gift badge overlay on images */
.gift-badge-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF6B9D, #C44569);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(196, 69, 105, 0.4);
}

.gift-badge-overlay i {
    font-size: 1rem;
}

.hero-gift-badge {
    bottom: 30px;
    left: 30px;
    font-size: 0.95rem;
    padding: 10px 20px;
}

.swiper-slide {
    position: relative;
}

.product-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.product-buttons .btn-wb,
.product-buttons .btn-ozon {
    flex: 1;
    padding: 14px 20px;
    font-size: 1rem;
    justify-content: center;
}

/* ===== ABOUT ===== */
.about-section {
    background: white;
}

.about-card {
    background: var(--sun-light);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--sun-yellow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 79, 175, 0.1);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sun-yellow), var(--sun-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.about-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== PRODUCT SHOWCASE ===== */
.showcase-section {
    background: linear-gradient(180deg, var(--sun-cream) 0%, var(--sun-light) 100%);
}

.swiper {
    padding-bottom: 60px;
}

.swiper-slide {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 63, 160, 0.1);
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: scale(1.02);
}

.swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: var(--sun-yellow);
    opacity: 0.4;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--sun-orange);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ===== COMPOSITION ===== */
.composition-section {
    background: white;
}

.composition-list {
    list-style: none;
    padding: 0;
}

.composition-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(245, 212, 66, 0.2);
    font-size: 1.05rem;
}

.composition-list li:last-child {
    border-bottom: none;
}

.composition-list .comp-icon {
    width: 40px;
    height: 40px;
    background: var(--sun-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.composition-list .comp-name {
    font-weight: 700;
    color: var(--text-dark);
}

.composition-list .comp-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.composition-info-card {
    background: linear-gradient(135deg, var(--sun-light), var(--sun-warm));
    border-radius: 24px;
    padding: 40px;
    height: 100%;
}

.composition-info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(123, 79, 175, 0.2);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
    font-weight: 600;
}

.info-value {
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== ADVANTAGES ===== */
.advantages-section {
    background: linear-gradient(135deg, #B88FD0 0%, #9B7CB6 50%, #7B4FAF 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.advantages-section .section-title,
.advantages-section .section-subtitle {
    color: white;
}

.advantages-section .section-divider {
    background: white;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sun-yellow), var(--sun-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: white;
}

.advantage-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--sun-cream);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(107, 63, 160, 0.06);
}

.accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    background: white;
    padding: 20px 25px;
    border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--sun-light);
    color: var(--sun-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(245, 212, 66, 0.3);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237B4FAF' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-muted);
    line-height: 1.7;
    background: white;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #4A2D6B 0%, #6B3FA0 50%, #7B4FAF 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 212, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    color: white;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.cta-section .section-divider {
    background: var(--sun-yellow);
}

.wb-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.wb-card .wb-logo {
    font-size: 3rem;
    margin-bottom: 15px;
}

.wb-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.wb-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.wb-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.wb-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.wb-feature i {
    color: var(--sun-yellow);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(74, 45, 107, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 0;
    z-index: 1040;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--sun-yellow);
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--sun-yellow);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--sun-orange);
}

.cookie-accept {
    background: linear-gradient(135deg, var(--sun-yellow), var(--sun-orange));
    color: var(--text-dark);
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 212, 66, 0.4);
}

/* ===== GALLERY ===== */
.gallery-section {
    background: white;
}

.gallery-swiper {
    padding-bottom: 50px;
}

.gallery-swiper .swiper-slide {
    height: auto;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== REVIEWS ===== */
.reviews-section {
    background: var(--sun-cream);
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(123, 79, 175, 0.08);
    height: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sun-yellow), var(--sun-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-platform {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.review-platform-wb {
    background: rgba(203, 17, 171, 0.1);
    color: var(--wb-purple);
}

.review-platform-ozon {
    background: rgba(0, 91, 255, 0.1);
    color: #005BFF;
}

.review-stars {
    color: var(--sun-yellow);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-stars i {
    margin-right: 2px;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.reviews-swiper {
    padding-bottom: 50px;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand,
.footer-company,
.footer-developer {
    flex: 1;
    min-width: 200px;
}

.footer-brand p,
.footer-company p,
.footer-developer p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-company h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer .brand-name {
    color: var(--sun-yellow);
    font-weight: 700;
}

.footer-cert {
    margin-top: 8px;
    font-size: 0.8rem !important;
}

.footer-developer a {
    color: var(--sun-yellow);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-developer a:hover {
    color: var(--sun-orange);
}

/* ===== FLOATING ELEMENTS ===== */
.floating-sun {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--sun-yellow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .about-card,
    .composition-info-card,
    .wb-card {
        padding: 25px;
    }

    .advantage-card {
        padding: 25px;
    }

    .btn-wb,
    .btn-ozon,
    .btn-sun {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .product-buttons {
        flex-direction: column;
    }

    .wb-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== AGE BADGE ===== */
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid var(--sun-yellow);
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 700;
    color: var(--sun-dark);
    font-size: 1rem;
}

.age-badge i {
    color: var(--sun-orange);
}

/* ===== CERTIFICATE BADGE ===== */
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
}

.cert-badge i {
    color: #28a745;
}
