:root {
    --primary-hue: 260;
    --primary: hsl(var(--primary-hue), 80%, 65%);
    --secondary: hsl(300, 80%, 60%);
    --bg-dark: hsl(240, 20%, 8%);
    --glass-bg: hsla(240, 20%, 15%, 0.6);
    --glass-border: hsla(0, 0%, 100%, 0.1);
    --text-main: hsl(0, 0%, 98%);
    --text-muted: hsla(0, 0%, 98%, 0.7);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --header-height: 80px;
}

/* Light Theme Variables */
.light-theme {
    --bg-dark: hsl(240, 30%, 96%);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
    --text-main: hsl(240, 20%, 15%);
    --text-muted: hsla(240, 20%, 15%, 0.7);
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* Utilities */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Layout */
#app {
    padding-top: var(--header-height);
    min-height: 100vh;
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.2rem 0.5rem 0.2rem 1.2rem;
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
    transition: var(--transition);
}

.nav-search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(160, 100, 255, 0.1);
}

#global-search {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 100%;
    padding: 0.5rem 0;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

#global-search::placeholder {
    color: var(--text-muted);
}

#search-btn {
    background: var(--primary);
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

#search-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .nav-search-wrapper {
        display: none;
        /* Hide in mobile nav for now, or move it */
    }
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: -100px;
    /* Offset to center under item */
    width: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.mega-column a:hover {
    color: var(--text-main);
    transform: translateX(5px);
}

.featured-img-col {
    grid-column: 4;
}

.menu-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
}

/* Light Theme Variables */
body.light-theme {
    --bg-dark: #f0f0f5;
    --text-main: #1a1a1a;
    --text-muted: #555;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

body.light-theme .product-card {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body.light-theme .logo span {
    background: var(--primary);
    /* Solid color for light mode visibility */
    -webkit-text-fill-color: var(--primary);
}

.cart-btn {
    position: relative;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    width: 44px;
    /* Minimum touch target */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-btn:hover {
    background: var(--glass-bg);
    border-color: var(--primary);
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

#cart-count.visible {
    opacity: 1;
}

/* Views */
.view {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Enhanced Hero Section */
.hero-enhanced {
    min-height: 80vh;
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    padding: 2rem 0;
    position: relative;
}

/* Hero with Background Image */
.hero-with-bg {
    background-image: linear-gradient(135deg, rgba(10, 10, 20, 0.8), rgba(160, 100, 255, 0.3)),
        url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 20, 0.9), rgba(10, 10, 20, 0.3));
    z-index: 0;
}

.hero-with-bg .hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-image-placeholder {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    animation: slideUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(160, 100, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 100, 255, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-social {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: var(--radius-sm);
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-add {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 50px;
    background: var(--text-main);
    color: var(--bg-dark);
}

.btn-add:hover {
    background: var(--primary);
    color: white;
}

.btn-icon {
    padding: 0.5rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-icon:hover {
    border-color: var(--primary);
    background: var(--glass-bg);
}

/* Responsive Buttons */
@media (max-width: 768px) {
    .btn:not(.btn-add):not(.btn-icon) {
        width: 100%;
    }
}

/* Hero Section */
.hero-enhanced {
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.floating-card {
    display: none;
    /* Hidden to focus on the new hero background image */
    position: absolute;
    background: var(--glass-bg);
}

.floating-card.card-1 {
    width: 280px;
    height: 400px;
    top: 50px;
    left: 50%;
    margin-left: -140px;
    background: linear-gradient(135deg, rgba(160, 100, 255, 0.3), rgba(200, 100, 255, 0.3));
    animation-delay: 0s;
    z-index: 2;
}

.floating-card.card-2 {
    width: 220px;
    height: 300px;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.25), rgba(150, 100, 255, 0.25));
    animation-delay: 2s;
    z-index: 1;
}

.floating-card.card-3 {
    width: 200px;
    height: 260px;
    bottom: 0;
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 100, 200, 0.25), rgba(255, 150, 100, 0.25));
    animation-delay: 4s;
    z-index: 3;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Bento Categories Showcase */
.bento-categories {
    margin-bottom: 6rem;
    padding: 0 5%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: #1a1a1a;
    /* Fallback */
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}

.bento-item:hover img {
    transform: scale(1.08);
}

.bento-label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0.6rem 0.6rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 2;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bento-label span {
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    letter-spacing: -0.02em;
}

.bento-arrow {
    width: 36px;
    height: 36px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.bento-item:hover .bento-label {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bento-item:hover .bento-arrow {
    transform: rotate(-45deg);
    background: var(--primary);
}

/* Grid Spanning */
.item-shirts {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item-soles {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.item-accessories {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.item-native {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.item-full-look {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

.product-grid-header {
    margin: 4rem 0 2rem;
    text-align: center;
}

/* Responsive Bento */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-rows: repeat(2, 300px);
    }
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .item-shirts,
    .item-soles,
    .item-accessories,
    .item-native,
    .item-full-look {
        grid-column: auto;
        grid-row: auto;
        height: 400px;
    }

    .item-soles {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .item-shirts,
    .item-soles,
    .item-accessories,
    .item-native,
    .item-full-look {
        grid-column: auto;
        height: 350px;
    }

    .bento-label {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 0.5rem 0.5rem 1.2rem;
    }

    .bento-label span {
        font-size: 1rem;
    }
}

/* Featured Section */
.featured-section {
    margin: 6rem 0;
}

.featured-banner {
    position: relative;
    height: 500px;
    background-image: linear-gradient(135deg, rgba(200, 100, 255, 0.8), rgba(160, 100, 255, 0.6)),
        url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.7), rgba(160, 100, 255, 0.4));
    z-index: 1;
}

.featured-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.featured-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.featured-content h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
}

.featured-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.featured-content .btn-primary {
    box-shadow: 0 10px 30px rgba(160, 100, 255, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image-placeholder {
        height: 350px;
    }

    .floating-card.card-1 {
        width: 220px;
        height: 300px;
        margin-left: -110px;
        top: 25px;
    }

    .floating-card.card-2,
    .floating-card.card-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-enhanced {
        min-height: 60vh;
        margin-bottom: 4rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    animation: slideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: #222;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Product Card Meta */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Dashboard View */
.dashboard-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.sidebar-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-menu button.active {
    color: var(--primary);
    border-color: var(--primary);
}

.dashboard-content h2 {
    margin-bottom: 1.5rem;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--glass-border);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: slideUp 0.3s ease-out;
}

.cart-item img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-checkout {
    /* Extends .btn .btn-primary */
    width: 100%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.overlay.visible {
    opacity: 1;
    pointer-events: all;
}

/* Animations Helpers */
.flying-img {
    position: fixed;
    z-index: 3000;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Blog Page */
.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    /* Extends .btn .btn-secondary */
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.filter-btn:hover {
    border-color: var(--primary);
    background: rgba(160, 100, 255, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    animation: slideUp 0.6s ease-out backwards;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.blog-author {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }
}

/* Horizontal Slider Section */
.horizontal-slider-section {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.slider-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
}

.slider-controls {
    display: flex;
    gap: 1rem;
    background: var(--glass-bg);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.control-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.control-btn.btn-next {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.control-btn:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

.control-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 1rem;
}

.slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.slider-card {
    width: 240px;
    min-width: 240px;
    flex-shrink: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.slider-image {
    width: 100%;
    aspect-ratio: 1;
    background: #222;
    position: relative;
    overflow: hidden;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slider-card:hover .slider-image img {
    transform: scale(1.05);
}

.slider-info {
    padding: 1.5rem;
    text-align: left;
}

.slider-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slider-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo h3 {
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--text-main);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-main);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Light theme footer adjustments */
body.light-theme .site-footer {
    background: #fafafa;
    border-top-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer {
        padding: 3rem 5% 1.5rem;
        margin-top: 4rem;
    }
}