/* 
   Theme: NAKS Comfort - Premium Furniture
   Style: Modern Luxury (Enhanced)
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Colors - High-End Professional Palette */
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-text-main: #0f172a;
    --color-text-muted: #64748b;
    --color-primary: #0f172a;
    /* Deep Navy/Corporate */
    --color-accent: #b45309;
    /* Sophisticated Ochre */
    --color-border: #e2e8f0;
    --color-white: #ffffff;

    /* Interactive */
    --color-hover: #1e293b;
    --color-accent-soft: rgba(180, 83, 9, 0.1);

    /* Elevation */
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
    --transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border: 3px solid var(--color-bg);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

/* Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    /* Slightly increased for professionalism */
    color: var(--color-text-main);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
{
   font-family: #C9C9C9;
    color: #b9c4dd;;
    line-height: 1.2;
    font-weight: 600;
}
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 600;
}

h2 {
    font-size: 3.2rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
}

.text-center p {
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utils */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-bg-alt);
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Standardize Forms */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-soft);
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section-subtitle {
    display: block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-padding {
    padding: 120px 0;
    /* Consistent spacing */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Header */
.main-header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-text-main);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.action-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Account Dropdown */
.account-dropdown-container {
    position: relative;
    display: inline-block;
}

.account-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: white;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.account-dropdown-container:hover .account-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.account-dropdown-menu li a:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6)), url('../assets/4.png') center/cover no-repeat;
    z-index: 1;
    animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15) translate(1%, 1%);
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 0;
    transition: var(--transition-bounce);
    position: relative;
    border: 1px solid var(--color-border);
    perspective: 1000px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

@media (max-width: 992px) {
    .product-card.featured {
        grid-column: span 1;
        display: flex;
    }
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px var(--color-accent-soft);
    border-color: var(--color-accent);
}

.product-img {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-alt);
    margin: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card.featured .product-img {
    height: 100%;
    aspect-ratio: auto;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.glass-plus {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 25px 15px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ff8b33;;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    color: white;
}

.product-info {
    padding: 25px 20px;
    background: white;
}

.product-category {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text-main);
    letter-spacing: -0.2px;
}

.product-info .price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-accent);
    display: block;
    margin-bottom: 20px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 5;
    letter-spacing: 1px;
}

.product-badge.new {
    background: #fdf2f2;
    color: #e02424;
}

.product-badge.out-of-stock {
    background: #f3f4f6;
    color: #4b5563;
}

.product-actions {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    background: var(--color-primary);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart:hover {
    background: var(--color-accent);
    box-shadow: 0 5px 15px var(--color-accent-soft);
}

.btn-add-cart i {
    font-size: 1rem;
}

/* Shop By Category */
.category-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    height: 600px;
}

.category-card {
    position: relative;
    overflow: hidden;
    background: #000;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card:hover img {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.6;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 10;
}

.category-info h3 {
    color: white;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-info h3 {
    transform: translateY(0);
    opacity: 1;
}

.category-info .link-btn {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    transition-delay: 0.1s;
}

.category-card:hover .category-info .link-btn {
    transform: translateY(0);
    opacity: 1;
}

.category-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-col .category-card {
    height: calc(50% - 15px);
}

.category-card.large .category-info h3 {
    font-size: 2.5rem;
}

/* Promo Banner */
.promo-banner {
    background: url('../assets/4.png') no-repeat center center/cover;
    /* Fallback to hero if promo image missing */
    background-attachment: fixed;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.promo-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.promo-tag {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.promo-content h2 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1.1;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Section Premium */
.about-section-premium {
    background-color: var(--color-bg);
    padding: 140px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-main-img:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-primary);
    color: white;
    padding: 35px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--box-shadow-lg);
    min-width: 180px;
    z-index: 5;
    transition: var(--transition);
}

.experience-badge:hover {
    transform: translate(-10px, -10px);
    background: #000;
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text-content .section-subtitle {
    color: var(--color-accent);
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.about-text-content h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.feature-list {
    margin: 40px 0;
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-accent);
    background: rgba(197, 164, 126, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.about-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-box .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
    }
}

/* Floating Social Buttons */
.floating-social-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn {
    background-color: #25D366;
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Account Dropdown */
.account-dropdown-container {
    position: relative;
}

.account-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    min-width: 200px;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: var(--box-shadow-lg);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.account-dropdown-container:hover .account-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.account-dropdown-menu li a:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-accent);
}

/* Side Panels & Overlay */
.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    height: 100%;
    background: var(--color-bg);
    z-index: 2000;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.side-panel.active {
    right: 0;
}

.side-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.side-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.panel-inner {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.close-panel {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.close-panel:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* Cart Specific */
.cart-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
}

.cart-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    overflow: hidden;
}

#cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 15px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color-bg-alt);
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: var(--color-bg-alt);
    border-radius: 4px;
}

.item-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.item-price {
    color: var(--color-accent);
    font-weight: 600;
    display: block;
}

.quantity-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    width: fit-content;
    border-radius: 4px;
    margin-top: 10px;
}

.qty-btn {
    background: none;
    border: none;
    padding: 5px 12px;
    cursor: pointer;
    color: var(--color-primary);
    font-weight: 600;
}

.cart-summary {
    background: var(--color-bg-alt);
    padding: 30px;
    margin-top: 20px;
    border-radius: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    margin-top: 10px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: var(--color-bg);
    z-index: 2000;
    padding: 100px 50px;
    transition: var(--transition);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul li {
    margin-bottom: 30px;
}

.mobile-menu a {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Footer */
.main-footer {
    background: var(--color-primary);
    color: #fff;
    padding: 120px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    color: white;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    display: block;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.footer-subscribe-form {
    display: flex;
    margin-top: 25px;
}

.footer-subscribe-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px 0 0 4px;
    padding: 12px 20px;
    color: white;
}

.footer-subscribe-form button {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

/* Professional UX Helpers */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Parallax (Simple) */
.hero {
    background-attachment: fixed;
    height: 90vh;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .side-panel {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

    h2 {
        font-size: 2.2rem;
    }
}
