:root {
    --primary-color: #B54F2E;  /* Terracota cálido */
    --secondary-color: #E6B544; /* Amarillo mostaza */
    --accent-1: #7D9B76;       /* Verde salvia */
    --accent-2: #50758E;       /* Azul denim */
    --accent-3: #937C9B;       /* Púrpura apagado */
    --text-color: #4F4846;     /* Marrón grisáceo */
    --light-bg: #F9F6F1;       /* Blanco cremoso */
    --white: #FFFFFF;
    
    /* Nuevos colores de patchwork vintage */
    --vintage-red: #A83E34;
    --vintage-blue: #3A5F73;
    --vintage-yellow: #E3B448;
    --vintage-green: #4A7866;
    --vintage-mauve: #8E7078;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-image: url('https://raw.githubusercontent.com/kensumiliante/public/refs/heads/main/Fondo.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

h1, h2, h3 {
    background: linear-gradient(45deg, var(--vintage-red), var(--vintage-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-family: 'Pacifico', cursive;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
}

.menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 0;
        z-index: 999;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

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

    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: rgba(255, 255, 255, 0.3); /* Transparent background */
    backdrop-filter: blur(8px); /* Blur effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

/* Products Section */
.products {
    padding: 5rem 1rem;
    background: var(--light-bg);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background: repeating-linear-gradient(
        45deg,
        var(--light-bg),
        var(--light-bg) 10px,
        var(--white) 10px,
        var(--white) 20px
    );
    border: 3px double var(--vintage-mauve);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    animation: bounce 1s infinite;
}

.product-image {
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 5rem 1rem;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

textarea {
    height: 150px;
    resize: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Patterns Section */
.patterns {
    padding: 5rem 1rem;
    background: var(--light-bg);
    text-align: center;
}

.patterns h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    justify-items: center;
}

.pattern-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.pattern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pattern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, 
        var(--vintage-red),
        var(--vintage-yellow),
        var(--vintage-green),
        var(--vintage-blue)
    );
}

.pattern-image {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.pattern-card:hover .pattern-image {
    transform: scale(1.05);
}

.pattern-details {
    display: flex;
    justify-content: space-around;
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
}

.pattern-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.preview-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.download-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.download-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.pattern-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pattern-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pattern-preview-modal.active {
    opacity: 1;
    visibility: visible;
}

.pattern-preview-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-preview {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.patterns-search-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    justify-content: center;
}

.filters-container {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    font-family: inherit;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    font-family: inherit;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

/* Materials Section */
.materials {
    padding: 5rem 1rem;
    text-align: center;
}

.materials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.materials-carousel {
    max-width: 1200px;
    padding: 40px 60px;
    margin: 0 auto;
}

.material-card {
    background: var(--white);
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(155, 107, 158, 0.1);
}

.material-card:hover {
    transform: translateY(-5px);
}

.material-title {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.material-price {
    font-weight: bold;
    color: var(--primary-color);
    margin: 15px 0;
    display: block;
}

.whatsapp-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-order-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #128C7E, #075E54);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.whatsapp-order-btn:hover:before {
    opacity: 1;
}

.whatsapp-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.whatsapp-order-btn i {
    font-size: 1.2em;
}

/* Classes Section */
.classes {
    padding: 5rem 1rem;
    background: var(--light-bg);
    text-align: center;
}

.classes h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.youtube-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(155, 107, 158, 0.1);
    width: 100%;
    max-width: 400px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-btn {
    background: #FF0000;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: transform 0.3s;
}

.youtube-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Carousel Styles */
.cupcake-carousel {
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
}

.cupcake-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.cupcake-card:hover {
    transform: translateY(-5px);
}

.cupcake-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
}

.cupcake-title {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cupcake-price {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #128C7E, #075E54);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover:before {
    opacity: 1;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn i {
    font-size: 1.2em;
}

/* Enhanced Carousel Styles */
.amigurumi-carousel {
    padding: 40px 60px;
}

.swiper-slide {
    opacity: 0.4;
    transform: scale(0.8);
    transition: all 0.3s;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.swiper-button-next,
.swiper-button-prev {
    background: var(--vintage-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Materials Carousel Styles */
.materials-carousel {
    max-width: 1200px;
    padding: 40px 60px;
    margin: 0 auto;
}

.material-card {
    background: var(--white);
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(155, 107, 158, 0.1);
}

.material-card:hover {
    transform: translateY(-5px);
}

.material-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
}

.material-title {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.material-price {
    font-weight: bold;
    color: var(--primary-color);
    margin: 15px 0;
    display: block;
}

.whatsapp-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-order-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #128C7E, #075E54);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.whatsapp-order-btn:hover:before {
    opacity: 1;
}

.whatsapp-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.whatsapp-order-btn i {
    font-size: 1.2em;
}

/* Order Modal Styles */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.payment-info {
    margin: 20px 0;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
}

.submit-order-btn,
.close-modal-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
}

.submit-order-btn {
    background: #25D366;
    color: white;
}

.close-modal-btn {
    background: #ff4444;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .cupcake-carousel {
        padding: 10px;
    }
    
    .patterns-grid,
    .materials-grid,
    .youtube-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .patterns-search-container {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .filters-container {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .search-box {
        width: 100%;
    }
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.yarn-decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.5;
}

.yarn-decoration::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    animation: spin 10s linear infinite;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-float:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #128C7E, #075E54);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover:before {
    opacity: 1;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.whatsapp-float i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Patchwork specific styles */
.patchwork-pattern {
    border: 2px solid var(--secondary-color);
    padding: 15px;
    background: var(--light-bg);
}

/* Newsletter Styles */
.newsletter-section {
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    text-shadow: none;
}

.newsletter-section p {
    color: var(--light-bg);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    font-family: inherit;
    background: var(--light-bg);
}

.newsletter-input-group button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--vintage-yellow);
    color: var(--text-color);
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-input-group button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Newsletter Success Modal */
.newsletter-success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newsletter-success-modal.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-success-modal h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-success-modal .success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.newsletter-success-modal button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    font-family: inherit;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.newsletter-success-modal button:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group input,
    .newsletter-input-group button {
        width: 100%;
    }
}