:root {
    --primary-color: #0088ff;
    --primary-hover: #33a3ff;
    --primary-light: rgba(0, 136, 255, 0.15);
    --accent-color: #ffd200;
    --accent-red: #ff4d5a;
    --accent-green: #2ecc71;
    --dark-bg: #090a0f;
    --body-bg: #090a0f;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.7);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #f9fafb;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* WARM LION BACKGROUND STYLES */
.warm-lion-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    z-index: -10;
    pointer-events: none;
}

.warm-lion-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 136, 255, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 210, 0, 0.08) 0%, transparent 45%);
    animation: warm-lion-glow 16s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -9;
}

.warm-lion-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, rgba(9, 10, 15, 0.7) 100%);
    pointer-events: none;
    z-index: -8;
}

@keyframes warm-lion-glow {
    0% {
        filter: hue-rotate(0deg) blur(30px);
        transform: scale(1);
    }
    50% {
        filter: hue-rotate(60deg) blur(50px);
        transform: scale(1.1);
        background-position: 5% 15%, -5% -15%;
    }
    100% {
        filter: hue-rotate(-30deg) blur(40px);
        transform: scale(1);
        background-position: 0 0, 0 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select {
    font-family: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HEADER STYLES */
.main-header.new-style-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.new-style-header .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bottom-header {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-container {
    padding: 8px 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), #00a2ff);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.logo-icon {
    width: 22px;
    height: 22px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.logo-text::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-left: 2px;
    margin-top: 10px;
}

.nav-menu.center-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu.center-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    text-transform: none;
    letter-spacing: normal;
}

.nav-menu.center-nav .nav-link:hover, .nav-menu.center-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-separator {
    color: var(--border-color);
    user-select: none;
}

.text-accent {
    color: var(--accent-red);
}

.text-accent:hover {
    color: #ff6b76;
}

.text-accent::after {
    background-color: var(--accent-red);
}

/* User & Cart Actions */
.new-style-header .header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.new-style-header .action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.new-style-header .action-item:hover {
    background: transparent;
}

.new-style-header .action-icon {
    width: 28px;
    height: 28px;
    color: #111827;
}

.new-style-header .icon-badge-wrapper {
    position: relative;
    display: flex;
}

.new-style-header .icon-only-action .badge, .new-style-header .cart-btn .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #0066cc;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.new-style-header .account-text, .new-style-header .cart-text {
    display: flex;
    flex-direction: column;
}

.new-style-header .subtext {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.2;
}

.new-style-header .maintext {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

/* End of Header Actions Overrides */

/* APP CONTAINER LAYOUT */
.app-container {
    max-width: 1440px;
    margin: 24px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* NEW TOP LAYOUT (Sidebar + Main Area) */
.new-layout-container {
    max-width: 1440px;
    margin: 24px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.top-layout-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* LEFT SIDEBAR */
.shop-categories-sidebar {
    width: 260px;
    flex-shrink: 0;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-header {
    background-color: #0066cc;
    color: white;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-header i {
    width: 20px;
    height: 20px;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.sidebar-menu a:hover {
    background-color: #f9fafb;
    color: #0066cc;
}

.sidebar-menu a i:first-child {
    width: 18px;
    height: 18px;
    color: #6b7280;
}

.sidebar-menu a .arrow {
    margin-left: auto;
    width: 16px;
    height: 16px;
}

/* RIGHT MAIN AREA */
.top-main-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

/* Search Bar Row */
.search-bar-row {
    display: flex;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.search-category-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
    background-color: #f3f4f6;
    border-right: 1px solid #e5e7eb;
}

.search-category-dropdown select {
    background: transparent;
    padding-right: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    appearance: none;
    cursor: pointer;
}

.search-category-dropdown i {
    position: absolute;
    right: 10px;
    width: 16px;
    height: 16px;
    color: #9ca3af;
    pointer-events: none;
}

.search-input-field {
    flex-grow: 1;
    display: flex;
    align-items: center;
    background-color: #f3f4f6;
    padding: 0 20px;
}

.search-input-field input {
    width: 100%;
    background: transparent;
    font-size: 14px;
    color: #111827;
}

.search-input-field input::placeholder {
    color: #9ca3af;
}

.search-submit-btn {
    background-color: #0066cc;
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 0 30px;
    transition: background-color 0.2s;
}

.search-submit-btn:hover {
    background-color: #0052a3;
}

/* NEW HERO CAROUSEL */
.hero-carousel.new-hero {
    height: 420px;
    border-radius: 8px;
    margin: 0;
    width: 100%;
    background-color: #000;
    box-shadow: none;
}

.new-hero .slide-content {
    align-items: flex-start;
    text-align: left;
    padding-left: 50px;
}

.new-hero .promo-badge {
    background: transparent;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0;
    margin-bottom: 10px;
}

.new-hero .slide-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.new-hero .slide-price {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

/* 3 PROMO BANNERS ROW */
.promo-banners-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.small-promo {
    height: 180px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
}

.small-promo.banner-brown { background-color: #eaddd0; }
.small-promo.banner-pink { background-color: #eaddf0; }
.small-promo.banner-gray { background-color: #e2e8f0; }

.small-promo .promo-content {
    position: relative;
    z-index: 2;
}

.small-promo .promo-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    display: inline-block;
    margin-bottom: 15px;
}

.small-promo .bg-red { background-color: #ef4444; }

.small-promo h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.small-promo p {
    font-size: 12px;
    color: #4b5563;
    font-weight: 600;
}

.small-promo img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    height: 120%;
    z-index: 1;
    object-fit: contain;
}

/* POPULAR CATEGORIES HORIZONTAL ROW */
.popular-categories {
    margin-bottom: 35px;
    width: 100%;
}

.popular-categories .section-block-title {
    margin-bottom: 20px;
    font-size: 22px;
}

.categories-horizontal-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.category-item-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    cursor: pointer;
    box-shadow: none;
    transition: transform var(--transition-fast);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 90px;
}

.category-item-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.category-item-card.active {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.cat-card-icon-wrapper {
    background-color: var(--card-bg);
    color: var(--text-dark);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.category-item-card:hover .cat-card-icon-wrapper {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 136, 255, 0.3);
}

.category-item-card.active .cat-card-icon-wrapper {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 136, 255, 0.3);
}

.cat-card-icon {
    width: 28px;
    height: 28px;
}

.cat-card-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
    transition: color var(--transition-fast);
}

.category-item-card.active .cat-card-name {
    color: var(--primary-color);
    font-weight: 700;
}

/* SIDEBAR CATEGORIES */
.sidebar-categories {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 90px;
    z-index: 10;
}

.categories-header {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 20px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-menu-icon {
    width: 20px;
    height: 20px;
}

.categories-list {
    padding: 10px 0;
}

.category-item a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    gap: 12px;
    transition: all var(--transition-fast);
}

.category-item:hover > a {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding-left: 24px;
}

.cat-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.category-item:hover .cat-icon {
    color: var(--primary-color);
}

.arrow-icon {
    margin-left: auto;
    width: 16px;
    height: 16px;
    color: var(--text-light);
    transition: transform var(--transition-fast);
}

.category-item:hover .arrow-icon {
    transform: translateX(4px);
    color: var(--primary-color);
}

/* MAIN CONTENT */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* SEARCH SECTION IN HEADER */
.search-section-header {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.search-section-header:focus-within {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 4px 6px;
}

.category-select-wrapper {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 15px;
    margin-right: 15px;
    min-width: 140px;
}

.category-select-wrapper select {
    width: 100%;
    padding: 8px 25px 8px 15px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    background-color: transparent;
    cursor: pointer;
    appearance: none;
}

.category-select-wrapper select option {
    background-color: #0f121d;
    color: var(--text-dark);
}

.select-arrow {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-input-wrapper {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper input {
    width: 100%;
    padding: 8px 15px;
    font-size: 14px;
    color: var(--text-dark);
    background-color: transparent;
}

.search-input-wrapper input::placeholder {
    color: var(--text-muted);
}

.clear-search-btn {
    position: absolute;
    right: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.clear-search-btn:hover {
    color: white;
}

.clear-search-btn i {
    width: 16px;
    height: 16px;
}

.search-btn-header {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    flex-shrink: 0;
}

.search-btn-header:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.search-btn-icon-alone {
    width: 18px;
    height: 18px;
}

/* HERO CAROUSEL */
.hero-carousel {
    background-color: var(--dark-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 400px;
    box-shadow: var(--shadow-md);
    max-width: 1440px;
    margin: 24px auto;
    width: calc(100% - 48px);
}

.carousel-track-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-track {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 40px 60px;
    z-index: 1;
}

.carousel-slide.active-slide {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(20px);
    opacity: 0;
    transition: transform var(--transition-slow) 0.15s, opacity var(--transition-slow) 0.15s;
}

.active-slide .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-accent {
    background: linear-gradient(135deg, #a855f7, #6366f1);
}

.badge-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.slide-title {
    font-family: var(--font-heading);
    color: white;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.slide-price {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    font-weight: 500;
}

.price-val {
    color: var(--accent-color);
    font-size: 26px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-left: 6px;
}

.btn {
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

.btn-primary i {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

/* Image container */
.slide-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: scale(0.9) translateX(30px);
    opacity: 0;
    transition: transform var(--transition-slow) 0.2s, opacity var(--transition-slow) 0.2s;
}

.active-slide .slide-image-container {
    transform: scale(1) translateX(0);
    opacity: 1;
}

.slide-img {
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
    transition: transform 6s ease-in-out;
}

.active-slide .slide-img {
    transform: scale(1.03);
}

/* Some unsplash images are stylized differently */
.custom-img-style {
    border-radius: var(--radius-md);
    max-height: 280px;
}

/* Carousel Indicators */
.carousel-nav {
    position: absolute;
    bottom: 24px;
    left: 60px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.35);
    transition: all var(--transition-fast);
}

.carousel-indicator.active-dot {
    width: 24px;
    background-color: var(--primary-color);
}

.carousel-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* DEMO PRODUCTS SECTION */
.demo-products-section {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 24px;
}

.section-container {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.view-all-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all-link i {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.view-all-link:hover {
    color: var(--primary-hover);
}

.view-all-link:hover i {
    transform: translateX(4px);
}

/* Horizontal Product Sliders */
.slider-wrapper {
    position: relative;
    width: 100%;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.products-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.products-slider .product-card {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--card-bg);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Product Card */
.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 102, 204, 0.15);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent-red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.badge-new {
    background-color: var(--accent-green);
}

.product-image-wrapper {
    padding: 15px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-image-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-overlay-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
    transition: bottom var(--transition-fast);
    z-index: 6;
}

.product-card:hover .product-overlay-actions {
    bottom: 0;
}

.product-action-btn {
    background-color: white;
    color: var(--text-dark);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.product-action-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-action-btn i {
    width: 18px;
    height: 18px;
}

/* Info */
.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
}

.star-icon {
    width: 13px;
    height: 13px;
    color: var(--text-light);
}

.star-icon.fill {
    color: var(--accent-color);
    fill: var(--accent-color);
}

.rating-count {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 4px;
}

.product-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #ef4444; /* Changed to red like screenshot */
}

.old-price {
    font-size: 13px;
    color: #9ca3af; /* Light grey */
    text-decoration: line-through;
}

/* DEMO FOOTER */
.demo-footer {
    text-align: center;
    padding: 30px;
    background-color: #111827;
    color: #9ca3af;
    font-size: 13px;
    margin-top: 40px;
}

/* NEW BANNERS AND LAYOUT STYLES */
.full-width-iphone-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1d5d1; /* Light pink */
    border-radius: 8px;
    padding: 0 60px;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.iphone-banner-content {
    z-index: 2;
}

.iphone-banner-content .collection-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #4b5563;
}

.iphone-banner-content .banner-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    margin: 15px 0 25px 0;
}

.iphone-banner-image {
    height: 120%;
    position: relative;
    right: -20px;
    top: 20px;
    z-index: 1;
}

.iphone-banner-image img {
    height: 100%;
    object-fit: cover;
}

.top-selling-tabs a {
    text-decoration: none;
    transition: color 0.2s;
}

.top-selling-tabs a:hover {
    color: #0066cc !important;
}

.compact-product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
    .app-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar-categories {
        display: none; /* Hide categories list on mobile or make drawer */
    }
    
    .hero-carousel {
        height: 350px;
    }
    
    .slide-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 12px 15px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    
    .nav-menu ul {
        justify-content: flex-start;
        gap: 20px;
    }
    
    .header-actions {
        order: 2;
        gap: 10px;
    }
    
    .account-text, .cart-text .subtext {
        display: none; /* Keep it compact */
    }
    
    .hero-carousel {
        height: auto;
        min-height: 300px;
    }
    
    .carousel-slide {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 20px;
    }
    
    .slide-image-container {
        grid-row: 1;
        justify-content: flex-start;
        height: 180px;
    }
    
    .slide-img {
        max-height: 100%;
    }
    
    .carousel-nav {
        left: 30px;
        bottom: 15px;
    }
    
    .search-btn span {
        display: none;
    }
    
    .search-btn {
        padding: 12px 15px;
    }
    
    .search-btn-icon {
        display: block;
    }
    
    .category-select-wrapper {
        min-width: 120px;
        padding-right: 5px;
        margin-right: 5px;
    }
    
    .category-select-wrapper select {
        padding-left: 5px;
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .product-card {
        border-radius: var(--radius-sm);
    }
    
    .product-image-wrapper {
        padding: 8px;
    }
    
    .product-image-wrapper img {
        max-height: 135px;
    }
}

/* HOMEPAGE NEW SECTIONS STYLING */

/* 1. Split Promo Banners */
.promo-banners-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.promo-banner-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 240px;
}

.promo-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.banner-yellow {
    background: linear-gradient(135deg, #ffd200, #ffea00);
    color: #111;
}

.banner-black {
    background: linear-gradient(135deg, #1e2229, #090a0f);
    color: white;
}

.banner-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
    max-width: 60%;
}

.banner-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
}

.btn-banner-shop {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 12px;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-yellow .btn-banner-shop {
    background-color: var(--primary-color);
    color: white;
}

.banner-yellow .btn-banner-shop:hover {
    background-color: var(--primary-hover);
}

.banner-black .btn-banner-shop {
    background-color: var(--primary-color);
    color: white;
}

.banner-black .btn-banner-shop:hover {
    background-color: var(--primary-hover);
}

.banner-card-image {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 38%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner-card-image img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    transition: transform var(--transition-normal);
}

.promo-banner-card:hover .banner-card-image img {
    transform: scale(1.08) rotate(-2deg);
}

/* 2. Deals and Arrivals Grid */
.deals-and-arrivals {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 40px;
}

.section-block-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
}

/* Deal of the Day Card (Vertical Layout) */
.deal-card {
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 520px;
    align-items: stretch;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.deal-card-main-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.deal-image-side {
    width: 100%;
    height: 240px;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.deal-image-side a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.deal-image-side img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.deal-thumbs-side {
    display: flex;
    flex-direction: row; /* Horizontal thumbnails row! */
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.deal-thumb {
    width: 55px;
    height: 55px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 4px;
    cursor: pointer;
    background-color: #ffffff;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.deal-thumb:hover, .deal-thumb.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.deal-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.deal-info-side {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.deal-cat-badge {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.deal-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 15px;
}

.deal-rating .star-icon {
    width: 14px;
    height: 14px;
}

.deal-rating .star-icon.fill {
    color: var(--accent-color);
    fill: var(--accent-color);
}

.deal-rating .rating-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 5px;
}

.deal-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.deal-cash-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-red);
    font-family: var(--font-heading);
}

.deal-normal-price {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Countdown Clock */
.deal-countdown {
    width: 100%;
    margin-bottom: 10px;
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
}

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.countdown-timer {
    display: flex;
    gap: 8px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--text-dark);
    color: white;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    min-width: 50px;
}

.timer-num {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.timer-label {
    font-size: 9px;
    opacity: 0.7;
    margin-top: 2px;
    text-transform: uppercase;
}

/* New Arrivals List */
.new-arrivals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.horizontal-product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.horizontal-product-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(0, 136, 255, 0.25);
}

.horiz-image-wrapper {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.horiz-image-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.horiz-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.horiz-info-side {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.horiz-brand {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.horiz-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.horiz-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 6px;
}

.horiz-rating .star-icon {
    width: 11px;
    height: 11px;
    color: var(--text-light);
}

.horiz-rating .star-icon.fill {
    color: var(--accent-color);
    fill: var(--accent-color);
}

.horiz-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.horiz-cash-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.horiz-old-price {
    font-size: 11px;
    color: var(--text-light);
    text-decoration: line-through;
}

/* 3. Brands Showcase Grid */
.brand-showcase {
    background-color: transparent;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    margin: 40px 0;
}

.brand-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.brand-item {
    background-color: var(--card-bg);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.brand-grid .brand-item:nth-child(6n) {
    border-right: none;
}

.brand-grid .brand-item:nth-child(n+7) {
    border-bottom: none;
}

.brand-item:hover {
    background-color: var(--primary-light);
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.08);
    z-index: 5;
}

.brand-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.brand-item:hover .brand-logo-text {
    color: var(--primary-color);
}

/* Styled specific brand text */
.brand-asus {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    letter-spacing: -0.5px;
}

.brand-dell {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.brand-lenovo {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}

.brand-hp {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 15px;
}

.brand-item:hover .brand-hp {
    border-color: var(--primary-color);
}

.brand-intel {
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}

.brand-nvidia {
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-item:hover .brand-nvidia {
    color: #76b900 !important; /* Nvidia Green */
}

.brand-amd {
    letter-spacing: 1px;
}

.brand-item:hover .brand-amd {
    color: #ed1c24 !important; /* AMD Red */
}

.brand-samsung {
    font-weight: 900;
    letter-spacing: 0.5px;
}

.brand-msi {
    font-weight: 900;
    font-style: italic;
}

.brand-item:hover .brand-msi {
    color: #ff0000 !important;
}

.brand-gigabyte {
    font-size: 14px;
    letter-spacing: 0px;
}

.brand-kingston {
    font-size: 15px;
    text-transform: capitalize;
}

.brand-wd {
    letter-spacing: 1.5px;
}

/* 4. Newsletter & Technology Lifestyle Gallery */
.newsletter-gallery-section {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 24px;
}

.newsletter-wrapper {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 45px 30px;
    text-align: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 16px 20px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--primary-hover);
}

.tech-gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 204, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-overlay i {
    width: 24px;
    height: 24px;
    transform: scale(0.8);
    transition: transform var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* 5. Site Footer */
.site-footer {
    background-color: #15181e;
    color: #ccd4e0;
    padding: 70px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-about .logo-text {
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #a0aec0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon i {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 3px;
}

.payment-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #a0aec0;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge-card {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    background-color: #0e1014;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #718096;
}

/* RESPONSIVE DESIGN FOR NEW SECTIONS */
@media (max-width: 1024px) {
    .promo-banners-split {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .deals-and-arrivals {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brand-grid .brand-item:nth-child(3n) {
        border-right: none;
    }
    
    .tech-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

/* ZOTAC Brand Style */
.brand-zotac {
    color: #0099cc;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .deal-card {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-grid .brand-item:nth-child(2n) {
        border-right: none;
    }
    
    .tech-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .newsletter-title {
        font-size: 18px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius-md);
        box-shadow: none;
        gap: 10px;
        background: transparent;
        border: none;
    }
    
    .newsletter-form input {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        padding: 12px 15px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: var(--radius-md);
        padding: 12px 20px;
    }
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown .dropdown-menu li {
    width: 100%;
}

.nav-item-dropdown .dropdown-menu .dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    transition: background 0.2s;
    text-decoration: none;
    font-size: 15px;
}

.nav-item-dropdown .dropdown-menu .dropdown-link:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

/* Tienda Styles */
.range-slider {
    position: relative;
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.range-track {
    position: absolute;
    height: 100%;
    background: #0066cc;
    border-radius: 4px;
    z-index: 1;
}
.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    pointer-events: none;
    background: none;
    -webkit-appearance: none;
    z-index: 2;
    margin: 0;
}
.range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #0066cc;
    border-radius: 50%;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
    transition: color 0.2s;
}
.filter-checkbox-label:hover {
    color: #111827;
}
.filter-checkbox-label input {
    accent-color: #0066cc;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Override product card styles for better look */
.product-card {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    background: white !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
    width: 100% !important; /* Allow grid to manage width */
    max-width: none !important;
    min-width: 0 !important;
}
.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    transform: translateY(-4px) !important;
}

.product-image-container {
    position: relative !important;
    width: 100% !important;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 15px !important;
    border-radius: 8px !important;
    background: white !important;
}

.product-image {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

.favorite-btn {
    position: absolute !important;
    top: 5px !important;
    right: 5px !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #9ca3af !important;
    transition: all 0.2s !important;
}
.favorite-btn:hover {
    color: #ef4444 !important;
    border-color: #ef4444 !important;
}

.discount-badge {
    position: absolute !important;
    top: 5px !important;
    left: 5px !important;
    background: #ef4444 !important;
    color: white !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.product-info {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.product-brand {
    font-size: 12px !important;
    color: #6b7280 !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

.product-title {
    font-size: 14px !important;
    color: #111827 !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    height: 40px !important; /* Force fixed height for alignment */
}

.product-rating svg.fill, .product-rating .fill {
    color: #fbbf24 !important;
    fill: #fbbf24 !important;\n    stroke: #fbbf24 !important;
}
.product-rating svg, .product-rating i {
    color: #e5e7eb !important;
    width: 14px !important;
    height: 14px !important;
}

.product-price {
    margin-top: auto !important; /* Push to bottom */
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.btn-add-cart {
    background-color: white !important;
    color: #0066cc !important;
    border: 1px solid #0066cc !important;
    transition: all 0.2s !important;
}
.btn-add-cart:hover {
    background-color: #0066cc !important;
    color: white !important;
}

/* Force Yellow Stars */
.product-rating svg.fill,
.product-rating .star-icon.fill,
.product-rating svg.star-icon.fill {
    color: #fbbf24 !important;
    fill: #fbbf24 !important;
    stroke: #fbbf24 !important;
}

.product-rating svg,
.product-rating .star-icon {
    color: #d1d5db !important;
    stroke: #d1d5db !important;
    fill: none !important;
}

/* CART DRAWER & OVERLAY */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.close-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-btn:hover {
    color: var(--accent-red);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-drawer-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 5px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-details h4 {
    font-size: 14px;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: auto;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-selector button {
    background: var(--bg-color);
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
}

.qty-selector button:hover {
    background: #e5e7eb;
}

.qty-selector span {
    width: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.remove-btn {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: var(--accent-red);
}

.remove-btn i {
    width: 18px;
    height: 18px;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: #fafbfc;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-tax-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 15px;
}

.checkout-btn {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px;
}

/* FIX FOR PRODUCT IMAGES TO PREVENT THEM FROM BEING HUGE */
.product-card {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
}

.product-image-wrapper {
    height: 200px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-image-wrapper img {
    max-height: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

/* NEW SERVICES BANNERS GRID */
.services-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    margin: 60px auto;
    max-width: 1440px;
    padding: 0 24px;
}

.service-banner {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    cursor: pointer;
    height: 250px;
}

.service-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE & TABLET RESPONSIVENESS OVERRIDES */
@media (max-width: 1024px) {
    .new-style-header .header-container {
        padding: 12px 16px;
    }
    
    .nav-menu.center-nav ul {
        gap: 20px;
    }
    
    .services-banners-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 16px;
    }
    
    .service-banner {
        height: 200px;
    }
    
    .service-banner:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Header optimization */
    .main-header.new-style-header {
        z-index: 10000 !important;
    }
    
    .new-style-header .header-container {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
    }
    
    .new-style-header .account-text,
    .new-style-header .cart-text {
        display: none !important;
    }
    
    .new-style-header .header-actions {
        gap: 15px;
    }
    
    /* Mobile Hamburger Menu Drawer & Overlay */
    .mobile-menu-toggle {
        display: flex !important;
        background: none !important;
        border: none !important;
        padding: 5px !important;
        cursor: pointer !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .mobile-menu-toggle i {
        width: 24px !important;
        height: 24px !important;
        color: #1a1a1a !important;
    }
    
    .nav-menu.center-nav {
        position: fixed !important;
        top: 0 !important;
        right: -280px !important; /* Hide offscreen */
        width: 280px !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important;
        z-index: 9999 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 80px 24px 40px 24px !important;
        transition: right 0.3s ease !important;
        order: unset !important;
        overflow-x: visible !important;
        white-space: normal !important;
    }
    
    .nav-menu.center-nav.open {
        right: 0 !important; /* Slide in */
    }
    
    .nav-menu.center-nav ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        align-items: flex-start !important;
        width: 100% !important;
    }
    
    .nav-menu.center-nav ul li {
        width: 100% !important;
    }
    
    .nav-menu.center-nav .nav-link {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        display: block !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #f3f4f6 !important;
    }
    
    .nav-item-dropdown .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 5px 0 5px 15px !important;
        min-width: 0 !important;
        background: transparent !important;
    }
    
    .nav-item-dropdown .dropdown-menu .dropdown-link {
        font-size: 15px !important;
        padding: 6px 0 !important;
        color: #555555 !important;
        border-bottom: none !important;
    }
    
    .mobile-menu-close {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        background: none !important;
        border: none !important;
        padding: 5px !important;
        cursor: pointer !important;
        display: block !important;
    }
    
    .mobile-menu-close i {
        width: 24px !important;
        height: 24px !important;
        color: #1a1a1a !important;
    }
    
    .menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
        z-index: 9998 !important;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease !important;
    }
    
    .menu-overlay.open {
        display: block !important;
        opacity: 1 !important;
    }

    /* Layout stack */
    .top-layout-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .shop-categories-sidebar {
        display: none !important;
    }
    
    .top-main-area {
        width: 100%;
    }

    /* Hero Carousel (Slider) - Absolute overlapping overlay layout for premium text legibility */
    .hero-carousel.new-hero {
        height: 230px !important;
        position: relative !important;
    }
    
    .carousel-slide {
        display: block !important;
        position: absolute !important;
        padding: 0 !important;
    }
    
    .new-hero .slide-content {
        position: relative !important;
        z-index: 3 !important;
        width: 75% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding-left: 20px !important;
        padding-right: 10px !important;
    }
    
    .new-hero .slide-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        font-weight: 800 !important;
    }
    
    .new-hero .promo-badge {
        font-size: 10px !important;
        margin-bottom: 4px !important;
    }
    
    .new-hero .slide-price {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }
    
    .new-hero .price-val {
        font-size: 16px !important;
    }
    
    .new-hero .btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
        height: auto !important;
    }
    
    .new-hero .slide-image-container {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding-right: 10px !important;
        opacity: 0.65 !important;
    }
    
    .new-hero .slide-image-container img {
        height: 85% !important;
        width: auto !important;
        object-fit: contain !important;
    }
    
    .slider-btn {
        display: none !important;
    }
    
    /* Search Bar */
    .search-bar-row {
        height: auto;
        flex-direction: column;
        background: transparent;
        gap: 10px;
    }
    
    .search-category-dropdown {
        width: 100%;
        border-right: none;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        height: 45px;
        background: white;
    }
    
    .search-category-dropdown select {
        width: 100%;
    }
    
    .search-input-field {
        width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        height: 45px;
        background: white;
    }
    
    .search-submit-btn {
        width: 100%;
        height: 45px;
        border-radius: 8px;
    }

    /* Promo Banners Row */
    .promo-banners-row-3 {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .small-promo {
        height: 130px !important;
        padding: 20px !important;
    }
    
    .small-promo h3 {
        font-size: 18px !important;
    }
    
    /* Popular Categories */
    .categories-horizontal-grid {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 12px !important;
        padding: 10px 0 !important;
        scrollbar-width: none !important;
    }
    
    .categories-horizontal-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .category-item-card {
        flex-shrink: 0 !important;
        width: 105px !important;
        padding: 15px 10px !important;
    }

    /* Banner Ancho NVIDIA */
    .full-width-iphone-banner {
        height: auto !important;
        min-height: 200px !important;
        flex-direction: column;
        padding: 30px 20px !important;
        gap: 20px;
        text-align: center;
    }
    
    .iphone-banner-content {
        width: 100% !important;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .iphone-banner-content h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    .iphone-banner-image {
        position: relative !important;
        right: auto !important;
        height: auto !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .iphone-banner-image img {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 320px !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    /* Grillas de Productos Responsivas */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .product-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        padding: 10px !important;
        border-radius: 8px !important;
    }
    
    .product-image-wrapper {
        height: 140px !important;
    }
    
    .product-name {
        font-size: 13px !important;
        height: 36px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }
    
    .current-price {
        font-size: 15px !important;
    }
    
    .old-price {
        font-size: 12px !important;
    }
    
    /* Services grid */
    .services-banners-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        margin: 30px auto;
        padding: 0 16px;
    }
    
    .service-banner {
        height: 140px !important;
    }
    
    .service-banner:last-child {
        grid-column: span 1 !important;
    }
    
    /* Deal of the Day (Home block) */
    .deal-arrivals-content {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .deal-column,
    .arrivals-column {
        width: 100% !important;
    }
    
    .arrivals-section-title {
        padding-left: 0 !important;
    }
    
    #deal-of-the-day-card {
        padding: 20px 15px !important;
        flex-direction: column !important;
    }
    
    .deal-card-main-row {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .deal-thumbs-side {
        flex-direction: row !important;
        justify-content: center !important;
        width: 100% !important;
        height: auto !important;
        margin-top: 10px;
    }
    
    .deal-thumb {
        width: 45px !important;
        height: 45px !important;
    }
    
    .deal-image-side {
        width: 100% !important;
        height: 200px !important;
    }
    
    .deal-info-side {
        width: 100% !important;
        padding-left: 0 !important;
        margin-top: 15px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .deal-cat-badge {
        align-self: center !important;
    }
    
    .deal-title {
        font-size: 15px !important;
        text-align: center !important;
    }
    
    .deal-rating {
        justify-content: center !important;
        margin-bottom: 12px !important;
    }
    
    .deal-pricing {
        align-items: center !important;
        margin-bottom: 15px !important;
    }
    
    .deal-countdown {
        text-align: center !important;
        width: 100% !important;
    }
    
    .countdown-timer {
        justify-content: center !important;
    }
    
    .new-arrivals-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Horizontal product card overrides */
    .horizontal-product-card {
        padding: 10px !important;
    }
    
    .horiz-image-wrapper {
        width: 80px !important;
        height: 80px !important;
    }
    
    .horiz-title {
        font-size: 13px !important;
    }
    
    /* Two Square Banners on Mobile */
    .two-square-banners {
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
    
    .square-banner {
        width: 100% !important;
        padding: 30px 20px !important;
        min-height: 220px !important;
    }
    
    .square-banner h2 {
        font-size: 24px !important;
        margin: 5px 0 15px 0 !important;
    }
    
    /* Store Catalog Mobile Layout overrides */
    .store-layout-container {
        flex-direction: column !important;
        padding: 20px 15px !important;
        gap: 20px !important;
    }
    
    .toggle-filters-btn {
        display: flex !important;
        width: 100% !important;
        background-color: #ffffff !important;
        border: 1.5px solid #0066cc !important;
        color: #0066cc !important;
        padding: 12px !important;
        border-radius: 8px !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        cursor: pointer !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.2s ease !important;
    }
    
    .toggle-filters-btn:active {
        background-color: #f3f8ff !important;
        transform: scale(0.98) !important;
    }
    
    .store-sidebar {
        display: none !important; /* Hide on mobile by default */
        width: 100% !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
        padding: 20px !important;
        border: 1px solid #e5e7eb !important;
    }
    
    .store-sidebar.open {
        display: block !important; /* Show when open class toggled */
    }
    
    .store-header {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
        padding: 15px !important;
    }
    
    .store-header-right {
        justify-content: space-between !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    
    .top-selling-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 10px;
    }
    
    .top-selling-tabs a {
        margin-left: 0 !important;
        margin-right: 15px !important;
        font-size: 13px;
    }
}
