* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
}

.header {
    background: linear-gradient(135deg, #ff92c2, #ff75b5);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heart-icon {
    color: white;
    font-size: 1.2rem;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffe6f1;
}

.hero {
    background: linear-gradient(rgba(255, 146, 194, 0.3), rgba(255, 146, 194, 0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff92c2, #ff75b5);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 146, 194, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-shadow: none;
    margin-top: 2rem;
}

.hero-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 146, 194, 0.6);
    background: linear-gradient(135deg, #ff75b5, #ff92c2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-button:active {
    transform: translateY(0) scale(0.98);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.products-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem;
}

.feature-tag {
    background: linear-gradient(135deg, #ff92c2, #ff75b5);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.products {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 146, 194, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 146, 194, 0.3);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    padding: 0 1rem;
}

.product-link {
    display: inline-block;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff92c2, #ff75b5);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.product-link:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff75b5, #ff92c2);
}

.about {
    background: #fff5f9;
    padding: 5rem 2rem;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #ff75b5;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #4a4a4a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 146, 194, 0.2);
    transition: transform 0.3s ease;
    text-align: left;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 146, 194, 0.3);
}

.feature h3 {
    color: #ff92c2;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.feature-list li::before {
    content: "•";
    color: #ff92c2;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff92c2, #ff75b5);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.about-link:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff75b5, #ff92c2);
}

/* Стили для промо-секции */
.promo-section {
    background: linear-gradient(135deg, #ffe6f1, #fff5f9);
    padding: 5rem 2rem;
    text-align: center;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.promo-section h2 {
    font-size: 2.5rem;
    color: #ff75b5;
    margin-bottom: 3rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.promo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 146, 194, 0.3);
    transition: transform 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-10px);
}

.promo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.promo-item:hover .promo-overlay {
    transform: translateY(0);
}

.promo-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Стили для галереи */
.gallery-section {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: #ff75b5;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 146, 194, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 146, 194, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    text-align: center;
}

/* Стили для spotlight секции */
.spotlight-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff5f9, #ffe6f1);
}

.spotlight-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spotlight-text h2 {
    font-size: 2.5rem;
    color: #ff75b5;
    margin-bottom: 1.5rem;
}

.spotlight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.spotlight-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff92c2, #ff75b5);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 146, 194, 0.4);
}

.spotlight-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 146, 194, 0.6);
    background: linear-gradient(135deg, #ff75b5, #ff92c2);
}

.spotlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 146, 194, 0.3);
}

/* Стили для рейтинга */
.rating-section {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.rating-section h2 {
    font-size: 2.5rem;
    color: #ff75b5;
    margin-bottom: 3rem;
}

.rating-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #fff5f9, #ffe6f1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 146, 194, 0.2);
}

.rating-stars img {
    max-width: 200px;
    height: auto;
}

.rating-text h3 {
    font-size: 1.8rem;
    color: #ff75b5;
    margin-bottom: 1rem;
}

.rating-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Стили для секции выбора */
.selection-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff5f9, #ffe6f1);
}

.selection-section h2 {
    font-size: 2.5rem;
    color: #ff75b5;
    margin-bottom: 3rem;
    text-align: center;
}

.selection-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.selection-image {
    text-align: center;
}

.selection-image img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 146, 194, 0.3);
}

.selection-text h3 {
    font-size: 2rem;
    color: #ff75b5;
    margin-bottom: 1.5rem;
}

.selection-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.selection-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.selection-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.selection-features li::before {
    content: "✓";
    color: #ff92c2;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.contacts {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.contact-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 146, 194, 0.2);
}

.contact-info {
    margin-top: 2rem;
}

.contact-info ul {
    list-style: none;
    margin-top: 1rem;
}

.contact-info a {
    color: #ff92c2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff75b5;
}

.footer {
    background: #4a4a4a;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.footer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.footer-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0 1rem;
    }

    /* Адаптивные стили для новых секций */
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rating-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .rating-stars img {
        max-width: 150px;
    }

    .contact-content {
        padding: 2rem;
    }

    .selection-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .selection-image img {
        max-width: 150px;
    }
} 