/* Search Results Page */
.search-section {
    padding: 2.5rem 0 3rem 0;
    background: #f9fafb;
    min-height: 70vh;
}
.search-header {
    margin-bottom: 2rem;
    text-align: left;
}
.search-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}
.search-query {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 0;
}
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem 1.5rem;
    margin-bottom: 2rem;
}
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0 2rem 0;
    color: var(--gray-500);
    font-size: 1.15rem;
}
@media (max-width: 600px) {
    .search-section {
        padding: 1.2rem 0 2rem 0;
    }
    .search-title {
        font-size: 1.3rem;
    }
    .search-results-grid {
        gap: 1.2rem 0.7rem;
    }
}
/* Center Auth/Register Page */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #19191a 0%, #23233a 100%);
    padding: 2rem 0;
}

.auth-page .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}

.auth-box.register-box {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(30,41,59,0.18);
    padding: 2.5rem 2rem 1.5rem 2rem;
    color: var(--white);
}

@media (max-width: 600px) {
    .auth-box.register-box {
        max-width: 98vw;
        padding: 1.5rem 0.5rem 1rem 0.5rem;
        border-radius: 0.75rem;
    }
    .auth-page .container {
        padding: 0;
    }
}

:root {
    /* Primary Colors */
    --primary: #18ac24;
    --primary-dark: #12861a;
    --primary-light: #7bff86;
    --secondary: black;
    --accent: #f97316;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #01a06b;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
    
    /* Spacing */
    --container-max: 1280px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

picture {
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly minimum size for interactive elements */
@media (hover: none) and (pointer: coarse) {
    a, button, input[type="submit"], .header-action, .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Prevent zoom on input focus for iOS while maintaining 16px minimum */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="search"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* ========================================
   Custom Scrollbar
======================================== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
/* ...existing code... */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    border-radius: 10px;
    border: 2px solid #1e293b;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    border-color: #0f172a;
}

::-webkit-scrollbar-thumb:active {
    background: #0891b2;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #18ac24 #1e293b;
}

/* Light scrollbar for light backgrounds */
.products-page ::-webkit-scrollbar-track,
.main-content ::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.products-page ::-webkit-scrollbar-thumb,
.main-content ::-webkit-scrollbar-thumb {
    border-color: #f1f5f9;
}

/* Mobile menu scrollbar */
.mobile-menu::-webkit-scrollbar {
    width: 8px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #f8fafc;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    border-radius: 10px;
    border: 2px solid #f8fafc;
}

/* ========================================
   Layout & Container
======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.main-content {
    /* Let pages size naturally to their content to avoid large empty areas
       while keeping a small vertical padding for breathing room. */
    min-height: auto;
    overflow-x: hidden;
    flex: 1 0 auto;
}

/* ========================================
   Header & Navigation
======================================== */
.header {

/* ========================================
   Store Page Header/Banner
======================================== */
.store-header {
    position: relative;
    background: none;
    margin-bottom: 2.5rem;
    padding-bottom: 0;
}

.store-banner {
    width: 100%;
    min-height: 220px;
    max-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.10);
    background-color: #e5e7eb;
}

.store-banner:not([style*="background-image"]),
.store-banner[style*="background-image: url('');"] {
    background-image: url('/marketplace/public/images/store-banner-default.jpg');
    background-color: #e5e7eb;
}

.store-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,41,59,0.10) 0%, rgba(30,41,59,0.25) 100%);
    pointer-events: none;
    z-index: 1;
}

.store-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.store-logo {
    width: 120px;
    height: 120px;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 4px 24px rgba(30,41,59,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #f3f4f6;
    font-size: 2.5rem;
}

.store-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.store-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 3rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.store-details {
    flex: 1;
}

.store-details h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.store-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--gray-500);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.store-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .store-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-top: -60px;
    }
    .store-logo {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    .store-details h1 {
        font-size: 1.3rem;
    }
    .store-banner {
        min-height: 120px;
        max-height: 180px;
        border-radius: 0 0 1rem 1rem;
    }
}
    background: linear-gradient(135deg, var(--secondary) 0%, #000000 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    padding: var(--spacing-sm) 0;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 45px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.search-bar {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.search-bar form {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.search-bar form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.25);
}

.search-bar input {
    flex: 1;
    padding: 0.2rem 1.5rem;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.search-bar input::placeholder {
    color: var(--gray-400);
}

.search-bar button {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.search-bar button:hover {
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    transform: scale(1.02);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-action {
    color: var(--gray-300);
    font-size: 1.25rem;
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.header-action:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.header-action .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, var(--accent) 0%, #e85d04 100%);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: var(--radius-full);
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(249, 115, 22, 0.4);
}

/* Cart Icon Specific */
.cart-dropdown {
    margin-right: 1rem;
}

.cart-icon {
    background: rgba(62, 179, 200, 0.15);
    border: 2px solid rgba(62, 179, 200, 0.3);
}

.cart-icon:hover {
    background: rgba(24, 172, 36, 0.15);
    border-color: #18ac24;
    color: #18ac24;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.btn-login {
    padding: 0.5rem 1.25rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-login:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-signup {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    transition: all var(--transition-fast);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    min-width: 280px;
    max-width: 320px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.5rem;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    color: var(--gray-700);
    font-size: 0.925rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-menu li a i {
    width: 20px;
    font-size: 1rem;
    color: #18ac24 !important;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.25);
}

.dropdown-menu li a:hover i {
    color: #18ac24 !important;
    transform: scale(1.1);
}

.dropdown-menu .divider {
    height: 1px;
    background: var(--gray-100);
    margin: var(--spacing-xs) 0;
}

/* Categories Dropdown */
.categories-dropdown .dropdown-menu {
    min-width: 300px;
    max-width: 340px;
}

.categories-dropdown .dropdown-menu li a {
    padding: 0.875rem 1rem;
}

/* Cart Dropdown */
.cart-dropdown {
    position: relative;
}

.cart-dropdown .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 380px;
    max-width: 400px;
    padding: 0;
    max-height: 500px;
    overflow: hidden;
}

.cart-preview .cart-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.cart-preview .cart-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-preview .cart-header .items-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.cart-items-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 0.75rem;
}

.cart-item-preview {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    transition: background 0.2s;
}

.cart-item-preview:hover {
    background: var(--gray-100);
}

.cart-item-preview .item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: white;
}

.cart-item-preview .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-preview .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 1.5rem;
}

.cart-item-preview .item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-preview .item-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-item-preview .item-price {
    margin: 0;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.cart-preview .more-items {
    text-align: center;
    padding: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.cart-preview .cart-footer {
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.cart-preview .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-preview .cart-total strong {
    color: var(--primary);
    font-size: 1.25rem;
}

.cart-preview .cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.cart-preview .cart-actions .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    justify-content: center;
}

.cart-preview .btn-secondary {
    background: var(--gray-600);
}

.cart-preview .btn-secondary:hover {
    background: var(--gray-700);
}

/* Empty Cart */
.cart-empty {
    min-width: 320px;
}

.empty-cart-message {
    text-align: center;
    padding: 2rem 1.5rem;
}

.empty-cart-message i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.empty-cart-message p {
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.empty-cart-message .btn {
    padding: 0.75rem 1.5rem;
}

/* Scrollbar for cart items */
.cart-items-list::-webkit-scrollbar {
    width: 6px;
}

.cart-items-list::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.cart-items-list::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 10px;
}

.cart-items-list::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.user-menu .dropdown-toggle {
    color: var(--gray-200);
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    font-size: 1.25rem;
    background: rgba(62, 179, 200, 0.15);
    border: 2px solid rgba(62, 179, 200, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #18ac24;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 0;
}

.mobile-menu-toggle i {
    position: relative;
    z-index: 1;
}

.mobile-menu-toggle:hover {
    border-color: #18ac24;
    transform: scale(1.05);
}

.mobile-menu-toggle:hover::before {
    width: 100%;
    height: 100%;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: #18ac24;
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #1a9f64;
    color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-weight:900;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    padding: 0.5rem;
    border-radius: var(--radius-full);
    color: #18ac24 !important;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #000000 100%);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-content h1 .highlight {
    color: var(--primary-light);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-xl);
}

.hero-search {
    margin-bottom: var(--spacing-xl);
}

.hero-search form {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 500px;
}

.hero-search input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
}

.hero-search .btn {
    border-radius: 0;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.hero-stats .label {
    color: var(--gray-400);
}

.hero-image img {
    max-width: 100%;
}

/* ========================================
   Sections
======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.section-header .btn {
    margin-top: var(--spacing-md);
}

/* About page specific layout to center content and control margins */
.about-page {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.about-page .about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    color: var(--gray-700);
}

.about-page .about-content p {
    margin-bottom: var(--spacing-lg);
}

.about-page .about-content ul {
    margin-bottom: var(--spacing-lg);
    padding-left: 1rem;
    list-style: disc;
}

.about-page h3 {
    margin-bottom: var(--spacing-sm);
}

/* Card styling for about content */
.about-page .about-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: calc(var(--spacing-lg) + 0.5rem);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.about-page .lead {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .about-page .about-card {
        padding: var(--spacing-md);
    }
    .about-page .about-content {
        max-width: 100%;
    }
}

/* Categories */
.categories-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products Grid - Single Column */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content .subtitle {
        font-size: 0.9rem;
    }
    
    /* Product Cards - Mobile Optimized */
    .product-card {
        max-width: 100%;
    }
    
    .product-image {
        aspect-ratio: 4/5;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .product-price {
        font-size: 1.125rem;
    }
    
    /* Category Cards */
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* ========================================
   Landscape Tablet Support
======================================== */
@media (max-width: 1024px) and (orientation: landscape) {
    .header-content {
        height: 60px;
        padding: 0.5rem 0;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .search-bar {
        max-width: 350px;
    }
    
    .search-bar input,
    .search-bar button {
        padding: 0.625rem 1rem;
    }
}

/* ========================================
   Extra Small Devices (320px and below)
======================================== */
@media (max-width: 375px) {
    .container {
        padding: 0 0.875rem;
    }
    
    .header-content {
        padding: 0.625rem 0;
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .search-bar input {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .search-bar button {
        padding: 0.5rem 0.75rem;
    }
    
    .header-action {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .badge {
        font-size: 0.55rem;
        min-width: 14px;
        height: 14px;
    }
    
    .section-header h2 {
        font-size: 1.375rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .header,
    .footer,
    .mobile-menu,
    .mobile-menu-overlay,
    .back-to-top,
    .header-actions,
    .auth-buttons {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        text-decoration: underline;
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.category-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.category-card h3 {
    color: var(--secondary);
    margin-bottom: var(--spacing-xs);
}

.category-card .count {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Featured, New Arrivals, Best Sellers */
.featured-section,
.new-arrivals-section,
.bestsellers-section {
    padding: var(--spacing-2xl) 0;
}

.new-arrivals-section {
    background: var(--gray-100);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

/* ========================================
   Product Card
======================================== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.product-card .badge {
    position: absolute;
    top: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    z-index: 10;
}

.product-card .sale-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(238, 90, 111, 0.3);
    left: var(--spacing-sm);
    padding: 0.375rem 0.9rem;
    font-size: 0.75rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.product-card .featured-badge {
    background: linear-gradient(135deg, #ffd93d 0%, #f6c000 100%);
    color: var(--secondary);
    box-shadow: 0 2px 8px rgba(255, 217, 61, 0.3);
    right: var(--spacing-sm);
    padding: 0.375rem 0.9rem;
    font-size: 0.75rem;
    border: 1px solid rgba(15,23,42,0.04);
}

.product-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 180px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-normal);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6px;
    min-height: 180px;
}

/* Ensure broken images still show placeholder background */
.product-image img[src=""],
.product-image img:not([src]) {
    visibility: hidden;
}

.product-image::before {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #d1d5db;
    z-index: 0;
}

.product-image img {
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: var(--spacing-sm);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.action-btn i {
    font-size: 0.9rem;
}

.product-info {
    padding: var(--spacing-sm) var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    margin-bottom: 2px;
}

.product-category a {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.product-category a:hover {
    color: var(--secondary);
}

.product-title {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.35;
    font-weight: 600;
}

.product-title a {
    color: var(--secondary);
    transition: color var(--transition-fast);
}

.product-title a:hover {
    color: var(--primary);
}

.product-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-sm);
}

.product-meta .seller a {
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.product-meta .seller a:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.product-rating .stars {
    color: var(--warning);
    font-size: 0.8rem;
}

.product-rating .stars i {
    margin-right: 1px;
}

.rating-count {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xs);
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.product-price .price,
.product-price .sale-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .original-price {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-sales {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-sales i {
    color: var(--primary);
    opacity: 0.7;
}

/* ========================================
   Features Section
======================================== */
.features-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 2rem;
    border-radius: var(--radius-full);
    margin: 0 auto var(--spacing-md);
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--gray-500);
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.cta-benefits {
    margin-bottom: var(--spacing-xl);
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.cta-benefits i {
    color: var(--success);
}

/* ========================================
   Newsletter Section
======================================== */
.newsletter-section {
    padding: var(--spacing-2xl) 0;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

.newsletter-content p {
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #000 !important;
    color: #cbd5e1;
    padding: 4.5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    box-shadow: 0 2px 20px rgba(62, 179, 200, 0.6);
    animation: shimmer 3s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(62, 179, 200, 0.03), transparent);
    animation: slide 15s linear infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes slide {
    to { left: 100%; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(62, 179, 200, 0.15);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #007109 0%, #18ac24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-section h4 i {
    color: #18ac24;
    font-size: 1rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #006308 0%, #18ac24 100%);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(62, 179, 200, 0.5);
}

.footer-section p {
    line-height: 1.8;
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0.875rem;
}

.footer-section ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a i.fa-chevron-right {
    font-size: 0.7rem;
    color: #18ac24;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #18ac24;
    padding-left: 0.5rem;
}

.footer-section ul li a:hover i.fa-chevron-right {
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(62, 179, 200, 0.08);
    color: #18ac24;
    border: 2px solid rgba(62, 179, 200, 0.2);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #18ac24;
    border-radius: 12px;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    border-color: #18ac24;
    color: #ffffff;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(62, 179, 200, 0.4);
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

/* Individual social colors on hover */
.social-ig:hover::before { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-ig:hover { border-color: #e1306c; box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4); }

.social-pt:hover::before { background: #e60023; }
.social-pt:hover { border-color: #e60023; box-shadow: 0 10px 25px rgba(230, 0, 35, 0.4); }

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    padding: 0.875rem;
    background: rgba(62, 179, 200, 0.05);
    border-radius: 8px;
    border-left: 3px solid #18ac24;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    background: rgba(62, 179, 200, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #004f07 0%, #18ac24 100%);
    color: #ffffff;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details a {
    color: #18ac24;
    font-weight: 500;
}

.contact-details a:hover {
    color: #18ac24;
    text-decoration: underline;
}

.contact-details span {
    color: #cbd5e1;
    font-weight: 500;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, rgba(62, 179, 200, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
    border: 1px solid rgba(62, 179, 200, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.newsletter-box h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-box h5 i {
    color: #18ac24;
}

.newsletter-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(62, 179, 200, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #18ac24;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(62, 179, 200, 0.1);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #005207 0%, #18ac24 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 179, 200, 0.4);
}

.newsletter-form button i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-details a:hover {
    color: #06b6d4;
    text-decoration: underline;
}

.contact-details span {
    color: #cbd5e1;
    font-weight: 500;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    font-size: 0.85rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(62, 179, 200, 0.08) 100%);
    margin: 0 calc(-1 * var(--spacing-md));
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    border-top: 2px solid rgba(62, 179, 200, 0.3);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3);
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-left p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
    font-size: 0.85rem;
}

.footer-bottom-left strong {
    color: #18ac24;
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 0 20px rgba(62, 179, 200, 0.3);
}

.footer-tagline {
    font-size: 0.8rem;
    margin-top: 0.25rem !important;
    color: #94a3b8;
}

.footer-tagline i {
    color: #ef4444;
    font-size: 0.75rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

.footer-bottom-center {
    justify-self: center;
}

.trust-badges {
    display: flex;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(145deg, rgba(62, 179, 200, 0.12), rgba(62, 179, 200, 0.05));
    border: 1px solid rgba(62, 179, 200, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(62, 179, 200, 0.2), transparent);
    transition: left 0.5s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge i {
    font-size: 1.25rem;
    color: #18ac24;
    filter: drop-shadow(0 4px 12px rgba(62, 179, 200, 0.4));
    transition: all 0.3s ease;
}

.trust-badge:hover i {
    transform: scale(1.1);
    color: #4fd1e5;
}

.trust-badge span {
    font-size: 0.65rem;
    color: #e2e8f0;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.trust-badge:hover {
    background: linear-gradient(145deg, rgba(62, 179, 200, 0.2), rgba(62, 179, 200, 0.1));
    border-color: #18ac24;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(62, 179, 200, 0.35);
}

.footer-bottom-right {
    text-align: right;
    justify-self: end;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-methods i {
    font-size: 1.75rem;
    color: #94a3b8;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 2px solid transparent;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.payment-methods i:hover {
    color: #18ac24;
    transform: translateY(-5px) scale(1.05);
    background: rgba(62, 179, 200, 0.1);
    border-color: rgba(62, 179, 200, 0.4);
    box-shadow: 0 8px 20px rgba(62, 179, 200, 0.3);
}

.payment-methods i:nth-child(1):hover {
    color: #1a1f71;
}

.payment-methods i:nth-child(2):hover {
    color: #eb001b;
}

.payment-methods i:nth-child(3):hover {
    color: #003087;
}

.payment-methods i:nth-child(4):hover {
    color: #635bff;
}

/* ========================================
   Forms
======================================== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group .hint,
.form-group small {
    display: block;
    margin-top: var(--spacing-xs);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.form-row {
    display: flex;
    gap: var(--spacing-md);
}

.form-row.two-col .form-group {
    flex: 1;
}

.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #18ac24 !important;
    z-index: 1;
}

.input-icon input {
    padding-left: 2.5rem;
    padding-right: 3.5rem;
}

.input-icon .toggle-password {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.4rem;
    color: var(--gray-500);
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

.input-icon .toggle-password i {
    position: static;
    transform: none;
    color: var(--gray-500) !important;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
}

.checkbox input {
    width: auto;
    margin-top: 3px;
}

/* ========================================
   Alerts & Flash Messages
======================================== */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.alert {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-success {
    border-left: 4px solid var(--success);
}

.alert-success i {
    color: var(--success);
}

.alert-error {
    border-left: 4px solid var(--danger);
}

.alert-error i {
    color: var(--danger);
}

.alert-close {
    margin-left: auto;
    color: var(--gray-400);
}

/* ========================================
   Auth Pages
======================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #e7e7e7 100%);
}

.auth-box {
    width: 100%;
    max-width: 450px;
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.auth-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.auth-header h1 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: var(--spacing-xs);
}

.auth-header p {
    color: var(--gray-500);
}



.auth-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    color: var(--gray-500);
}

/* ========================================
   Pagination
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-2xl);
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-dots {
    display: flex;
    align-items: center;
    color: var(--gray-400);
    padding: 0 var(--spacing-sm);
}

/* ========================================
   Back to Top
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    color: var(--white);
    font-size: 1.25rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(62, 179, 200, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(62, 179, 200, 0.5);
}

.back-to-top:active {
    transform: translateY(-3px);
}

/* ========================================
   Loading Overlay
======================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Empty State
======================================== */
.empty-state {
    text-align: center;
    padding: var(--spacing-2xl);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-md);
}

.empty-state h3 {
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Status Badges
======================================== */
.status-badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.status-completed,
.status-active,
.status-approved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status-cancelled,
.status-rejected,
.status-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* ========================================
   Star Rating
======================================== */
.stars {
    color: var(--warning);
    letter-spacing: 2px;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.5rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: var(--warning);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-search form {
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-image {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-about .social-links {
        justify-content: center;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h4 {
        justify-content: flex-start;
    }
    
    .footer-section h4::after {
        left: 0;
        transform: none;
    }
    
    .footer-section ul li a {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        max-width: none;
        margin-top: var(--spacing-sm);
    }
    
    .main-nav,
    .user-menu .user-name {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-search {
        max-width: 100%;
    }
    
    /* Section Titles */
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    /* Product Cards */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-about {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h4 {
        justify-content: flex-start;
    }
    
    .footer-section h4::after {
        left: 0;
        transform: none;
    }
    
    .footer-section ul li a {
        justify-content: flex-start;
    }
    
    .footer-section ul li a:hover {
        padding-left: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        text-align: left;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem var(--spacing-md);
    }
    
    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        text-align: center;
        justify-self: center;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .auth-box {
        padding: var(--spacing-lg);
    }
}

/* ========================================
   Mobile Menu
======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: var(--white);
    border-bottom: 3px solid #18ac24;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header .logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00850b 0%, #18ac24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    background: rgba(62, 179, 200, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.mobile-menu-close:hover {
    background: #18ac24;
    transform: rotate(90deg);
}

.mobile-menu-search {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(62, 179, 200, 0.05) 0%, rgba(8, 145, 178, 0.02) 100%);
    border-bottom: 1px solid rgba(62, 179, 200, 0.1);
}

.mobile-menu-search form {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-300);
    height: 44px;
}

.mobile-menu-search input {
    flex: 1;
    padding: 0 1rem;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--gray-700);
    background: white;
    height: 100%;
}

.mobile-menu-search input::placeholder {
    color: #94a3b8;
}

.mobile-menu-search button {
    width: 44px;
    height: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-search button i {
    color: #fff !important;
    font-size: 0.95rem;
}

.mobile-nav {
    padding: 0.75rem 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    position: relative;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav ul li a i {
    width: 20px;
    text-align: center;
    color: #18ac24;
    font-size: 1rem;
}

.mobile-nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #18ac24 0%, transparent 100%);
    transition: width 0.3s ease;
}

.mobile-nav ul li a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-left: auto;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    background: linear-gradient(90deg, rgba(62, 179, 200, 0.08) 0%, transparent 100%);
    color: #18ac24;
    padding-left: 2rem;
}

.mobile-nav ul li a:hover::before {
    width: 4px;
}

.mobile-nav ul li a:hover::after {
    color: #18ac24;
    transform: translateX(4px);
}

.mobile-nav ul li.active a {
    background: linear-gradient(90deg, rgba(62, 179, 200, 0.1) 0%, transparent 100%);
    color: #18ac24;
    font-weight: 600;
}

.mobile-nav ul li.active a::before {
    width: 4px;
}

.mobile-nav .divider {
    height: 8px;
    background: linear-gradient(90deg, rgba(62, 179, 200, 0.1) 0%, transparent 100%);
    margin: 0.75rem 0;
    position: relative;
}

.mobile-nav .divider::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 50%;
    height: 1px;
    background: rgba(226, 232, 240, 0.8);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Products Page Styles
======================================== */
.products-page {
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
    background: var(--gray-50);
    min-height: calc(100vh - 70px);
}

.products-page .page-header {
    margin-bottom: var(--spacing-xl);
}

.products-page .page-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

.products-page .page-header p {
    color: var(--gray-500);
}

/* Products Layout - Sidebar + Main */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
}

.filters-sidebar .close-filters {
    display: none;
}

.filter-group {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
}

.filter-group:last-of-type {
    margin-bottom: var(--spacing-md);
    padding-bottom: 0;
    border-bottom: none;
}

.filter-group h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.filter-list li label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-xs) 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.filter-list li label:hover {
    color: #18ac24 !important;
}

.filter-list input[type="checkbox"],
.filter-list input[type="radio"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.filter-list .count {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-left: auto;
}

/* Rating Filter Stars */
.rating-filter .stars {
    color: var(--warning);
    letter-spacing: 1px;
}

/* Price Range */
.price-range {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.price-range input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

.price-range input:focus {
    outline: none;
    border-color: var(--primary);
}

.price-range span {
    color: var(--gray-400);
    flex-shrink: 0;
}

/* Filter Buttons */
.filters-sidebar .btn {
    margin-top: var(--spacing-sm);
}

.filters-sidebar .btn-block {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    font-weight: 600;
}

.filters-sidebar .btn-outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    margin-top: var(--spacing-sm);
}

.filters-sidebar .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Products Main Area */
.products-main {
    min-width: 0;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.results-count {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.results-count strong {
    color: var(--secondary);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sort-options label {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.sort-options select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.2rem;
}

.sort-options select:focus {
    outline: none;
    border-color: var(--primary);
}

.view-options {
    display: flex;
    gap: var(--spacing-xs);
}

.view-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    background: var(--white);
    transition: all var(--transition-fast);
}

.view-btn:hover,
.view-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(8, 145, 178, 0.05);
}

/* Products Grid */
.products-main .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
}

.empty-state h3 {
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
    z-index: 100;
}

.mobile-filter-toggle i {
    margin-right: var(--spacing-sm);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 250px 1fr;
    }
    
    .products-main .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-image {
        aspect-ratio: 3/4;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        border-radius: 0;
        overflow-y: auto;
        padding: var(--spacing-xl) var(--spacing-lg);
        padding-top: 70px;
    }
    
    .filters-sidebar.active {
        display: block;
    }
    
    .filters-sidebar .close-filters {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        color: var(--gray-600);
        background: var(--gray-100);
        border: none;
        border-radius: var(--radius-full);
        cursor: pointer;
        transition: all var(--transition-fast);
    }
    
    .filters-sidebar .close-filters:hover {
        background: var(--gray-200);
        color: var(--secondary);
    }
    
    .mobile-filter-toggle {
        display: flex;
        align-items: center;
    }
    
    .sort-bar {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }
    
    .sort-options {
        justify-content: space-between;
    }
    
    .products-main .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .product-image {
        aspect-ratio: 1/1;
    }
    
    .product-info {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .products-main .products-grid {
        grid-template-columns: 1fr;
    }
    
    .view-options {
        display: none;
    }
    
    .sort-bar {
        padding: var(--spacing-md);
    }
    
    .results-count {
        text-align: center;
    }
}

/* ========================================
   Responsive - Header Navigation
======================================== */
@media (max-width: 1200px) {
    .header-content {
        gap: var(--spacing-md);
    }
    
    .search-bar {
        max-width: 400px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .header-content {
        gap: var(--spacing-sm);
    }
    
    .search-bar {
        max-width: 300px;
    }
    
    .search-bar input {
        font-size: 0.875rem;
        padding: 0px 1.25rem;
    }
    
    .search-bar button {
        padding: 0.75rem 1.25rem;
    }
    
    .main-nav a,
    .dropdown-toggle {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .dropdown-menu {
        min-width: 260px;
    }
    
    .header-action {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 0.625rem 1.125rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header {
        position: sticky;
        top: 0;
    }
    
    .header-content {
        height: auto;
        padding: 0.875rem 0;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }
    
    .search-bar form {
        border-radius: 10px;
    }
    
    .search-bar input {
        font-size: 0.9rem;
        padding: 0px 1rem;
    }
    
    .search-bar button {
        padding: 0.75rem 1rem;
    }
    
    .header-actions {
        gap: 0.5rem;
        margin-left: auto;
    }
    
    .header-action {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .header-action span:not(.badge) {
        display: none;
    }
    
    .badge {
        font-size: 0.65rem;
        min-width: 18px;
        height: 18px;
        top: -6px;
        right: -6px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .user-menu .user-name {
        display: none;
    }
    
    .user-menu .dropdown-toggle {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .search-bar input {
        font-size: 0.875rem;
        padding: 0px 0.875rem;
    }
    
    .search-bar button {
        padding: 0.625rem 0.875rem;
    }
    
    .header-action {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.125rem;
    }
    
    .badge {
        font-size: 0.6rem;
        min-width: 16px;
        height: 16px;
        top: -5px;
        right: -5px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.125rem;
    }
}

/* ========================================
   Product Detail Page
======================================== */
.product-detail {
    padding: var(--spacing-xl) 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    background: linear-gradient(135deg, rgba(62, 179, 200, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(62, 179, 200, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
    background: rgba(62, 179, 200, 0.1);
    transform: translateX(2px);
}

.breadcrumb i {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin: 0 0.25rem;
}

.breadcrumb span {
    color: var(--primary);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: rgba(62, 179, 200, 0.1);
    border-radius: var(--radius-sm);
}

.product-main {
    display: grid;
    grid-template-columns: minmax(300px, 450px) 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-50);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-lg);
}

.main-image .sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-block;
    width: auto;
    max-width: fit-content;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
    z-index: 10;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(238, 90, 111, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(238, 90, 111, 0.6);
    }
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: var(--spacing-sm);
}

.thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.thumb:hover,
.thumb.active {
    border-color: var(--primary);
}

.thumb img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    display: block;
}

.product-info-main h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary);
}

.product-meta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-200);
}

.rating-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.product-price-main {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-original {
    font-size: 1.5rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-discount {
    background: var(--danger);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.product-description {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Seller Suspended Alert */
.seller-suspended-alert {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #fc8181;
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(245, 101, 101, 0.15);
}

.seller-suspended-alert i {
    font-size: 1.8rem;
    color: #e53e3e;
    flex-shrink: 0;
}

.seller-suspended-alert .alert-content h4 {
    color: #c53030;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.seller-suspended-alert .alert-content p {
    color: #742a2a;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.product-actions-main .btn:disabled,
.product-actions-main .btn.disabled {
    background: #cbd5e0 !important;
    color: #718096 !important;
    cursor: not-allowed;
    box-shadow: none !important;
    opacity: 0.7;
}

.product-actions-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.product-actions-main .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.75rem 0;
    font-weight:900;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(24, 172, 36, 0.08);
}

.product-actions-main .wishlist-btn {
    flex: 0 0 auto;
    padding: 0.75rem 1.2rem;
    font-size: 1.05rem;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
    background: #fff;
    transition: all 0.2s ease;
}

.product-actions-main .wishlist-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.product-actions-main .wishlist-btn .fas.fa-heart {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .product-actions-main .wishlist-btn {
        order: 1;
        flex: 1 1 100%;
        text-align: center;
    }
}

.product-preview-btn-row .btn {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.75rem 0;
    border-radius: var(--radius-md);
}

.product-details-list {
    background: var(--gray-50);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: var(--gray-600);
    font-weight: 500;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

.seller-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-400);
    overflow: hidden;
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-info {
    flex: 1;
}

.seller-info h4 {
    margin-bottom: 0.25rem;
}

.seller-info h4 a {
    color: var(--secondary);
}

.seller-info h4 a:hover {
    color: var(--primary);
}

.seller-stats {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--gray-600);
}

.product-tabs {
    margin-bottom: var(--spacing-xl);
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--spacing-lg);
}

.tab-btn {
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.features-list i {
    color: var(--success);
    font-size: 1.1rem;
}

.rating-summary {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.rating-big {
    text-align: center;
}

.rating-big .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.rating-big .total {
    display: block;
    color: var(--gray-600);
    margin-top: var(--spacing-xs);
}

.rating-breakdown {
    flex: 1;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.rating-bar-row:last-child {
    margin-bottom: 0;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--warning);
}

.review-item {
    padding: var(--spacing-lg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.reviewer i {
    font-size: 2rem;
    color: var(--gray-400);
}

.reviewer .name {
    font-weight: 600;
    color: var(--secondary);
}

.verified {
    color: var(--success);
    font-size: 0.85rem;
}

.review-date {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.review-title {
    margin: var(--spacing-sm) 0;
    color: var(--secondary);
}

.review-content {
    color: var(--gray-700);
    line-height: 1.7;
}

.seller-response {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
}

.related-products {
    margin-top: var(--spacing-xl);
}

.related-products h2 {
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 992px) {
    .product-main {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .main-image {
        max-height: 450px;
    }
    
    .main-image img {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .breadcrumb::-webkit-scrollbar {
        height: 3px;
    }
    
    .breadcrumb::-webkit-scrollbar-track {
        background: rgba(62, 179, 200, 0.05);
    }
    
    .breadcrumb::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        padding: 0.15rem 0.35rem;
        font-size: 0.85rem;
    }
    
    .breadcrumb i {
        font-size: 0.6rem;
        margin: 0 0.15rem;
    }
    
    .product-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .main-image .sale-badge {
        top: 0.65rem;
        left: 0.65rem;
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        display: inline-block;
        width: auto;
        max-width: fit-content;
    }
    
    .product-info-main h1 {
        font-size: 1.5rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .tabs-header {
        overflow-x: auto;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
}

/* =====================================================
   Shopping Cart Page
   ===================================================== */

.cart-page {
    padding: var(--spacing-xl) 0;
}

.cart-page .page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: var(--spacing-md);
    align-items: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.2s ease;
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
}

.cart-item .item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
}

.cart-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item .item-info {
    min-width: 0;
}

.cart-item .item-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.cart-item .item-info h3 a {
    color: inherit;
    text-decoration: none;
}

.cart-item .item-info h3 a:hover {
    color: var(--primary);
}

.cart-item .item-category {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.cart-item .item-seller {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.cart-item .item-seller a {
    color: var(--primary);
    text-decoration: none;
}

.cart-item .item-seller a:hover {
    text-decoration: underline;
}

.cart-item .item-price {
    text-align: right;
    min-width: 100px;
}

.cart-item .item-price .price,
.cart-item .item-price .sale-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.cart-item .item-price .original-price {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.15rem;
}

.cart-item .item-price .sale-price {
    color: var(--danger);
}

.cart-item .item-actions {
    display: flex;
    gap: 0.5rem;
}

.cart-item .item-actions .btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: white;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-item .item-actions .btn-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(62, 179, 200, 0.05);
}

.cart-item .item-actions .remove-btn:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(239, 68, 68, 0.05);
}

/* Suspended Seller Modal */
.suspended-seller-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suspended-seller-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.suspended-seller-modal .modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.suspended-seller-modal .modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.suspended-seller-modal .modal-icon i {
    font-size: 2rem;
    color: #c53030;
}

.suspended-seller-modal h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c53030;
    margin-bottom: var(--spacing-sm);
}

.suspended-seller-modal > .modal-content > p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.suspended-products-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md);
    max-height: 150px;
    overflow-y: auto;
}

.suspended-products-list li {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.suspended-products-list li strong {
    display: block;
    color: #c53030;
    font-size: 0.95rem;
}

.suspended-products-list li span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.suspended-seller-modal .modal-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-md);
}

/* Suspended Cart Item */
.cart-item.suspended-item {
    position: relative;
    border-color: #fc8181;
    background: #fff5f5;
}

.cart-item.suspended-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 245, 245, 0.5);
    pointer-events: none;
    z-index: 1;
}

.suspended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #f56565 0%, #c53030 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 2;
}

.suspended-badge i {
    font-size: 0.7rem;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-900);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.summary-row.discount {
    color: var(--success);
}

.summary-row.total {
    border-top: 2px solid var(--gray-200);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-md);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
}

.summary-row .total-amount {
    font-size: 1.35rem;
    color: var(--primary);
}

/* Coupon Form */
.coupon-form {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.coupon-form h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
}

.coupon-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.coupon-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(62, 179, 200, 0.1);
}

.coupon-form .btn-outline {
    white-space: nowrap;
}

.applied-coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--success);
    font-weight: 500;
}

.applied-coupon .btn-link {
    color: var(--danger);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
}

/* Cart Summary Buttons */
.cart-summary .btn-block {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.cart-summary .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* Payment Icons */
.payment-icons {
    margin-top: var(--spacing-md);
    text-align: center;
}

.payment-icons p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.payment-icons .icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    color: var(--gray-400);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-cart i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-md);
}

.empty-cart h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

/* Cart Page Responsive */
@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
    }
    
    .cart-item .item-image {
        width: 80px;
        height: 80px;
        grid-row: span 2;
    }
    
    .cart-item .item-price {
        grid-column: 2;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cart-item .item-actions {
        grid-column: 2;
        justify-content: flex-start;
    }
    
    .cart-item .item-price .original-price {
        display: inline;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
}

/* ========================================
   Account Pages
======================================== */
.account-page {
    padding: 2rem 0 3rem 0;
    min-height: calc(100vh - 200px);
    background: var(--gray-50);
}

.account-page > .container {
    max-width: 1100px;
}

.account-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 0;
    flex-wrap: wrap;
}

/* Account Sidebar */
.account-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.account-sidebar .user-info {
    text-align: center;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--spacing-lg);
}

.account-sidebar .user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-sidebar .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-sidebar .user-avatar i {
    font-size: 4rem;
    color: var(--gray-400);
}

.account-sidebar .user-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-xs);
}

.account-sidebar .user-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Account Navigation */
.account-nav ul {
    list-style: none;
}

.account-nav ul li {
    margin-bottom: var(--spacing-xs);
}

.account-nav ul li.divider {
    height: 1px;
    background: var(--gray-200);
    margin: var(--spacing-md) 0;
}

.account-nav ul li a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.account-nav ul li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.account-nav ul li.active a {
    background: var(--primary);
    color: var(--white);
}

.account-nav ul li a i {
    width: 20px;
    text-align: center;
}

/* Account Content */
.account-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem 2.5rem;
    flex: 1;
    max-width: 720px;
    min-width: 0;
}

.account-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

/* Tab Content System */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dashboard-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 0 2rem 0;
    flex-wrap: wrap;
}

.dashboard-stats .stat-card,
.stats-grid .stat-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(30,41,59,0.08);
    padding: 1.5rem;
    min-width: 140px;
    flex: 1;
    max-width: 180px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stats-grid .stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--gray-200);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-card .stat-icon.orders {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.stat-card .stat-icon.downloads {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-card .stat-icon.wishlist {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.stat-card .stat-icon.reviews {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stat-card .stat-info {
    display: flex;
    flex-direction: column;
}

.stat-card .stat-info .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.stat-card .stat-info .label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid .stat-card {
        padding: 1rem;
    }
    
    .stat-card .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-card .stat-info .number {
        font-size: 1.25rem;
    }
}

/* Dashboard Sections */
.dashboard-section {
    margin-bottom: 2rem;
}

.dashboard-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dashboard-section .section-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.account-content .section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2rem 0 1rem 0;
}

.account-content .empty-state {
    text-align: center;
    color: var(--gray-500);
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.account-content .empty-state i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.account-content .empty-state h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.account-content .empty-state p {
    margin-bottom: 1rem;
}

.account-content .empty-state.small {
    padding: 1.5rem;
}

.account-content .empty-state.small i {
    font-size: 2rem;
}

/* Orders Table */
.orders-table {
    overflow-x: auto;
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.orders-table th {
    background: var(--gray-50);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.orders-table td {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.orders-table tbody tr:hover {
    background: var(--gray-50);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Downloads List */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.download-item .item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.download-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-item .item-info {
    flex: 1;
    min-width: 0;
}

.download-item .item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-item .item-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Profile Form */
.profile-form .form-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
}

.profile-form .form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.profile-form .form-section h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-lg);
}

/* Avatar Upload */
.avatar-upload {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.avatar-upload .current-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gray-200);
}

.avatar-upload .current-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload .current-avatar i {
    font-size: 4rem;
    color: var(--gray-400);
}

.avatar-upload .upload-controls {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.avatar-upload .upload-controls input[type="file"] {
    display: none;
}

.avatar-upload .upload-controls .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.avatar-upload .upload-controls small {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.form-grid .form-group.full-width {
    grid-column: span 2;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
}

/* Account Page Responsive */
@media (max-width: 992px) {
    .account-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .account-sidebar {
        position: static;
        width: 100%;
        max-width: 400px;
    }
    
    .account-content {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .account-page {
        padding: 1rem 0 2rem 0;
    }
    
    .account-content {
        padding: 1.25rem;
    }
    
    .account-content h1 {
        font-size: 1.4rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid .form-group.full-width {
        grid-column: span 1;
    }
    
    .avatar-upload {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wishlist-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wishlist-item .item-image {
    width: 100%;
    height: 150px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.wishlist-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item .item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wishlist-item .item-details h4 a {
    color: var(--gray-800);
}

.wishlist-item .item-details h4 a:hover {
    color: var(--primary);
}

.wishlist-item .item-details .price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.wishlist-item .item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.review-item .review-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-item .review-product img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.review-item .review-product h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-item .stars {
    display: flex;
    gap: 0.125rem;
}

.review-item .stars i {
    color: var(--gray-300);
    font-size: 0.875rem;
}

.review-item .stars i.active {
    color: #fbbf24;
}

.review-item .review-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.review-item .review-date {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Become a Seller */
.become-seller-info {
    max-width: 100%;
}

.seller-benefits h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.seller-benefits h2 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.seller-benefits > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.seller-application-form {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

/* View All Link */
.view-all-link {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* ========================================
   Login Required Modal
======================================== */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.login-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.login-modal-icon i {
    font-size: 2.5rem;
    color: #0284c7;
}

.login-modal-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.login-modal-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.login-modal-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.login-modal-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.login-modal-buttons .btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
}

.login-modal-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.login-modal-buttons .btn-outline {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.login-modal-buttons .btn-outline:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.login-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.login-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}