@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Dancing+Script:wght@400;600;700&family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600;700&family=Great+Vibes&family=Nunito:wght@300;400;600;700&family=Italiana&family=Sacramento&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --lavender: #C8B6E2;
    --soft-pink: #F4D4D8;
    --sage-green: #A8B5A0;
    --cream: #FFF8F0;
    --dark-green: #4A5D4F;
    --accent-purple: #9B7EBD;
    --white: #FFFFFF;
    --text-dark: #2C3E3A;
    --light-lavender: #E8DFF5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Decorative Floral Overlays */
.floral-overlay {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.service-icon {
    color: var(--accent-purple);
    font-size: 3.5rem;
}

/* Header */
.header {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(200, 182, 226, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--lavender);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 75px;
    filter: drop-shadow(0 2px 8px rgba(155, 126, 189, 0.3));
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.5px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--accent-purple);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #A09BE7 0%, #A09BE7 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px #FFEECF;
    font-family: 'Jost', sans-serif;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px #A09BE7;
}

.destaque-titulo {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3em;
    color: var(--accent-purple);
    display: block;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: 
        linear-gradient(135deg, rgba(255, 248, 240, 0.92) 0%, rgba(232, 223, 245, 0.88) 100%),
        url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?w=1600&q=80') center/cover;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200, 182, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(244, 212, 216, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, white 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 30px;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
    letter-spacing: -1px;
}

.hero p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--lavender) 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.15rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 6px 20px rgba(155, 126, 189, 0.4);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 126, 189, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--accent-purple);
    border: 3px solid var(--lavender);
    padding: 15px 42px;
    font-size: 1.15rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 6px 20px rgba(200, 182, 226, 0.3);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--lavender);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 182, 226, 0.4);
}

.hero-contacts {
    margin-top: 50px;
    opacity: 0.85;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-contacts p {
    font-size: 1.05rem;
    margin-bottom: 0;
    font-family: 'Lato', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    display: none;
}

.hero-shape {
    display: none;
}

/* Services */
.services {
    padding: 100px 20px;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 240, 0.9) 100%),
        url('https://images.unsplash.com/photo-1487070183336-b863922373d4?w=1600&q=80') center/cover fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, white 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.services h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark-green);
    font-weight: 600;
}

.services h2::after {
    content: '✿';
    display: block;
    text-align: center;
    font-size: 2rem;
    color: var(--accent-purple);
    margin-top: 15px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s;
    border: 3px solid var(--lavender);
    box-shadow: 0 8px 30px rgba(200, 182, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 182, 226, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 50px rgba(155, 126, 189, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.service-card p {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Products */
.products {
    padding: 100px 20px;
    background: 
        linear-gradient(180deg, rgba(255, 248, 240, 0.95) 0%, rgba(232, 223, 245, 0.95) 100%),
        url('https://images.unsplash.com/photo-1563241527-3004b7be0ffd?w=1600&q=80') center/cover fixed;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, white 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, white 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.products h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark-green);
    font-weight: 600;
}

.products h2::after {
    content: '❀';
    display: block;
    text-align: center;
    font-size: 2rem;
    color: var(--accent-purple);
    margin-top: 15px;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--lavender);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 4px 15px rgba(200, 182, 226, 0.2);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--lavender) 100%);
    color: white;
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 126, 189, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(200, 182, 226, 0.2);
    border: 3px solid transparent;
    position: relative;
}

.product-card::after {
    content: '✿';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--lavender);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(155, 126, 189, 0.3);
    border-color: var(--lavender);
}

.product-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.product-card h3 {
    padding: 25px 25px 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-green);
    font-weight: 600;
}

.product-desc {
    padding: 0 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 8px;
    font-style: italic;
}

.product-price {
    padding: 0 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.btn-whatsapp-product {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* About */
.about {
    padding: 100px 20px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 212, 216, 0.9) 100%),
        url('https://images.unsplash.com/photo-1455659817273-f96807779a8a?w=1600&q=80') center/cover fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, white 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #FFEECF 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.about .container {
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--dark-green);
    text-align: center;
    font-weight: 600;
}

.about-content h2::after {
    content: '✾';
    display: block;
    text-align: center;
    font-size: 2rem;
    color: var(--accent-purple);
    margin-top: 15px;
}

.about-content > p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    line-height: 1.9;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(200, 182, 226, 0.2);
    transition: all 0.4s;
    border: 3px solid var(--soft-pink);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(155, 126, 189, 0.3);
    border-color: var(--lavender);
}

.feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--accent-purple);
}

.feature p {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
}

/* FAQ Section */
.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--dark-green);
    margin-bottom: 50px;
    font-weight: 600;
}

.faq-title::after {
    content: '❀';
    display: block;
    text-align: center;
    font-size: 1.8rem;
    color: var(--accent-purple);
    margin-top: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--lavender);
    transition: all 0.3s;
    cursor: pointer;
}

.faq-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 35px rgba(155, 126, 189, 0.3);
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(200, 182, 226, 0.1) 0%, rgba(244, 212, 216, 0.1) 100%);
}

.faq-question span:first-child {
    font-size: 2rem;
    flex-shrink: 0;
}

.faq-question h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-green);
    flex: 1;
    margin: 0;
}

.faq-icon {
    font-size: 2rem !important;
    color: var(--accent-purple);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

.faq-card.active .faq-answer {
    max-height: 500px;
    padding: 25px;
}

.faq-answer p {
    font-family: 'Nunito', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.85;
    margin: 0;
}

/* Promotions */
.promotions {
    padding: 100px 20px;
    background: 
        linear-gradient(135deg, rgba(74, 93, 79, 0.95) 0%, rgba(44, 62, 58, 0.95) 100%),
        url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=1600&q=80') center/cover fixed;
    color: var(--white);
    position: relative;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1487070183336-b863922373d4?w=1600&q=80') center/cover;
    opacity: 0.1;
    pointer-events: none;
}

.promotions::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(44, 62, 58, 0) 0%, rgba(74, 93, 79, 0.95) 100%);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.promotions h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--cream);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.promotions h2::after {
    content: '❀';
    display: block;
    text-align: center;
    font-size: 2rem;
    color: var(--lavender);
    margin-top: 15px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
    max-width: 950px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 45px;
    border-radius: 25px;
    border: 3px solid rgba(200, 182, 226, 0.4);
    transition: all 0.4s;
}

.promo-card:hover {
    transform: translateY(-12px);
    border-color: var(--lavender);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(200, 182, 226, 0.3);
}

.promo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--cream);
}

.promo-price {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.promo-price span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lavender);
    display: block;
    margin-top: 12px;
}

.promo-card ul {
    list-style: none;
    margin-bottom: 35px;
}

.promo-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Nunito', sans-serif;
}

.promo-card ul li:before {
    content: "✓ ";
    color: var(--lavender);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

.btn-promo {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--lavender) 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 6px 20px rgba(155, 126, 189, 0.4);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 126, 189, 0.5);
}

/* Footer */
.footer {
    background: #FFEECF;
    color: #1A0C1B;
    padding: 70px 20px 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-col h4 {
    margin-bottom: 22px;
    color: var(--lavender);
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.footer-col a {
    display: block;
    color: #1A0C1B;
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0.85;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}

.footer-col p {
    color: #1A0C1B;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--lavender);
    padding-left: 5px;
}

.footer-col p {
    opacity: 0.85;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(200, 182, 226, 0.3);
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
}

.owlin-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(155, 126, 189, 0.8), 0 0 20px rgba(155, 126, 189, 0.4);
    transition: all 0.3s;
}

.owlin-link:hover {
    text-shadow: 0 0 12px rgba(155, 126, 189, 1), 0 0 30px rgba(155, 126, 189, 0.6);
    color: var(--lavender);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hide-mobile {
        display: none !important;
    }

    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .hero-contacts {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        display: none;
    }
    
    .logo img {
        height: 60px;
    }
    
    .service-grid, .product-grid, .about-features, .promo-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .product-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .services h2, .products h2, .about-content h2, .promotions h2, .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question h4 {
        font-size: 1.05rem;
    }
    
    .services::before, .services::after,
    .products::before, .products::after,
    .about::before, .about::after,
    .promotions::after {
        height: 50px;
    }
}
