/* ========================================
   Fashop.id - Premium UI Design System
   Clean, Responsive, Modern
   ======================================== */

:root {
    /* Premium Color Palette - Blue Theme */
    --primary: #1E9BD4;
    --primary-dark: #0D7AB5;
    --primary-light: #4CB8E8;
    --secondary: #0D7AB5;
    --secondary-light: #1E9BD4;

    /* Neutral Colors */
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --off-white: #f8fafc;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Status Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;

    /* Gradients - Blue Theme */
    --gradient-primary: linear-gradient(135deg, #1E9BD4 0%, #0D7AB5 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-light: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 40px -10px rgba(30, 155, 212, 0.4);
    --shadow-secondary: 0 10px 40px -10px rgba(13, 122, 181, 0.4);

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input,
textarea,
select {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Compact Typography */
h1 {
    font-size: 24px !important;
}

h2 {
    font-size: 20px !important;
}

h3 {
    font-size: 18px !important;
}

.btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
}

.form-input {
    padding: 10px 14px !important;
    font-size: 14px !important;
}

/* Header & Nav Structure */
.header-main {
    padding: 12px 0 12px 0 !important;
    background: white;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.category-nav {
    background: white;
    padding: 12px 0 16px 0 !important;
    border-top: none !important;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: none !important;
    margin-top: 0 !important;
}

/* FORCE CENTER ALIGNMENT FOR NAV (Desktop) */
.category-nav .container {
    display: flex;
    justify-content: center !important;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0 auto !important;
    /* Desktop center */
}

/* MOBILE RESPONSIVE NAV FIX */
@media (max-width: 768px) {
    .category-nav .container {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        white-space: nowrap;
    }

    .nav-links {
        margin: 0 !important;
        gap: 20px;
        padding-right: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    /* Hide scrollbar but keep functionality */
    .category-nav .container::-webkit-scrollbar {
        height: 0px;
        background: transparent;
    }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--dark);
    color: white;
}

.btn-secondary:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    background: var(--off-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius);
}

/* ========================================
   Forms
   ======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input-icon {
    position: relative;
}

.form-input-icon .form-input {
    padding-left: 48px;
}

.form-input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    accent-color: var(--primary);
}

/* ========================================
   Cards
   ======================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.card-glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ========================================
   Hero Section - Premium Design
   ======================================== */
.hero {
    padding: 30px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.hero-main {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 48px;
}

.hero-text {
    max-width: 55%;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: white;
}

.hero-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 40%;
}

.hero-image img {
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* Side Banners */
.hero-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.side-banner {
    flex: 1;
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-banner.exclusive {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
}

.side-banner.browse {
    background: var(--dark);
    color: white;
}

.side-banner .tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
    text-transform: uppercase;
}

.side-banner h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}

.side-banner .banner-img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100px;
    border-radius: var(--radius);
}

/* ========================================
   Category Explore Section
   ======================================== */
.explore-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 15px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
}

.explore-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.explore-item:hover {
    transform: translateY(-8px);
}

.explore-icon {
    width: 80px;
    height: 80px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text);
    margin-bottom: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.explore-item:hover .explore-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-color: var(--primary-light);
    color: var(--primary);
}

.explore-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* ========================================
   Products Grid
   ======================================== */
/* ========================================
   Products Grid
   ======================================== */
.products-section {
    padding: 60px 0;
}

.products-section.bg-light {
    background: var(--off-white);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.products-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.bg-light {
    background: var(--off-white);
}

.page-header {
    margin-bottom: 32px;
}

.filter-sidebar {
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.products-grid {
    gap: 24px;
}

.products-header h2 {
    font-size: 20px;
}

.products-tabs button {
    padding: 8px 16px;
    font-size: 12px;
}

.products-tabs button:hover,
.products-tabs button.active {
    background: var(--primary);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.products-grid.small {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: transparent;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--off-white);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 700;
}

.product-badge.sale {
    background: var(--danger);
}

.product-badge.new {
    background: var(--success);
}

.product-actions {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-actions button {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: none;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-size: 16px;
    color: var(--text);
}

.product-actions button:hover {
    background: var(--primary);
    color: white;
}

.product-info {
    padding: 16px;
}

.product-category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin: 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    color: var(--dark);
}

.product-name a:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.price-original {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0e6ff 0%, #ffe6f0 100%);
    color: var(--primary-light);
    font-size: 48px;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--off-white);
    border: none;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover:not(:disabled) {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.btn-add-cart:disabled {
    background: var(--border-light);
    color: var(--text-muted);
    cursor: not-allowed;
}

.banner-desc {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.9;
}

/* ========================================
   Promo Banners
   ======================================== */
.promo-section {
    padding: 40px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.promo-card {
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.promo-card.purple {
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
}

.promo-card.pink {
    background: linear-gradient(135deg, #fecdd3 0%, #fda4af 100%);
}

.promo-info {
    position: relative;
    z-index: 1;
}

.promo-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.promo-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.promo-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.promo-link:hover {
    gap: 10px;
}

.promo-card img {
    max-width: 150px;
    max-height: 150px;
    border-radius: var(--radius);
    object-fit: cover;
}

/* ========================================
   Newsletter
   ======================================== */
.newsletter {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
}

.newsletter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    color: white;
}

.newsletter-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.newsletter-content p {
    font-size: 15px;
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    width: 320px;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    outline: none;
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ========================================
   WhatsApp Float
   ======================================== */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
    }
}

/* ========================================
   Page Layouts
   ======================================== */
.page-section {
    padding: 60px 0;
    min-height: 60vh;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

/* ========================================
   Alerts
   ======================================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.alert-success {
    background: var(--success-light);
    color: #065f46;
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: var(--danger-light);
    color: #991b1b;
    border-left: 4px solid var(--danger);
}

.alert-warning {
    background: var(--warning-light);
    color: #92400e;
    border-left: 4px solid var(--warning);
}

.alert-info {
    background: var(--info-light);
    color: #1e40af;
    border-left: 4px solid var(--info);
}

/* ========================================
   Badges
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
}

.badge-primary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.badge-success {
    background: var(--success-light);
    color: #065f46;
}

.badge-warning {
    background: var(--warning-light);
    color: #92400e;
}

.badge-danger {
    background: var(--danger-light);
    color: #991b1b;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-main {
        min-height: 350px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image {
        width: 35%;
        right: 20px;
    }

    .explore-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid.small {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 32px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-image {
        display: none;
    }

    .hero-side {
        flex-direction: row;
    }

    .explore-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .explore-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .products-grid.small {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .hero-title {
        font-size: 24px;
    }

    .explore-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .explore-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .explore-item span {
        font-size: 11px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 13px;
    }

    .price-current {
        font-size: 14px;
    }
}

/* ========================================
   Loading Skeleton Animation
   ======================================== */
.skeleton {
    background: linear-gradient(90deg, var(--border-light) 25%, var(--border) 50%, var(--border-light) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   Scrollbar Styling
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}