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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeef8 0%, #ffe5f1 50%, #ffd6ec 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.2);
    margin-bottom: 30px;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.1;
}

.header-bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.site-header .container {
    position: relative;
    z-index: 1;
    padding: 30px 20px;
}

.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.logo h1 {
    font-size: 2.5em;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
}

.tagline {
    color: #ff6b9d;
    font-size: 1.2em;
    font-style: italic;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.main-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.5);
    background: linear-gradient(135deg, #c44569 0%, #ff6b9d 100%);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 250, 0.95) 100%);
    padding: 80px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

.hero h2 {
    font-size: 2.5em;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.25);
}

.feature-icon {
    font-size: 3.5em;
    display: block;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #ff6b9d;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 1.1em;
}

/* Catalog Section */
.catalog-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 70px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

.catalog-section h2 {
    text-align: center;
    font-size: 2.5em;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.2);
}

.category-icon {
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #ff6b9d;
    font-size: 1.6em;
    margin-bottom: 15px;
    text-align: center;
}

.category-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.category-list {
    list-style: none;
    margin: 25px 0;
}

.category-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.category-list li:before {
    content: "❤️";
    position: absolute;
    left: 0;
}

.btn-category {
    display: block;
    text-align: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.5);
}

/* Promo Section */
.promo-section {
    margin-bottom: 50px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.promo-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

.promo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.25);
}

.promo-card img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-content {
    padding: 30px;
    text-align: center;
}

.promo-content h3 {
    color: #ff6b9d;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.promo-content p {
    color: #666;
    font-size: 1.2em;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 250, 0.95) 100%);
    padding: 70px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5em;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-features {
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
}

.about-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.about-feature h4 {
    color: #ff6b9d;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.about-feature p {
    margin: 0;
    font-size: 1.1em;
}

/* Delivery Section */
.delivery-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 70px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

.delivery-section h2 {
    text-align: center;
    font-size: 2.5em;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.delivery-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
}

.delivery-card h3 {
    color: #ff6b9d;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
}

.delivery-list {
    list-style: none;
}

.delivery-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #555;
    border-bottom: 1px solid #ffe5f1;
}

.delivery-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: bold;
    font-size: 1.3em;
}

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

/* Mirrors Section */
.mirrors-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 250, 0.95) 100%);
    padding: 70px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

.mirrors-section h2 {
    font-size: 2.5em;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.mirrors-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

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

.mirror-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    background: linear-gradient(135deg, #fff 0%, #ffe5f1 100%);
    border: 2px solid #ff6b9d;
    border-radius: 12px;
    text-decoration: none;
    color: #c44569;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.15);
}

.mirror-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #fff;
}

.mirror-icon {
    font-size: 1.5em;
}

.mirrors-note {
    font-size: 1.2em;
    color: #ff6b9d;
    font-weight: 600;
    margin-top: 30px;
}

/* Contacts Section */
.contacts-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 70px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

.contacts-section h2 {
    text-align: center;
    font-size: 2.5em;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.2);
}

.contact-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #ff6b9d;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    font-size: 1.2em;
    font-weight: 500;
}

/* Footer */
.site-footer {
    position: relative;
    background: linear-gradient(135deg, #c44569 0%, #ff6b9d 100%);
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 60px;
    box-shadow: 0 -5px 30px rgba(255, 107, 157, 0.2);
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.1;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-col h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #ffe5f1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05em;
}

.footer-col a:hover {
    color: #ffe5f1;
    text-decoration: underline;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8em;
    }
    
    .logo h1 {
        font-size: 2em;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

