/* ============================================
   Oynkunbamtrseve - Premium Słodycze
   Unikalny design dla marki premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --plum-dark: #4B2347;
    --vanilla-light: #F8EFE4;
    --pink-pastel: #EFCAD8;
    --gold-accent: #D8A349;
    --white: #FFFFFF;
    --text-dark: #2C1A28;
    --shadow-soft: rgba(75, 35, 71, 0.1);
    --shadow-medium: rgba(75, 35, 71, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--vanilla-light);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--plum-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background: linear-gradient(135deg, var(--plum-dark) 0%, #5B2D57 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--vanilla-light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: var(--vanilla-light);
}

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

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

.hero {
    background: linear-gradient(135deg, var(--pink-pastel) 0%, var(--vanilla-light) 50%, #F5E6D8 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✨';
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--plum-dark);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #E8B85A 100%);
    color: var(--plum-dark);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--shadow-medium);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-secondary {
    background: var(--plum-dark);
    color: var(--vanilla-light);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 2rem;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), var(--pink-pastel));
    border-radius: 2px;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--pink-pastel));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--pink-pastel), var(--vanilla-light));
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--plum-dark);
}

.product-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    padding: 0.8rem;
    background: var(--plum-dark);
    color: var(--vanilla-light);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--gold-accent);
    color: var(--plum-dark);
}

/* ============================================
   QUALITY BLOCKS
   ============================================ */

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

.quality-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
}

.quality-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quality-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--plum-dark);
}

.quality-block p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ============================================
   COLLECTIONS
   ============================================ */

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

.collection-card {
    background: linear-gradient(135deg, var(--plum-dark) 0%, #5B2D57 100%);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    color: var(--vanilla-light);
    box-shadow: 0 8px 25px var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.collection-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-image {
    opacity: 0.9;
}

.collection-card h3,
.collection-card p,
.collection-card .btn {
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.collection-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.collection-card p {
    margin-bottom: 1.5rem;
}

.collection-card .btn {
    margin-bottom: 2rem;
}

.collection-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.collection-card h3 {
    color: var(--vanilla-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.collection-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px var(--shadow-soft);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--pink-pastel);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--plum-dark);
}

.testimonial-rating {
    color: var(--gold-accent);
    margin-top: 0.5rem;
}

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

footer {
    background: var(--plum-dark);
    color: var(--vanilla-light);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--vanilla-light);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--plum-dark);
    color: var(--vanilla-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px var(--shadow-medium);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--gold-accent);
    color: var(--plum-dark);
}

.btn-cookie-accept:hover {
    background: #E8B85A;
}

.btn-cookie-info {
    background: transparent;
    color: var(--vanilla-light);
    border: 2px solid var(--vanilla-light);
}

.btn-cookie-info:hover {
    background: var(--vanilla-light);
    color: var(--plum-dark);
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--plum-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--pink-pastel);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(216, 163, 73, 0.1);
}

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

/* ============================================
   CART STYLES
   ============================================ */

.cart-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--plum-dark);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--gold-accent);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--pink-pastel);
    background: var(--white);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--plum-dark);
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--pink-pastel);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 2px solid var(--pink-pastel);
    border-radius: 5px;
    padding: 0.3rem;
}

.cart-total {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total-final {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-dark);
    padding-top: 1rem;
    border-top: 2px solid var(--pink-pastel);
}

/* ============================================
   BLOG STYLES
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-soft);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--pink-pastel), var(--vanilla-light));
    display: block;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--gold-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--plum-dark);
}

.blog-excerpt {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   FAQ STYLES
   ============================================ */

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--plum-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--vanilla-light);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--vanilla-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.menu-toggle:hover {
    opacity: 0.8;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

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

/* Планшеты (768px - 1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    nav ul {
        gap: 1.8rem;
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 4rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .quality-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
        position: relative;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--plum-dark);
        box-shadow: -4px 0 20px var(--shadow-medium);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        align-items: flex-start;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    nav a::after {
        display: none;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .products-grid,
    .collections-grid,
    .quality-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .product-card {
        border-radius: 15px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .quality-block {
        padding: 2rem 1.5rem;
    }
    
    .quality-icon {
        font-size: 2.5rem;
    }
    
    .quality-block h3 {
        font-size: 1.3rem;
    }
    
    .collection-card h3 {
        font-size: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .blog-card {
        border-radius: 12px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
    
    .blog-excerpt {
        font-size: 0.95rem;
    }
    
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-cookie {
        flex: 1;
        min-width: 140px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .cart-total {
        padding: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Предотвращает зум на iOS */
    }
}

/* Маленькие мобильные устройства (до 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    nav {
        width: 100%;
    }
    
    .hero {
        padding: 2.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .products-grid,
    .collections-grid,
    .quality-grid,
    .testimonials-grid,
    .blog-grid {
        gap: 1.25rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-add-cart {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .quality-block {
        padding: 1.5rem 1rem;
    }
    
    .quality-icon {
        font-size: 2rem;
    }
    
    .quality-block h3 {
        font-size: 1.2rem;
    }
    
    .collection-card h3 {
        font-size: 1.3rem;
    }
    
    .collection-card h3,
    .collection-card p,
    .collection-card .btn {
        padding: 0 1.5rem;
    }
    
    .testimonial {
        padding: 1.25rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .btn-cookie {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cart-item {
        padding: 1rem;
    }
    
    .cart-total {
        padding: 1.25rem;
    }
    
    .cart-total-row {
        font-size: 1rem;
    }
    
    .cart-total-final {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Очень маленькие экраны (до 360px) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Адаптивность для карты Google Maps */
@media (max-width: 768px) {
    iframe[src*="google.com/maps"] {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    iframe[src*="google.com/maps"] {
        height: 250px !important;
    }
}

/* Улучшенная адаптивность для форм */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 16px; /* Предотвращает зум на iOS */
    }
}

/* Адаптивность для таблиц (если есть) */
@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 0.5rem;
    }
}

/* Улучшенная адаптивность для изображений */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .collection-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .collection-image {
        height: 150px;
    }
}

/* Предотвращение горизонтальной прокрутки */
body {
    overflow-x: hidden;
}

/* Улучшенная адаптивность для текста */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   HOLIDAY EFFECTS
   ============================================ */

.holiday-star {
    position: absolute;
    color: var(--gold-accent);
    opacity: 0.4;
    font-size: 1.5rem;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.snowflake {
    position: absolute;
    color: var(--white);
    opacity: 0.6;
    font-size: 1rem;
    animation: fall 10s infinite linear;
}

@keyframes fall {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

