/**
 * Embroidery Service - App CSS
 * Tema basato sui colori del logo: rosso (#e31e24) e blu (#0080c8)
 */

:root {
    --primary: #e31e24;      /* Rosso del logo */
    --secondary: #0080c8;    /* Blu del logo */
    --dark: #1a1a1a;         /* Nero per testo */
    --darker: #0f0f0f;       /* Nero più scuro */
    --light: #f8f9fa;        /* Grigio chiaro */
    --white: #ffffff;        /* Bianco */
    --border: #dee2e6;       /* Bordi */
    --text: #333333;         /* Testo principale */
    --text-light: #666666;   /* Testo secondario */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --header-height: 88px;
    --nav-height: 50px;
    --total-header-height: 138px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: var(--total-header-height); /* Spazio per header + nav fixed */
}

/* =============== HEADER & TOP BAR =============== */
.top-bar {
    background: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-item {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.top-bar-item:hover {
    opacity: 0.8;
}

/* HEADER SEMPRE FIXED */
.header {
    background: var(--white);
    border-bottom: 3px solid var(--secondary);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
}

/* =============== SEARCH BOX =============== */
.search-wrapper {
    flex: 1;
    max-width: 700px;
    position: relative;
}

.search-box {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s;
}

.search-box:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 128, 200, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.search-btn {
    background: var(--secondary);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: background 0.3s;
    color: var(--white);
}

.search-btn:hover {
    background: #006bb3;
}

#search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

#search-suggestions.show {
    display: block;
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
    border-bottom: 1px solid var(--border);
}

.search-result-item:hover {
    background: var(--light);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}

.search-result-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

/* =============== HEADER ACTIONS =============== */
.header-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    position: relative;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--light);
    color: var(--primary);
}

.action-btn i {
    font-size: 22px;
}

.cart-badge,
.favorites-badge {
    position: absolute;
    top: 0;
    right: 5px;
    background: var(--primary);
    color: var(--white);
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    padding: 0 4px;
}

.favorites-badge {
    background: var(--secondary);
}

/* =============== NAVIGATION - SEMPRE FIXED =============== */
.nav-main {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    overflow-x: hidden;
    white-space: nowrap;
}

.nav-menu::-webkit-scrollbar {
    height: 3px;
}

.nav-menu::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.nav-menu::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
}

.nav-menu li a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.3s;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu li a:hover {
    background: rgba(0, 128, 200, 0.15);
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-menu li a:hover:after {
    width: 80%;
}

#mobile-menu-toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: none;
}

/* =============== HERO SLIDER =============== */
.hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.main-slider {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slide {
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 420px;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
}

.slide-container {
    width: 100%;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.slide-content {
    flex: 1;
    color: var(--white);
}

.slide-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.slide h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--white);
}

.slide h1 span {
    color: var(--primary);
}

.slide .subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

.slide p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-slide {
    background: var(--primary);
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-slide:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
    background: #cc1a1f;
}

.slide-image {
    flex: 0 0 400px;
    text-align: center;
    position: relative;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* =============== PROMO CARDS =============== */
.promo-cards {
    max-width: 1400px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

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

.promo-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.promo-card-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #f54449 100%);
    color: var(--white);
}

.promo-card-header.blue {
    background: linear-gradient(135deg, var(--secondary) 0%, #33a0d8 100%);
}

.promo-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.promo-card-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.promo-card-body {
    padding: 20px;
}

.promo-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

.promo-product {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 15px;
}

.promo-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-btn:hover:not(:disabled) {
    background: #006bb3;
    transform: translateY(-1px);
}

.promo-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =============== PRODUCTS SECTION =============== */
.products-section {
    padding: 60px 0;
    background: #fafafa;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
}

.section-nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.filter-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text);
    position: relative;
}

.btn-icon:hover:not(:disabled) {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.btn-icon:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-icon.favorite-btn.active i:before {
    content: "\f004"; /* fa-heart solid */
}

/* =============== NEWSLETTER =============== */
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, #f54449 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(35deg);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
}

.newsletter p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 35px;
}

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

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

.newsletter-form button {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.newsletter-form button:hover:not(:disabled) {
    background: #006bb3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.newsletter-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =============== FOOTER =============== */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    color: #adb5bd;
    padding: 60px 0 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #999;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-methods i {
    font-size: 32px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.payment-methods i:hover {
    color: rgba(255,255,255,0.9);
}

/* =============== SLICK SLIDER =============== */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0;
}

.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--dark);
}

.slick-prev:before {
    content: "\f053";
}

.slick-next:before {
    content: "\f054";
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    list-style: none;
}

.slick-dots button {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.slick-dots .slick-active button {
    width: 30px;
    border-radius: 5px;
    background: var(--secondary);
    border-color: var(--secondary);
}

/* =============== ANIMATIONS =============== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0); 
    }
    40% { 
        transform: translateY(-20px); 
    }
    60% { 
        transform: translateY(-10px); 
    }
}

.bounce {
    animation: bounce 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.pulse {
    animation: pulse 0.5s ease-in-out;
}

/* =============== LOADING =============== */
.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

button.loading:after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
    .slide-container {
        padding: 40px;
        gap: 40px;
    }

    .slide h1 {
        font-size: 36px;
    }

    .slide-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 110px;
        --nav-height: 50px;
        --total-header-height: 160px;
    }
    
    body {
        padding-top: var(--total-header-height);
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo img {
        height: 45px;
    }

    .search-wrapper {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .header-actions {
        margin-left: auto;
    }

    .action-btn span:not(.cart-badge):not(.favorites-badge) {
        display: none;
    }

    #mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker);
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        max-height: calc(100vh - var(--total-header-height));
        overflow-y: auto;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 15px 20px;
    }

    .hero-section {
        padding: 20px 0;
    }

    .slide {
        min-height: auto;
    }

    .slide-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
    }

    .slide h1 {
        font-size: 28px;
    }

    .slide .subtitle {
        font-size: 16px;
    }

    .slide-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .slide-image img {
        max-height: 200px;
    }

    .promo-cards {
        margin: 30px auto;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .section-title {
        font-size: 24px;
    }

    .section-nav {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .newsletter h3 {
        font-size: 28px;
    }

    .newsletter p {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
    
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .slick-prev {
        left: 10px;
    }
    
    .slick-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }

    .slide h1 {
        font-size: 24px;
    }

    .price-current {
        font-size: 24px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .action-btn {
        padding: 5px;
    }
}

/* =============== CUSTOM SCROLLBAR =============== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #006bb3;
}
