:root {
    --primary-color: #6366f1;
    --primary-light: #8b5cf6;
    --primary-dark: #5558d9;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles Placeholder */
/* Header Elegant */
.header-elegant {
    position: relative;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(99,102,241,0.05) 0%, rgba(139,92,246,0.05) 100%);
    z-index: -1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.logo-elegant img {
    height: 45px;
}

.nav-elegant {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-item:hover::before {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-elegant {
    position: relative;
}

.search-elegant input {
    padding: 12px 40px 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    width: 250px;
    font-size: 15px;
    transition: all 0.3s;
}

.search-elegant input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}

.search-elegant i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.cart-elegant {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.cart-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.3);
}

.cart-count-elegant {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 12px;
}

.cart-text {
    font-weight: 600;
}

/* Hero Elegant */
.hero-elegant {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/header.jpg);
    z-index: -1;
}

.hero-box {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-box h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-box p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.feature-item i {
    color: #10b981;
    font-size: 18px;
}

.btn-elegant {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99,102,241,0.3);
}

.btn-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99,102,241,0.4);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.cart-content.elegant {
    background: white;
    margin: 50px auto;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.cart-header {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 24px;
    color: #1a1a1a;
}

.close-cart {
    font-size: 32px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
}

.close-cart:hover {
    color: #ff4444;
    transform: rotate(90deg);
}

.cart-body {
    padding: 30px;
}

.cart-total {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0;
    text-align: right;
    color: #1a1a1a;
}

.cart-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.cart-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}

.cart-footer {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    gap: 15px;
}

.cart-footer button {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.clear-cart {
    background: white;
    color: #f44336;
    border: 2px solid #f44336;
}

.clear-cart:hover {
    background: #f44336;
    color: white;
}

.order-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    flex: 1;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.3);
}

@media (max-width: 768px) {
    .nav-elegant {
        display: none;
    }
    .header-cta {
        gap: 15px;
    }
    .search-elegant input {
        width: 150px;
    }
    .hero-box {
        padding: 40px 30px;
    }
    .hero-box h1 {
        font-size: 2rem;
    }
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Features */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.feature-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8fafc;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Cards Styles Placeholder */
/* Product Cards Minimal Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.product-card-minimal {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card-minimal:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.product-minimal-image {
    width: 100%;
    height: 200px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.product-minimal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-card-minimal:hover .product-minimal-image img {
    opacity: 0.9;
}

.product-minimal-content {
    padding: 20px;
    position: relative;
}

.product-minimal-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-minimal-title {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-minimal-price {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.product-minimal-add {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #6b7280;
}

.product-minimal-add:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-card-minimal:hover .product-minimal-add {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .product-minimal-image {
        height: 180px;
    }
    
    .product-minimal-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid,
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .product-minimal-title {
        font-size: 14px;
    }
    
    .product-minimal-price {
        font-size: 16px;
    }
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.newsletter-button {
    background: white;
    color: #6366f1;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Footer Styles Placeholder */

/* Footer Minimal Styles */
.footer-minimal {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 40px 0 20px;
}

.footer-minimal-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 40px;
}

.footer-minimal-brand {
    max-width: 350px;
}

.footer-minimal-logo img {
    height: 135px;
    margin-bottom: 12px;
}

.footer-minimal-tagline {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer-minimal-nav {
    display: flex;
    gap: 60px;
}

.footer-minimal-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

.footer-minimal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-minimal-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-minimal-links a:hover {
    color: var(--primary-color);
}

.footer-minimal-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-minimal-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.footer-minimal-contact i {
    color: var(--primary-color);
    width: 14px;
}

.footer-minimal-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-minimal-copyright {
    color: #9ca3af;
    font-size: 13px;
}

.footer-minimal-social {
    display: flex;
    gap: 12px;
}

.social-minimal {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-minimal:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.back-to-top-minimal {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.back-to-top-minimal.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-minimal:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
    .footer-minimal-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-minimal-nav {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-minimal-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-minimal-social {
        justify-content: center;
    }
}


/* Utilities */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Button Styles Placeholder */

/* Button Styles - Flat Colored */

/* Main product buttons in cards */
.product-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Horizontal card buttons */
.product-horizontal-button {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 600;
}

.product-horizontal-button:hover {
    background: #059669;
}

/* Overlay card buttons */
.overlay-cart-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overlay-cart-btn:hover {
    background: #d97706;
}

/* Minimal card buttons */
.product-minimal-add {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
    color: white;
}

.product-minimal-add:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Large card quick action buttons */
.quick-action-btn {
    width: 45px;
    height: 45px;
    background: #ef4444;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: white;
}

.quick-action-btn:hover {
    background: #dc2626;
}

/* Main product page button */
.add-to-cart-main {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-main:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* Color Scheme Placeholder */
:root {
    --primary-color: #F407E3;
    --primary-light: #D88BFC;
    --secondary-color: #DFB906;
    --accent-color: #3DBD74;
    --gold: #d4af37;
    --gold-light: #f4e191;
    --gold-dark: #b8941f;
    --text-dark: #2c1810;
    --text-light: #8b7355;
    --background: #fdfcf8;
    --background-light: #ffffff;
    --border-color: #e8dcc0;
}

.feature-icon,
.product-button,
.add-to-cart-main,
.newsletter-button,
.back-to-top {
    background: 
        linear-gradient(135deg, 
            #f4e191 0%,
            rgba(244, 7, 227, 0.9) 25%,
            #d4af37 50%,
            rgba(61, 189, 116, 0.9) 75%,
            #b8941f 100%);
    color: white;
    border: 2px solid #d4af37;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    letter-spacing: 1px;
}

.feature-icon:before,
.product-button:before,
.add-to-cart-main:before,
.newsletter-button:before,
.back-to-top:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg, 
            transparent 0deg,
            rgba(255, 255, 255, 0.4) 30deg,
            transparent 60deg,
            rgba(255, 255, 255, 0.4) 120deg,
            transparent 150deg);
    animation: luxuryShine 3s linear infinite;
    z-index: 1;
}

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

.feature-icon:after,
.product-button:after,
.add-to-cart-main:after,
.newsletter-button:after,
.back-to-top:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #d4af37, #f4e191, #b8941f);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.feature-icon:hover,
.product-button:hover,
.add-to-cart-main:hover,
.newsletter-button:hover,
.back-to-top:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        0 25px 60px rgba(244, 7, 227, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: #f4e191;
}

.product-card {
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.9) 0%,
            rgba(244, 7, 227, 0.05) 50%,
            rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid transparent;
    border-radius: 25px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.product-card:before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg, 
        #d4af37 0%,
        rgba(244, 7, 227, 0.8) 25%,
        #f4e191 50%,
        rgba(61, 189, 116, 0.8) 75%,
        #b8941f 100%);
    border-radius: 25px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.product-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 
        0 40px 100px rgba(244, 7, 227, 0.4),
        0 0 20px rgba(212, 175, 55, 0.6);
}

.hero {
    background: 
        radial-gradient(ellipse at top, rgba(244, 7, 227, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #fdfcf8 0%, #ffffff 100%);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

td>img{max-height:70px}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .products {
        padding: 60px 0;
    }
    
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}