/* ============================================
   SMARTVIBE.TECH - STILE COMPLETO
   Versione: 3.0 - Personalizzabile
   ============================================ */

/* ===== VARIABILI COLORE ===== */
:root {
    --primary: #FF9900;      /* Colore principale (arancione) */
    --primary-dark: #e68a00; /* Arancione scuro */
    --secondary: #131921;    /* Blu scuro */
    --accent: #232F3E;       /* Blu medio */
    --bg: #EAEDED;           /* Sfondo */
    --white: #ffffff;
    --black: #111111;
    --grey: #666666;
    --light-grey: #f0f0f0;
    --border: #e7e7e7;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--black);
    line-height: 1.6;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LINK ===== */
a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.site-header {
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===== LOGO ===== */
.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.site-logo .logo-icon {
    background: var(--primary);
    color: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
}

.site-logo span {
    color: var(--white);
    font-weight: 300;
}

.site-logo small {
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
    display: block;
    margin-top: -4px;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    display: flex;
    gap: 4px;
    background: var(--accent);
    padding: 4px;
    border-radius: 8px;
}

.language-selector .lang-btn {
    color: #888;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.language-selector .lang-btn.active {
    background: var(--primary);
    color: var(--secondary);
}

.language-selector .lang-btn:hover {
    background: #3a4a5e;
    color: var(--white);
}

/* ===== SEARCH BAR ===== */
.search-form {
    flex: 1;
    min-width: 250px;
    display: flex;
    max-width: 700px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border 0.2s;
}

.search-form:focus-within {
    border-color: var(--primary);
}

.search-form select {
    background: var(--light-grey);
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    outline: none;
    border-right: 1px solid #ddd;
    min-width: 140px;
}

.search-form input {
    flex: 1;
    border: none;
    padding: 10px 16px;
    font-size: 15px;
    outline: none;
    min-width: 120px;
}

.search-form button {
    background: var(--primary);
    border: none;
    padding: 0 24px;
    color: var(--secondary);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* ===== HEADER RIGHT ===== */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-right .account {
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
}

.header-right .account strong {
    font-size: 15px;
    display: block;
    font-weight: 700;
}

.header-right .account a {
    color: var(--white);
    text-decoration: none;
}

.header-right .cart {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    position: relative;
}

.header-right .cart span {
    font-size: 16px;
    background: var(--primary);
    color: var(--secondary);
    padding: 0 8px;
    border-radius: 30px;
    font-weight: 800;
    line-height: 1.6;
    min-width: 24px;
    text-align: center;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: var(--accent);
    color: var(--white);
    padding: 6px 0;
    font-size: 14px;
    position: sticky;
    top: 70px;
    z-index: 999;
}

.main-nav .container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s;
    font-weight: 500;
    cursor: pointer;
}

.main-nav ul li a:hover {
    color: var(--primary);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e2b3a 100%);
    color: var(--white);
    padding: 60px 0;
    margin: 20px 0 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 400px;
    height: 400px;
    background: rgba(255, 153, 0, 0.08);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 12px;
}

.hero h1 strong {
    color: var(--primary);
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.btn-secondary {
    background: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #3a4a5e;
}

.btn-success {
    background: var(--success);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-danger:hover {
    background: #c82333;
}

/* ===== CATEGORIE ===== */
.featured-categories {
    margin: 30px 0;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.8rem;
    padding: 2px 14px;
    border-radius: 30px;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.category-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.category-card span {
    font-size: 0.8rem;
    color: var(--grey);
}

/* ===== PRODOTTI ===== */
.products-section {
    margin: 30px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    padding: 18px 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.product-card .badge-aff {
    background: #FFD814;
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 30px;
    align-self: flex-start;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.product-card .product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    transition: transform 0.2s;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-card .product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.product-card .rating {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.product-card .rating span {
    color: #555;
    font-size: 0.8rem;
}

.product-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #B12704;
    margin: 8px 0 4px;
}

.product-card .price .old-price {
    font-size: 0.8rem;
    font-weight: 400;
    color: #555;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-card .prime {
    color: #00A8E1;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.product-card .btn-add {
    background: #FFD814;
    border: none;
    padding: 10px 0;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
    width: 100%;
    text-align: center;
    border: 1px solid #F5C800;
}

.product-card .btn-add:hover {
    background: #F5C800;
}

.product-card .btn-affiliate {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 10px 0;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
}

.product-card .btn-affiliate:hover {
    background: var(--primary-dark);
}

.product-card .btn-review {
    background: #6c757d;
    color: var(--white);
    border: none;
    padding: 8px 0;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 6px;
    width: 100%;
    text-align: center;
}

.product-card .btn-review:hover {
    background: #5a6268;
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner {
    background: var(--accent);
    color: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    margin: 30px 0;
}

.affiliate-banner h3 {
    font-size: 1.5rem;
    font-weight: 300;
}

.affiliate-banner h3 strong {
    color: var(--primary);
}

.btn-aff-banner {
    background: var(--primary);
    color: var(--secondary);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-aff-banner:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* ===== CARRETTO ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary);
    color: var(--white);
}

.cart-header h3 {
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f7f7f7;
    border-radius: 6px;
    padding: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.cart-item-details .item-price {
    color: #B12704;
    font-weight: 700;
}

.cart-item-details button {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 8px;
    cursor: pointer;
    background: var(--white);
}

.cart-item-remove {
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f7f7f7;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-total .total-amount {
    color: #B12704;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-checkout:hover {
    background: var(--primary-dark);
}

/* ===== COUPON ===== */
.coupon-section {
    margin-bottom: 15px;
}

.coupon-section .coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-section input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.coupon-section .btn-apply {
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.coupon-section .btn-apply:hover {
    background: var(--primary-dark);
}

.coupon-message {
    font-size: 0.85rem;
    margin-top: 4px;
}

.coupon-message.success {
    color: var(--success);
}

.coupon-message.error {
    color: var(--danger);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--black);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.modal-content h2 i {
    color: var(--primary);
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    flex: 1;
}

/* ===== STAR RATING ===== */
.star-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 10px 0;
}

.star-rating i {
    font-size: 2rem;
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
}

.star-rating i:hover,
.star-rating i.active {
    color: var(--primary);
}

/* ===== REVIEWS ===== */
.review-item {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid var(--primary);
}

.review-item strong {
    color: var(--secondary);
}

.review-item p {
    margin: 6px 0;
    color: var(--black);
}

.review-item small {
    color: #888;
    font-size: 0.8rem;
}

/* ===== PAYMENT ===== */
.btn-pay {
    width: 100%;
    padding: 14px;
    background: var(--success);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-pay:hover {
    background: #218838;
}

.payment-info {
    text-align: center;
    margin-top: 15px;
    color: var(--grey);
    font-size: 0.85rem;
}

.payment-info i {
    color: var(--success);
}

/* ===== NOTIFICHE ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-weight: 600;
    animation: slideIn 0.3s ease;
    max-width: 380px;
}

.notification.info {
    background: var(--primary);
    color: var(--secondary);
}

.notification.success {
    background: var(--success);
    color: var(--white);
}

.notification.warning {
    background: var(--warning);
    color: var(--secondary);
}

.notification.error {
    background: var(--danger);
    color: var(--white);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--secondary);
    color: #ddd;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 3px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-grid h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-grid ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-grid ul li a:hover {
    color: var(--primary);
}

.footer-grid ul li i {
    width: 20px;
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid #2a3a4a;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #888;
}

.logo-footer {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-footer span {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form {
        max-width: 100%;
    }

    .search-form select {
        min-width: 100px;
        font-size: 12px;
        padding: 8px 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .main-nav {
        overflow-x: auto;
        white-space: nowrap;
    }

    .main-nav ul {
        flex-wrap: nowrap;
        gap: 12px;
        font-size: 13px;
    }

    .language-selector {
        margin: 5px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-card {
        padding: 12px;
    }

    .product-card .product-title {
        font-size: 0.8rem;
        min-height: 36px;
    }

    .modal-content {
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== ANIMAZIONI ===== */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== UTILITY ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}