/* 
Khod Global Trade - Ultra Modern Stylesheet
Premium Design with Contemporary Aesthetics
*/

/* 1. CSS Variables & Reset
-------------------------------------------------- */
:root {
    /* Modern Color Palette - Deep Purple & Vibrant Accents */
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    
    --secondary-color: #ec4899;
    --secondary-hover: #db2777;
    --secondary-light: #f472b6;
    
    --accent-color: #14b8a6;
    --accent-hover: #0d9488;
    
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;

    /* Text Colors */
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-dark: #0f172a;
    --headings-color: #0f172a;

    /* Background Colors */
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-card: #ffffff;

    /* Border & Effects */
    --border-color: #e2e8f0;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --box-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', sans-serif;
    
    /* Layout */
    --container-width: 1280px;
    --header-height: 72px;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--headings-color);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75em;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* 2. Buttons & Forms
-------------------------------------------------- */
.btn-primary, .btn-secondary, .btn-login, .btn-register, .btn-register-submit, .btn-login-submit, .btn-place-order, .btn-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn-primary, .btn-register-submit, .btn-login-submit, .btn-place-order, .btn-checkout {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover, .btn-register-submit:hover, .btn-login-submit:hover, .btn-place-order:hover, .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary, .btn-login {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-secondary:hover, .btn-login:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.025em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition-base);
    background-color: var(--bg-light);
    font-family: var(--font-family);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.alert {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-sm);
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

/* 3. Header & Navigation
-------------------------------------------------- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo img {
    height: 70px;
    transition: var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

/* 3. Logo Text Block Style */
.logo-text {
    /* Ensures the different lines of text stack on top of each other */
    display: flex; 
    flex-direction: column;
    /* Adjust spacing between text lines if needed */
    line-height: 1.2; 
}

/* 4. Individual Text Line Styles */
.logo-main-name {
    font-size: 2.2em;
    font-weight: 800; /* Make 'KHOD' bold and prominent */
    color: #FFFFFF; /* Use white or a high-contrast color */
    line-height: 1; /* Tighten up the line height for the main name */
}

.logo-slogan {
    font-size: 1em;
    font-weight: 500;
    color: #AAAAAA; /* A slightly lighter shade for secondary text */
}

.logo-tagline {
    font-size: 0.8em;
    font-style: italic;
    color: #BBBBBB;
}



/* 6. Responsiveness (Crucial for a clean header) */
@media (max-width: 768px) {
   
    .logo-main-name {
        font-size: 1.5em; /* Smaller main name text */
    }
    .logo-slogan, .logo-tagline {
        font-size: 0.7em; /* Even smaller secondary text */
    }
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.cart-count {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    color: #fff;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 0.7rem;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}

/* USER MENU STYLES */
.user-menu {
    position: relative;
    cursor: pointer;
}

/* USERNAME BUTTON */
.user-menu > .user-menu-toggle {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.user-menu > .user-menu-toggle:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.user-menu > .user-menu-toggle i {
    font-size: 0.8rem;
    transition: var(--transition-base);
}

.user-menu.active > .user-menu-toggle i {
    transform: rotate(180deg);
}

/* DROPDOWN (HIDDEN BY DEFAULT) */
.user-menu .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--bg-card);
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--border-radius);
    padding: 8px;
    min-width: 200px;
    z-index: 1001;
    border: 1px solid var(--border-color);
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    pointer-events: none;
}

/* SHOW WHEN ACTIVE */
.user-menu.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: auto;
}

.user-menu .dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-color);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition-base);
    cursor: pointer;
}

.user-menu .dropdown a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    transform: translateX(4px);
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-menu .dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-color);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition-base);
}

.user-menu .dropdown a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    transform: translateX(4px);
}

.mobile-menu-toggle, .mobile-menu {
    display: none;
}

.mobile-bottom-nav,
.mobile-profile-menu {
    display: none;
}

/* 4. Footer
-------------------------------------------------- */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #cbd5e1;
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px; /* Add space at the bottom of the page */
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer-section p, .footer-section li {
    margin-bottom: 0.875rem;
    line-height: 1.8;
}

.footer-section a {
    color: #cbd5e1;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 1.15rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* 5. Page Specific Styles
-------------------------------------------------- */

/* --- General Page Structure --- */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #1e1b4b 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    color: #fff;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
}

.main-content {
    min-width: 0;
}

/* --- Homepage --- */
.hero {
    background:  url('../images/about.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
}

.featured-categories, .featured-products, .features {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 320px;
    transition: var(--transition-base);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.15);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    color: #fff;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.category-card:hover .category-info {
    transform: translateY(0);
}

.category-info h3 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.category-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.feature-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* --- ENHANCED PRODUCTS GRID & CARD --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.7);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.badge-sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.badge-featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-base);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions button {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.product-actions button:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-name {
    margin-bottom: 0.75rem;
}

.product-name a {
    color: var(--headings-color);
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition-base);
    line-height: 1.4;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.discount-percent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ENHANCED ADD TO CART BUTTON */
.btn-add-to-cart {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border: none;
    color: white;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: auto;
    font-weight: 700;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-add-to-cart:hover {
    background: linear-gradient(135deg, #4338ca, #6d28d9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.btn-add-to-cart:active {
    transform: translateY(-1px);
}

.btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-add-to-cart:hover::before {
    left: 100%;
}

/* Quick view button */
.btn-quick-view {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-base);
    opacity: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card:hover .btn-quick-view {
    opacity: 1;
    bottom: 30px;
}

.btn-quick-view:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced product detail page button */
.btn-add-to-cart-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    transition: var(--transition-base);
    letter-spacing: 0.025em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-add-to-cart-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    background: linear-gradient(135deg, #4338ca, #6d28d9);
}

/* --- Sidebar --- */
.sidebar {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    align-self: start;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.sidebar-section {
    margin-bottom: 2.5rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition-base);
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child a {
    border-bottom: none;
}

.category-list li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.product-count {
    color: var(--text-light);
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- Auth Pages (Login/Register) --- */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.auth-form {
    padding-right: 3.5rem;
    border-right: 2px solid var(--border-color);
}

.auth-form h2 {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-benefits h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.auth-benefits ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
}

.auth-benefits ul li:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    transform: translateX(8px);
}

.auth-benefits ul li i {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.auth-switch a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* --- Cart Page --- */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.cart-items {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.cart-items h2 {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr 0.5fr;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr 0.5fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.cart-item:hover {
    background: var(--bg-light);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: var(--border-radius-sm);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-product {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.item-product img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow);
}

.item-product h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.item-product p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.quantity-selector button {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--bg-light);
    cursor: pointer;
    font-weight: 700;
    color: var(--text-color);
    transition: var(--transition-base);
}

.quantity-selector button:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.item-total {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--error-color);
    font-size: 1.35rem;
    cursor: pointer;
    transition: var(--transition-base);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-remove-item:hover {
    background-color: #fee2e2;
    transform: scale(1.1);
}

.cart-summary {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    border: 2px solid var(--border-color);
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: 800;
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-cart {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.empty-cart i {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* --- Product Detail Page --- */
.breadcrumb {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    border: 1px solid var(--border-color);
}

.main-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    transition: var(--transition-base);
}

.main-image img:hover {
    transform: scale(1.02);
}

.product-info .product-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.product-info .product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-info .product-rating {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.product-info .product-price {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-info .product-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-color);
}

.product-actions {
    display: flex;
    gap: 1.25rem;
    margin: 2.5rem 0;
    align-items: center;
}

.btn-add-to-cart-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: var(--transition-base);
    letter-spacing: 0.025em;
}

.btn-add-to-cart-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-wishlist-large {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

.btn-wishlist-large:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.related-products {
    margin-top: 5rem;
}

.related-products h2 {
    margin-bottom: 3rem;
}

/* --- My Orders Page --- */
.orders-list .order-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    padding: 2rem;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.orders-list .order-card:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.order-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.order-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.order-meta span {
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-delivered { 
    background: linear-gradient(135deg, var(--success-color), #059669);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.status-shipped { 
    background: linear-gradient(135deg, var(--info-color), #0891b2);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.status-processing { 
    background: linear-gradient(135deg, var(--warning-color), #d97706);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.status-pending { 
    background: linear-gradient(135deg, var(--secondary-color), #57534e);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.status-cancelled { 
    background: linear-gradient(135deg, var(--error-color), #dc2626);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.order-items {
    margin: 1.5rem 0;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.order-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.order-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-view-order {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-view-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-track-order {
    padding: 10px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-track-order:hover {
    background: var(--primary-color);
    color: #fff;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 4rem;
}

.page-link {
    padding: 12px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition-base);
    min-width: 45px;
    text-align: center;
}

.page-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.page-link:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- About Page --- */
.about-page-content {
    padding: 2rem 0;
}

.about-section {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.about-section h2 {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section p {
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

/* 
Khod Global Trade - Responsive Stylesheet
*/

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }

    .page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-row: 1;
        position: static;
    }

    .auth-container {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .auth-form {
        border-right: none;
        padding-right: 0;
        padding-bottom: 2.5rem;
        border-bottom: 2px solid var(--border-color);
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
        padding: 0 16px;
    }

    .main-nav {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.75rem;
        cursor: pointer;
        color: var(--text-dark);
        transition: var(--transition-base);
    }

    .mobile-menu-toggle:hover {
        color: var(--primary-color);
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .mobile-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu ul li a {
        display: block;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        font-weight: 600;
        color: var(--text-dark);
        transition: var(--transition-base);
    }

    .mobile-menu ul li a:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
        color: var(--primary-color);
        padding-left: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        background: var(--bg-light);
        border-radius: var(--border-radius-sm);
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
    }

    .item-product {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-item > div:not(.item-product) {
        padding: 0.75rem 0;
    }

    .item-quantity {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .item-actions {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    body {
        padding-bottom: 70px;
    }

    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        height: 70px;
        border-top: 1px solid var(--border-color);
    }

    .mobile-bottom-nav .nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--text-light);
        font-size: 0.7rem;
        cursor: pointer;
        transition: var(--transition-base);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .mobile-bottom-nav .nav-item:hover,
    .mobile-bottom-nav .nav-item.active {
        color: var(--primary-color);
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    /* Mobile Bottom Nav Cart Count */
    .mobile-bottom-nav .nav-item .cart-count {
        position: absolute;
        top: -2px;
        right: 15px;
        background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
        color: #fff;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
        border: 2px solid white;
        /* This span is for the count, not the "Cart" text */
        text-transform: none; 
    }

    .mobile-profile-menu {
        position: fixed;
        bottom: 85px;
        right: 16px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow-lg);
        z-index: 1001;
        width: 200px;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

    .mobile-profile-menu.active {
        display: block;
        animation: fadeInUp 0.3s ease;
    }

    .mobile-profile-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 1.25rem 1.5rem;
        color: var(--text-color);
        border-bottom: 1px solid var(--border-color);
        font-weight: 600;
        transition: var(--transition-base);
    }

    .mobile-profile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-profile-menu a:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: #fff;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .auth-container {
        padding: 2rem;
    }
    
    .product-detail {
        padding: 2rem;
    }
}