/* style.css - Updated Version with Search in Navigation */

/* CSS Variables */
:root {
    /* Neutral Colors */
    --primary-bg: #0F1C2D;           /* Background */
    --secondary-bg: #374357;         /* Secondary Surface */
    --elevated-bg: #1F3A5F;          /* Surface/Cards */
    --border-color: #4A5568;         /* Borders */
    --text-body: #E2E8F0;            /* Body Text */
    --white: #FFFFFF;                /* Headings */
    
    /* Accent Colors */
    --primary-accent: #4A90E2;       /* Primary Accent */
    --cta-color: #F0B429;            /* Call-to-Action */
    --hover-color: #D4AF37;          /* Hover States */
    
    /* Legacy variable mapping for compatibility */
    --icct-blue: #4A90E2;
    --navy: #0F1C2D;
    --soft-gray: #f8f9fa;
    --light-blue: #6B9FE8;
    --text-dark: #212529;            /* Dark text for light backgrounds */
    --text-light: #6c757d;           /* Medium gray text */
    --light-grey: #E2E8F0;
    --medium-grey: #4A5568;
    --secondary-accent: #D4AF37;
    --shadow: 0 4px 12px rgba(0,0,0,0.3);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 90%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background-color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    padding-top: 0;
}

/* Control visual order of sections */
.header {
    order: 1;
}

.hero {
    order: 2;
}

.category-section {
    order: 3; /* Categories appear first when visible */
}

.product-showcase,
.popular-uniforms-banners {
    order: 4; /* Popular Uniforms appear after hero (or after categories when selected) */
}

.back-to-school {
    order: 5;
}

.footer {
    order: 6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: relative;
    z-index: 999;
    background: var(--elevated-bg);
}

/* Top Header */
.top-header {
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-nav {
    display: flex;
    gap: 20px;
}

.nav-icon {
    color: var(--light-grey);
    font-size: 16px;
    transition: var(--transition);
}

.nav-icon:hover {
    color: var(--primary-accent);
}

/* Main Navigation */
.main-nav {
    background: var(--elevated-bg);
    padding: 18px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    width: 100%;
    backdrop-filter: blur(10px);
}

/* Scrolled state - add extra shadow */
.main-nav.scrolled {
    box-shadow: 0 6px 30px rgba(0,0,0,0.7);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 25px;
    position: relative;
    margin-left: -80px;
}

.nav-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 35px;
    position: relative;
    margin-left: 45px;
}

.nav-branding::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.1);
}

.nav-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.nav-campus-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin-right: auto;
    margin-left: 20px;
    max-width: 800px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    opacity: 0.85;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-menu a.active {
    color: var(--primary-accent);
    opacity: 1;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-accent);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: var(--text-dark);
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--soft-gray);
    color: var(--icct-blue);
}

/* Updated Nav Actions with Search */
.nav-actions {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0;
}

.nav-search {
    margin-right: 40px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    padding-right: 0;
    position: fixed;
    right: 25px;
}

.nav-icons::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.1);
}

/* New Search Bar in Navigation */
.nav-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 6px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-right: 0;
}

.nav-search:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-search input {
    background: transparent;
    border: none;
    padding: 8px 15px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    outline: none;
    width: 220px;
    font-size: 14px;
}

.nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.nav-search button {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cart Icon Adjustments */
.cart-icon {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
}

.cart-icon:hover,
.wishlist-icon:hover,
.profile-icon:hover {
    color: var(--light-blue);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--icct-blue);
    color: var(--white);
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wishlist Icon */
.wishlist-icon {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
}

/* Profile Icon */
.profile-icon {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
}

/* Icon Animations */
.wishlist-icon i,
.profile-icon i {
    transition: transform 0.3s ease;
}

.wishlist-icon:hover i {
    transform: scale(1.1);
    color: #ff6b6b;
}

.profile-icon:hover i {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Enhanced Hero Section */
.hero {
    margin-top: 72px;
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--elevated-bg) 100%);
    color: var(--white);
}

/* Background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    flex: 1;
    padding: 0 40px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* Badge */
.badge {
    display: inline-block;
    background: var(--cta-color);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(240, 180, 41, 0.3);
    align-self: flex-start;
}

/* Enhanced Typography */
.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
    color: var(--light-grey);
}

.hero-description {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--cta-color);
    color: var(--primary-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 180, 41, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 100;
    pointer-events: auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 180, 41, 0.5);
    background: var(--hover-color);
}

.cta-button:active {
    transform: translateY(-1px);
}

.secondary-button {
    background: transparent;
    color: var(--text-body);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-button:hover {
    background: var(--elevated-bg);
    border-color: var(--hover-color);
    color: var(--hover-color);
    transform: translateY(-2px);
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-blue);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Slide Image */
.slide-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 500px;
    max-width: 90%;
    overflow: hidden;
    margin-top: 20px;
    margin: 20px auto 0;
    border-radius: 12px;
}

.slide {
    border-radius: 12px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: var(--soft-gray);
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11, 90, 217, 0.4) 0%, transparent 50%);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 2s;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    animation: scrollLine 2s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes scrollLine {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(10px); 
        opacity: 1; 
    }
}

/* Animation for slide content */
.slide.active .slide-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease forwards;
}

.slide.active .badge {
    animation-delay: 0.2s;
}

.slide.active .slide-content h1 {
    animation-delay: 0.4s;
}

.slide.active .slide-content p {
    animation-delay: 0.6s;
}

.slide.active .cta-container {
    animation-delay: 0.8s;
}

.slide.active .stats-container {
    animation-delay: 1s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: var(--elevated-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    background: var(--secondary-bg);
    border-color: var(--primary-accent);
}

.category-icon {
    font-size: 48px;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.category-card p {
    color: var(--light-grey);
    margin-bottom: 20px;
}

.hover-items {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: var(--primary-accent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    justify-content: space-around;
}

.category-card:hover .hover-items {
    transform: translateY(0);
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--icct-blue);
    color: var(--white);
    border-color: var(--icct-blue);
}

.carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.product-card {
    background: var(--elevated-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: var(--transition);
    flex: 0 0 calc(25% - 23px);
    min-width: 250px;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    border-color: var(--primary-accent);
}

.product-image {
    height: 250px;
    background: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: var(--elevated-bg);
}

.product-info h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--light-grey);
    line-height: 1.4;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    margin-top: 5px;
}

/* Stock Display for Student View */
.stock-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.stock-display i {
    font-size: 14px;
    color: var(--primary-accent);
}

.stock-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    letter-spacing: 0.5px;
}

.stock-text.out-of-stock-text {
    color: #ef4444;
}

.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.add-to-cart,
.love-btn {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background: var(--secondary-bg);
    color: var(--light-grey);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: var(--primary-accent);
    color: var(--white);
    border-color: var(--primary-accent);
}

.love-btn:hover {
    background: var(--hover-color);
    color: var(--primary-bg);
    border-color: var(--hover-color);
}

.buy-now-btn {
    display: none;
}

.add-to-cart:hover {
    background: var(--primary-accent);
    color: var(--white);
}

.add-to-cart:active {
    transform: scale(0.98);
}

/* Popular Uniforms - Banner Style */
.popular-uniforms-banners {
    padding: 80px 0;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popular-uniforms-banners .container {
    max-width: 1200px;
    margin: 0 auto;
}

.popular-uniforms-banners .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
}

.uniform-banner {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 500px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.uniform-banner:hover {
    transform: translateY(-5px);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.uniform-banner:hover .banner-image {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.banner-content {
    color: white;
    text-align: left;
}

.banner-category {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner-price {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: white;
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
}

.banner-button:hover {
    background: #003366;
    color: white;
    transform: scale(1.05);
}

.banner-button i {
    font-size: 16px;
}

/* Responsive for banners */
@media (max-width: 992px) {
    .banners-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .uniform-banner {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .uniform-banner {
        height: 400px;
    }
    
    .banner-title {
        font-size: 24px;
    }
}

/* Back to School Section */
.back-to-school {
    padding: 80px 0;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-to-school .container {
    max-width: 1200px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.image-section {
    flex: 1;
    max-width: 50%;
}

.image-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-section {
    flex: 1;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy);
}

.content-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--elevated-bg);
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    z-index: 1100;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--light-grey);
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--primary-accent);
}

.cart-content-wrapper {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-content {
    padding: 20px;
    min-height: min-content;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: var(--medium-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-cart i {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.5;
    color: var(--medium-grey);
}

.wishlist-items {
    display: block;
}

.continue-shopping {
    background: var(--cta-color);
    color: var(--primary-bg);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.continue-shopping:hover {
    background: var(--hover-color);
}

.cart-payment-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--elevated-bg);
}

.payment-method-selector label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.payment-method-selector label i {
    margin-right: 5px;
    color: var(--icct-blue);
}

.payment-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.payment-select:focus {
    outline: none;
    border-color: var(--icct-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.payment-select option {
    padding: 10px;
}

/* Payment Details Form */
.payment-details-form {
    background: #f8fafc;
    border: 2px solid var(--icct-blue);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-details-form .form-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e7ef;
}

.payment-details-form .form-header i {
    color: var(--icct-blue);
    font-size: 16px;
}

.payment-form .form-group {
    margin-bottom: 15px;
}

.payment-form .form-group:last-child {
    margin-bottom: 0;
}

.payment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.payment-form label i {
    color: var(--icct-blue);
    margin-right: 5px;
    font-size: 12px;
}

.payment-form input[type="text"],
.payment-form input[type="tel"],
.payment-form input[type="date"],
.payment-form select,
.payment-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: white;
    transition: var(--transition);
}

.payment-form input:focus,
.payment-form select:focus,
.payment-form textarea:focus {
    outline: none;
    border-color: var(--icct-blue);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.payment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.payment-form textarea {
    resize: vertical;
    min-height: 50px;
}

.max-qty-warning {
    font-size: 12px;
    color: #ff9800;
    margin-top: 5px;
    font-weight: 600;
}

.max-qty-warning i {
    margin-right: 3px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.checkout-btn {
    width: 100%;
    background: var(--cta-color);
    color: var(--primary-bg);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.checkout-btn:hover {
    background: var(--hover-color);
}

.checkout-btn:active {
    transform: scale(0.98);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== ACCOUNT SIDEBAR ===== */
.account-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1052;
    transition: right 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.account-sidebar.active {
    right: 0;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-header h2 {
    margin: 0;
    font-size: 20px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-sidebar:hover {
    background: #f5f5f5;
    color: var(--icct-blue);
}

/* Account Login Prompt */
.account-not-logged-in {
    padding: 30px 20px;
    text-align: center;
}

.account-login-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
}

.account-login-prompt i {
    font-size: 60px;
    color: var(--icct-blue);
    opacity: 0.8;
}

.account-login-prompt h3 {
    font-size: 20px;
    color: var(--navy);
    margin: 0;
}

.account-login-prompt p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.account-login-btn {
    background: var(--icct-blue);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.account-login-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Admin Login Trigger Button */
.admin-login-trigger-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.admin-login-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.admin-login-trigger-btn i {
    font-size: 16px;
}

/* Account Logged In */
.account-logged-in {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 61px); /* Account for header */
}

.account-info {
    background: linear-gradient(135deg, var(--icct-blue), var(--navy));
    color: white;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.user-avatar {
    font-size: 50px;
    color: white;
    opacity: 0.9;
    flex-shrink: 0;
}

.user-details {
    flex: 1;
    min-width: 0; /* Allow text truncation */
}

.user-details h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-details p {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.student-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
}

/* Account Sections */
.account-sections {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.account-section {
    padding: 20px;
    border-bottom: 1px solid #eee;
    flex: 1;
    overflow-y: auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header h3 {
    margin: 0;
    font-size: 17px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.transaction-count {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

/* Transaction List */
.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-transactions {
    text-align: center;
    padding: 40px 15px;
    color: #999;
}

.empty-transactions i {
    font-size: 45px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-transactions p {
    margin: 8px 0 5px 0;
    font-size: 15px;
    color: #666;
}

.empty-transactions small {
    font-size: 12px;
    color: #999;
}

/* Transaction Item */
.transaction-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
    gap: 10px;
    flex-wrap: wrap;
}

.transaction-id {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    word-break: break-all;
}

.transaction-date {
    font-size: 10px;
    color: #999;
    white-space: nowrap;
}

.transaction-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-items {
    font-size: 12px;
    color: #444;
    line-height: 1.5;
    word-break: break-word;
}

.transaction-items strong {
    color: var(--navy);
    display: block;
    margin-bottom: 3px;
}

.transaction-payment {
    font-size: 12px;
    color: #555;
    padding: 6px 0;
}

.transaction-payment i {
    color: var(--icct-blue);
    margin-right: 5px;
}

.transaction-payment strong {
    color: var(--navy);
}

.transaction-total {
    font-size: 15px;
    font-weight: 600;
    color: var(--icct-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #eee;
    gap: 10px;
}

.transaction-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #d1ecf1;
    color: #0c5460;
}

/* Account Actions */
.account-actions {
    padding: 15px 20px;
    background: #fafafa;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.logout-btn {
    width: 100%;
    background: #f44336;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1060;
    width: 90%;
    max-width: 450px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.login-modal-content {
    padding: 40px 30px 30px;
    position: relative;
    background: var(--elevated-bg);
}

.close-login-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--medium-grey);
    cursor: pointer;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-login-modal:hover {
    background: var(--secondary-bg);
    color: var(--primary-accent);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header i {
    font-size: 60px;
    color: var(--primary-accent);
    margin-bottom: 15px;
}

.login-header h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.login-header p {
    color: var(--light-grey);
    font-size: 14px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--icct-blue);
    font-size: 16px;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    background: var(--secondary-bg);
    color: var(--light-grey);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-group input::placeholder {
    color: var(--medium-grey);
}

.toggle-password {
    position: absolute;
    right: 15px;
    bottom: 13px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.toggle-password:hover {
    color: var(--icct-blue);
}

.login-btn {
    background: var(--cta-color);
    color: var(--primary-bg);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.login-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 180, 41, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-footer p {
    font-size: 14px;
    color: var(--text-light);
}

.register-link {
    color: var(--icct-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.register-link:hover {
    text-decoration: underline;
    color: var(--navy);
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 20px;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    max-width: 400px;
    width: 90%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 45px;
    color: white;
}

.success-modal h2 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.success-modal p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.success-btn {
    background: var(--icct-blue);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.success-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Confirm Modal */
.confirm-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 20px;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    max-width: 400px;
    width: 90%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirm-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.confirm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

.confirm-icon i {
    font-size: 45px;
    color: white;
}

.confirm-modal h2 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.confirm-modal p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.confirm-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
}

.confirm-ok {
    background: var(--icct-blue);
    color: white;
}

.confirm-ok:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.confirm-cancel {
    background: #f5f5f5;
    color: #666;
}

.confirm-cancel:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Items */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-item-details p {
    color: var(--text-light);
    font-size: 14px;
}

.size-selector-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.size-selector-cart label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.cart-size-select {
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 13px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.cart-size-select:hover {
    border-color: var(--icct-blue);
}

.cart-size-select:focus {
    outline: none;
    border-color: var(--icct-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.installment-selector-cart {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.installment-selector-cart label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.cart-installment-select {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 13px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.cart-installment-select:hover {
    border-color: var(--icct-blue);
}

.cart-installment-select:focus {
    outline: none;
    border-color: var(--icct-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.installment-info {
    font-size: 12px;
    color: var(--icct-blue);
    font-weight: 600;
    margin: 4px 0 0 0;
}

.cart-item-total {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    color: #c82333;
}

/* Wishlist Item Actions */
.cart-item-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.move-to-cart-btn,
.remove-wishlist-item {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 14px;
}

.move-to-cart-btn:hover {
    background: var(--icct-blue);
    color: var(--white);
    border-color: var(--icct-blue);
}

.remove-wishlist-item:hover {
    background: #dc3545;
    color: var(--white);
    border-color: #dc3545;
}

.move-all-to-cart-btn {
    width: 100%;
    background: var(--icct-blue);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.move-all-to-cart-btn:hover {
    background: var(--navy);
}

.close-wishlist {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-wishlist:hover {
    color: var(--icct-blue);
}

.continue-shopping-wishlist {
    background: var(--icct-blue);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.continue-shopping-wishlist:hover {
    background: var(--navy);
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    color: var(--light-grey);
    padding: 60px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    justify-items: center;
    text-align: center;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--white);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-grey);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-accent);
    text-decoration: underline;
}

.footer-section ul li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--icct-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero {
        height: 600px;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .nav-search input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 100;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Mobile Improvements */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 20px 0;
    }
    
    .slide {
        flex-direction: column;
        text-align: center;
        position: relative;
        height: auto;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 30px 20px 20px;
        max-width: 100%;
    }
    
    .badge {
        align-self: center;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .slide-image {
        padding: 15px;
        height: 300px;
        margin-top: 10px;
    }
    
    .slide-image img {
        max-height: 100%;
        width: auto;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .dropdown.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        margin-top: 10px;
    }
    
    .cta-container {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Hide search on mobile */
    .nav-search {
        display: none;
    }
    
    /* Navigation Mobile Adjustments */
    .nav-branding {
        margin-left: 15px;
        padding-right: 20px;
    }
    
    .nav-campus-name {
        font-size: 0.85rem;
    }
    
    .nav-logo {
        width: 38px;
        height: 38px;
    }
    
    .nav-icons {
        gap: 15px;
        right: 15px;
    }
    
    .nav-icons .icon-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .badge-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .stats-container {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        flex: 0 0 calc(100% - 15px);
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
    
    /* Hero Extra Small Mobile */
    .hero {
        height: auto;
        min-height: 450px;
        padding: 15px 0;
    }
    
    .slide {
        min-height: 450px;
    }
    
    .slide-content {
        padding: 25px 15px 15px;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .slide-image {
        height: 250px;
        padding: 10px;
    }
    
    .stats-container {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .cta-container {
        gap: 0.6rem;
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button, .secondary-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Login Modal Mobile */
    .login-modal {
        width: 95%;
        max-width: 100%;
        margin: 20px;
    }
    
    .login-modal-content {
        padding: 25px 15px 15px;
    }
    
    .login-header {
        margin-bottom: 20px;
    }
    
    .login-header h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .login-header i {
        font-size: 45px;
        margin-bottom: 10px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .login-btn {
        padding: 11px 16px;
        font-size: 14px;
    }
}

/* Extra Small Devices (≤ 400px) */
@media (max-width: 400px) {
    /* Hero Ultra Compact */
    .hero {
        min-height: 420px;
        padding: 10px 0;
    }
    
    .slide {
        min-height: 420px;
    }
    
    .slide-content {
        padding: 20px 12px 12px;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .slide-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .slide-image {
        height: 220px;
        padding: 8px;
    }
    
    .stats-container {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .cta-button, .secondary-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Nav branding */
    .nav-branding {
        margin-left: 10px;
        padding-right: 15px;
        gap: 10px;
    }
    
    .nav-campus-name {
        font-size: 0.75rem;
    }
    
    .nav-logo {
        width: 34px;
        height: 34px;
    }
    
    .nav-icons {
        gap: 12px;
        right: 10px;
    }
    
    .nav-icons .icon-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .badge-count {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
    
    .hamburger {
        width: 32px;
        height: 32px;
    }
    
    .hamburger span {
        width: 20px;
    }
    
    /* Account Login Prompt Ultra Small */
    .account-not-logged-in {
        padding: 20px 12px;
    }
    
    .account-login-prompt {
        padding: 20px 10px;
        gap: 10px;
    }
    
    .account-login-prompt i {
        font-size: 45px;
    }
    
    .account-login-prompt h3 {
        font-size: 16px;
        margin: 8px 0 5px;
    }
    
    .account-login-prompt p {
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .account-login-btn {
        padding: 8px 16px;
        font-size: 11px;
        gap: 4px;
    }
    
    .account-login-btn i {
        font-size: 11px;
    }
    
    /* Login Modal Ultra Small */
    .login-modal-content {
        padding: 20px 12px 12px;
    }
    
    .login-header h2 {
        font-size: 18px;
    }
    
    .login-header i {
        font-size: 40px;
    }
    
    .form-group input {
        padding: 9px 10px;
        font-size: 13px;
    }
    
    .login-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Category Section Styles */
.category-section {
    min-height: 60vh;
    padding: 60px 0 40px;
    background: var(--soft-gray);
    animation: fadeIn 0.5s ease;
    margin-top: 40px;
    border-top: 3px solid var(--icct-blue);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.category-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.category-section.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.back-btn {
    display: none !important;
}

.back-btn:hover {
    background: var(--navy);
    transform: translateX(-5px);
}

.back-btn i {
    font-size: 16px;
}

.category-header .section-title {
    margin: 0;
    flex: 1;
    color: var(--navy);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.products-grid .product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.products-grid .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.products-grid .product-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.products-grid .product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.products-grid .product-overlay {
    display: none;
}

.products-grid .action-btn {
    display: none;
}

.products-grid .image-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-align: center;
}

.products-grid .product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: white;
}

.products-grid .product-info h3 {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-grid .product-desc {
    display: none;
}

.products-grid .product-info .price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    margin-top: 5px;
}

.products-grid .product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.products-grid .add-to-cart,
.products-grid .love-btn {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.products-grid .add-to-cart:hover {
    background: #003366;
    color: white;
    border-color: #003366;
}

.products-grid .love-btn:hover {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}

.products-grid .buy-now-btn {
    display: none;
}

/* Old button styles removed - now using product-actions layout */

.products-grid .out-of-stock {
    width: 100%;
    padding: 12px 16px;
    background: #ccc;
    color: #666;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    margin-top: auto;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 16px;
}

/* Payment Section Styles */
.payment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.payment-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--icct-blue);
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--icct-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.payment-icon i {
    font-size: 32px;
    color: var(--white);
}

.payment-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.payment-description {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 20px;
}

.payment-instructions {
    background: var(--soft-gray);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.payment-instructions h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.payment-instructions ol {
    margin-left: 20px;
    color: var(--text-dark);
}

.payment-instructions li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.payment-instructions strong {
    color: var(--icct-blue);
    font-weight: 600;
}

.payment-btn {
    display: none; /* Hidden - this is now a guide only */
}

.payment-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.payment-note i {
    font-size: 24px;
    color: #ffc107;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.payment-note strong {
    color: var(--navy);
    font-weight: 600;
}

/* Payment Note Box within Cards */
.payment-note-box {
    background: rgba(74, 144, 226, 0.1);
    border-left: 3px solid var(--primary-accent);
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.payment-note-box i {
    color: var(--primary-accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.payment-note-box p {
    margin: 0;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Confirm Payment Section */
.confirm-payment-section {
    margin-top: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.confirm-payment-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirm-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.confirm-payment-btn i {
    font-size: 18px;
}

/* Payment Reference Display */
.payment-reference-display {
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.reference-box {
    text-align: center;
    color: white;
}

.reference-box i {
    font-size: 48px;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease;
}

.reference-box h4 {
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.reference-number {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 15px 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
}

.reference-box small {
    font-size: 13px;
    opacity: 0.9;
    display: block;
    margin-top: 10px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-header .section-title {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }

    .category-section {
        padding: 60px 0 30px;
    }

    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-card {
        padding: 20px;
    }
}
/* Product Card Actions - Old styles removed, using new button layout above */

/* ===========================
   FAQ SECTION STYLES
   =========================== */

.faq-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding-bottom: 60px;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-intro p {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.faq-category {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.faq-category h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--icct-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category h3 i {
    color: var(--icct-blue);
    font-size: 22px;
    background: linear-gradient(135deg, var(--icct-blue), var(--light-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
    border-bottom: 1px solid #e0e7ef;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: #f8fafc;
    margin: 0 -8px;
    padding: 16px 8px;
    border-radius: 8px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.faq-question h4 {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    color: var(--icct-blue);
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 16px;
    flex-shrink: 0;
}

.faq-question:hover i {
    color: var(--navy);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--navy);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding-top: 14px;
}

.faq-answer p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
    padding: 12px 16px;
    background: #f8fafc;
    border-left: 3px solid var(--icct-blue);
    border-radius: 6px;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--icct-blue), var(--navy));
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 24px rgba(0,51,102,0.3);
}

.faq-cta p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.faq-cta strong {
    font-weight: 700;
    font-size: 19px;
}

/* ===========================
   SUPPLIES INFO SECTION STYLES
   =========================== */

.supplies-info-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding-bottom: 60px;
}

.supplies-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.supplies-intro p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.supplies-grid {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.info-icon {
    display: none;
}

.info-card h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--icct-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--icct-blue);
    font-size: 22px;
    background: linear-gradient(135deg, var(--icct-blue), var(--light-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.info-item {
    background: transparent;
    padding: 16px 0;
    border-radius: 0;
    border-left: none;
    border-bottom: 1px solid #e0e7ef;
    transition: all 0.3s ease;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    background: #f8fafc;
    transform: translateX(0);
    margin: 0 -8px;
    padding: 16px 8px;
    border-radius: 8px;
}

.info-item strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-item strong::before {
    display: none;
}

.info-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

.info-item p br {
    margin-bottom: 5px;
}

.supplies-cta {
    max-width: 900px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--icct-blue), var(--navy));
    color: white;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,51,102,0.3);
}

.cta-box i {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-box h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-grid div {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-grid div:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact-grid strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.contact-grid div:last-child {
    font-size: 16px;
}

/* Responsive Styles for FAQ and Supplies */
@media (max-width: 992px) {
    .faq-container,
    .supplies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .info-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .faq-intro,
    .supplies-intro {
        padding: 25px 30px;
        margin-bottom: 35px;
    }

    .faq-intro p,
    .supplies-intro p {
        font-size: 16px;
    }

    .faq-category {
        padding: 25px 20px;
    }

    .faq-category h3 {
        font-size: 18px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .faq-category h3 i {
        font-size: 20px;
    }

    .faq-item {
        padding: 14px 0;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-question i {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 10px 14px;
    }

    .faq-cta {
        padding: 30px 25px;
        margin-top: 35px;
    }

    .faq-cta p {
        font-size: 16px;
    }

    .faq-cta strong {
        font-size: 17px;
    }

    .info-card h3 {
        font-size: 18px;
    }

    .info-card h3 i {
        font-size: 20px;
    }

    .info-item {
        padding: 14px 0;
    }

    .info-item strong {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .info-item p {
        font-size: 14px;
        line-height: 1.8;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cta-box i {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .cta-box h4 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cta-box p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-grid div {
        padding: 18px;
    }

    .contact-grid strong {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .faq-intro,
    .supplies-intro {
        padding: 20px;
    }

    .faq-category {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .faq-category h3 {
        font-size: 16px;
    }

    .faq-item:hover {
        margin: 0 -6px;
        padding: 14px 6px;
    }

    .info-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .info-card h3 {
        font-size: 22px;
    }

    .info-item {
        padding: 18px;
    }

    .info-item strong {
        font-size: 16px;
    }

    .info-item p {
        font-size: 13px;
        padding-left: 14px;
    }

    .cta-box {
        padding: 25px 20px;
        border-radius: 12px;
    }
}

/* ===========================
   STATIC MODE NOTICE BANNER
   =========================== */

.static-mode-notice {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    animation: slideDown 0.5s ease-out;
    transition: opacity 0.3s ease;
}

@keyframes slideDown {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 80px;
        opacity: 1;
    }
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notice-text {
    flex: 1;
}

.notice-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s;
}

.notice-text a:hover {
    opacity: 0.8;
}

.notice-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.notice-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Tablet responsive */
@media (max-width: 992px) {
    .account-sidebar {
        max-width: 380px;
    }
    
    .sidebar-header h3 {
        font-size: 20px;
    }
    
    .account-login-prompt i {
        font-size: 65px;
    }
    
    .account-login-prompt h3 {
        font-size: 21px;
    }
    
    .user-avatar {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }
    
    .user-details h3 {
        font-size: 17px;
    }
    
    .user-details p {
        font-size: 13px;
    }
    
    .section-header h4 {
        font-size: 16px;
    }
    
    .transaction-item {
        padding: 12px;
    }
    
    .transaction-id {
        font-size: 11px;
    }
    
    .transaction-items {
        font-size: 12px;
    }
    
    .transaction-total {
        font-size: 14px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .static-mode-notice {
        top: 70px;
        width: 95%;
        padding: 12px 15px;
    }
    
    .notice-content {
        font-size: 13px;
    }
    
    .notice-icon {
        font-size: 20px;
    }
    
    /* Account Sidebar Mobile */
    .account-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
    
    .account-sidebar.active {
        right: 0;
    }
    
    .sidebar-header {
        padding: 15px 20px;
        min-height: 55px;
    }
    
    .sidebar-header h3 {
        font-size: 18px;
    }
    
    .close-sidebar {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    /* Account Not Logged In - Mobile */
    .account-not-logged-in {
        padding: 25px 20px;
    }
    
    .account-login-prompt i {
        font-size: 60px;
    }
    
    .account-login-prompt h3 {
        font-size: 20px;
        margin: 15px 0 10px;
    }
    
    .account-login-prompt p {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .account-login-btn {
        padding: 9px 20px;
        font-size: 13px;
        gap: 6px;
    }
    
    .account-login-btn i {
        font-size: 14px;
    }
    
    /* Account Logged In - Mobile */
    .account-logged-in {
        padding: 20px 15px 0;
        height: calc(100vh - 55px);
    }
    
    .account-info {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .user-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .user-details h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .user-details p {
        font-size: 12px;
    }
    
    /* Sections Mobile */
    .account-sections {
        padding: 0 15px;
    }
    
    .section-header {
        padding: 12px 0;
        margin-bottom: 12px;
    }
    
    .section-header i {
        font-size: 18px;
    }
    
    .section-header h4 {
        font-size: 15px;
    }
    
    /* Transaction Item Mobile */
    .transaction-item {
        padding: 12px 10px;
        border-radius: 6px;
    }
    
    .transaction-header {
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .transaction-id {
        font-size: 10px;
        flex: 1;
    }
    
    .transaction-date {
        font-size: 9px;
    }
    
    .transaction-items {
        font-size: 11px;
    }
    
    .transaction-total {
        font-size: 14px;
        padding-top: 6px;
        gap: 8px;
    }
    
    .transaction-status {
        padding: 3px 6px;
        font-size: 9px;
        border-radius: 8px;
    }
    
    /* Empty Transactions Mobile */
    .empty-transactions {
        padding: 30px 15px;
    }
    
    .empty-transactions i {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .empty-transactions p {
        font-size: 14px;
        margin: 6px 0 4px 0;
    }
    
    .empty-transactions small {
        font-size: 11px;
    }
    
    /* Account Actions Mobile */
    .account-actions {
        padding: 12px 15px;
    }
    
    .logout-btn {
        padding: 11px 18px;
        font-size: 13px;
        gap: 6px;
    }
    
    .logout-btn i {
        font-size: 14px;
    }
    
    /* Success Modal Mobile */
    .success-modal {
        width: 90%;
        max-width: 350px;
        padding: 35px 25px 25px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .success-icon i {
        font-size: 38px;
    }
    
    .success-modal h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .success-modal p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .success-btn {
        padding: 11px 35px;
        font-size: 14px;
    }
    
    /* Confirm Modal Mobile */
    .confirm-modal {
        width: 90%;
        max-width: 350px;
        padding: 35px 25px 25px;
    }
    
    .confirm-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .confirm-icon i {
        font-size: 38px;
    }
    
    .confirm-modal h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .confirm-modal p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .confirm-btn {
        padding: 11px 25px;
        font-size: 14px;
    }
}

/* Extra Small Mobile (phones < 480px) */
@media (max-width: 480px) {
    .sidebar-header {
        padding: 12px 15px;
        min-height: 50px;
    }
    
    .sidebar-header h3 {
        font-size: 16px;
    }
    
    .close-sidebar {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    /* Account Not Logged In - Extra Small */
    .account-not-logged-in {
        padding: 20px 15px;
    }
    
    .account-login-prompt i {
        font-size: 50px;
    }
    
    .account-login-prompt h3 {
        font-size: 17px;
        margin: 10px 0 6px;
    }
    
    .account-login-prompt p {
        font-size: 11px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .account-login-btn {
        padding: 8px 18px;
        font-size: 12px;
        gap: 5px;
    }
    
    .account-login-btn i {
        font-size: 12px;
    }
    
    /* Account Logged In - Extra Small */
    .account-logged-in {
        padding: 15px 12px 0;
        height: calc(100vh - 50px);
    }
    
    .account-info {
        padding: 15px 12px;
        margin-bottom: 12px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .user-details h3 {
        font-size: 15px;
    }
    
    .user-details p {
        font-size: 11px;
    }
    
    /* Sections Extra Small */
    .account-sections {
        padding: 0 12px;
    }
    
    .section-header {
        padding: 10px 0;
        margin-bottom: 10px;
    }
    
    .section-header i {
        font-size: 16px;
    }
    
    .section-header h4 {
        font-size: 14px;
    }
    
    /* Transaction Item Extra Small */
    .transaction-list {
        gap: 10px;
    }
    
    .transaction-item {
        padding: 10px 8px;
    }
    
    .transaction-header {
        margin-bottom: 6px;
        gap: 6px;
    }
    
    .transaction-id {
        font-size: 9px;
    }
    
    .transaction-date {
        font-size: 8px;
    }
    
    .transaction-details {
        gap: 6px;
    }
    
    .transaction-items {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .transaction-total {
        font-size: 13px;
        padding-top: 5px;
        gap: 6px;
    }
    
    .transaction-status {
        padding: 2px 5px;
        font-size: 8px;
    }
    
    /* Empty Transactions Extra Small */
    .empty-transactions {
        padding: 25px 12px;
    }
    
    .empty-transactions i {
        font-size: 35px;
        margin-bottom: 8px;
    }
    
    .empty-transactions p {
        font-size: 13px;
        margin: 5px 0 3px 0;
    }
    
    .empty-transactions small {
        font-size: 10px;
    }
    
    /* Account Actions Extra Small */
    .account-actions {
        padding: 10px 12px;
    }
    
    .logout-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 5px;
    }
    
    .logout-btn i {
        font-size: 13px;
    }
    
    /* Success Modal Extra Small */
    .success-modal {
        width: 92%;
        max-width: 320px;
        padding: 30px 20px 20px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .success-icon i {
        font-size: 32px;
    }
    
    .success-modal h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .success-modal p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .success-btn {
        padding: 10px 30px;
        font-size: 13px;
    }
    
    /* Confirm Modal Extra Small */
    .confirm-modal {
        width: 92%;
        max-width: 320px;
        padding: 30px 20px 20px;
    }
    
    .confirm-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .confirm-icon i {
        font-size: 32px;
    }
    
    .confirm-modal h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .confirm-modal p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .confirm-btn {
        padding: 10px 22px;
        font-size: 13px;
    }
}

/* ===== ADMIN SYSTEM STYLES ===== */

/* Admin Login Section in Account Sidebar */
.admin-login-section {
    margin-top: 20px;
}

.admin-login-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.admin-login-btn i {
    font-size: 18px;
}

/* Admin Modal */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.admin-modal.active {
    display: flex;
}

.admin-modal-content {
    background: white;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.close-admin-modal,
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-admin-modal:hover,
.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.admin-header {
    text-align: center;
    padding: 50px 40px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.admin-header i {
    font-size: 60px;
    color: white;
    margin-bottom: 15px;
    display: block;
    opacity: 0.95;
}

.admin-header h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.admin-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
}

/* Admin Credentials Display */
.admin-credentials-display {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin: 0 40px 20px;
}

.credentials-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credentials-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin: 0 0 12px 0 !important;
}

.credentials-title i {
    font-size: 16px;
    color: #667eea;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.credential-label {
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
    min-width: 80px;
}

.credential-value {
    color: #667eea;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    background: #f0f2ff;
    padding: 4px 12px;
    border-radius: 6px;
    flex: 1;
    text-align: center;
}

.credentials-note {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #868e96 !important;
    font-size: 11px !important;
    font-style: italic !important;
    margin: 8px 0 0 0 !important;
}

.credentials-note i {
    font-size: 12px;
}

/* Admin Form */
.admin-form {
    padding: 40px 40px 30px;
}

.admin-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.admin-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #212529;
    font-weight: 600;
    font-size: 14px;
}

.admin-form label i {
    color: #667eea;
    font-size: 16px;
}

.admin-form input {
    width: 100%;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    color: #212529;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.admin-form input::placeholder {
    color: #adb5bd;
}

.admin-form input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.admin-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--cta-color);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.admin-submit-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 180, 41, 0.3);
}

.admin-submit-btn:active {
    transform: translateY(0);
}

/* Toggle Password */
.admin-form .toggle-password {
    position: absolute;
    right: 15px;
    bottom: 13px;
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.admin-form .toggle-password:hover {
    color: #667eea;
}

/* Admin Indicator */
.admin-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    z-index: 9999;
    animation: slideInRight 0.5s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-indicator-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-indicator i {
    font-size: 20px;
    margin-right: 8px;
}

.admin-badge {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
}

.admin-badge i {
    margin-right: 8px;
    font-size: 16px;
}

.admin-logout-btn,
.admin-logout-btn-top {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-logout-btn:hover,
.admin-logout-btn-top:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Stock Display (User Mode) */
.stock-display {
    margin: 10px 0 5px 0;
}

.stock-text {
    color: #999;
    font-size: 13px;
}

.stock-count {
    color: var(--primary-accent);
    font-weight: 600;
}

/* Admin Controls */
.admin-controls {
    margin: 15px 0;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid var(--primary-accent);
    border-radius: 10px;
}

.admin-controls label {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

.stock-control {
    display: flex;
    gap: 10px;
    align-items: center;
}

.stock-input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.stock-input:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: rgba(255, 255, 255, 0.08);
}

.update-stock-btn {
    padding: 10px 16px;
    background: var(--primary-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.update-stock-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.update-stock-btn i {
    font-size: 12px;
}

/* Hide/Show elements based on mode */
.admin-mode .user-mode-only {
    display: none !important;
}

.admin-mode .admin-mode-only {
    display: block !important;
}

body:not(.admin-mode) .admin-mode-only {
    display: none !important;
}

body:not(.admin-mode) .user-mode-only {
    display: block !important;
}

/* Out of Stock Button Styling */
.out-of-stock,
.out-of-stock-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #555 0%, #444 100%);
    color: #bbb;
    border: 2px solid #666;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.out-of-stock-btn i {
    color: #ef4444;
}

/* Smooth transitions */
.product-card .user-mode-only,
.product-card .admin-mode-only {
    transition: all 0.3s ease;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .admin-header h2 {
        font-size: 24px;
    }
    
    .admin-indicator {
        top: 10px;
        right: 10px;
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .admin-indicator-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .admin-logout-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .stock-control {
        flex-direction: column;
    }
    
    .update-stock-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ADMIN DASHBOARD STYLES ===== */

/* Admin Dashboard Container */
.admin-dashboard {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    z-index: 10000;
    overflow: hidden;
}

body.admin-mode .admin-dashboard {
    display: flex !important;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 280px;
    background: var(--elevated-bg);
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-right: 2px solid var(--border-color);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
}

.admin-sidebar-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.admin-sidebar-header i {
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.admin-sidebar-header h2 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Admin Navigation */
.admin-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: visible;
}

.admin-nav-btn {
    width: 100%;
    padding: 16px 25px;
    background: transparent;
    border: none;
    color: var(--text-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.admin-nav-btn i {
    font-size: 20px;
    width: 24px;
}

.admin-nav-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-accent);
}

.admin-nav-btn.active {
    background: rgba(74, 144, 226, 0.2);
    color: var(--primary-accent);
    border-left-color: var(--primary-accent);
    font-weight: 600;
}

/* Admin Sidebar Footer */
.admin-sidebar-footer {
    padding: 20px;
    border-top: 2px solid var(--border-color);
}

.admin-logout-sidebar-btn {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 75, 87, 0.1);
    border: 2px solid rgba(255, 75, 87, 0.3);
    border-radius: 8px;
    color: #ff4b57;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.admin-logout-sidebar-btn:hover {
    background: rgba(255, 75, 87, 0.2);
    border-color: #ff4b57;
}

/* Admin Main Content */
.admin-main {
    flex: 1;
    height: 100vh;
    overflow-y: auto;
    background: var(--primary-bg);
}

/* Admin Content Header */
.admin-content-header {
    padding: 30px 40px;
    background: var(--elevated-bg);
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header-left h1 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.admin-header-left p {
    color: var(--text-body);
    font-size: 14px;
    margin: 0;
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 144, 226, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-accent);
    font-weight: 600;
}

.admin-user-info i {
    font-size: 24px;
}

/* Admin Sections */
.admin-section {
    display: none;
    padding: 40px;
    animation: fadeInSection 0.3s ease;
}

.admin-section.active {
    display: block;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-section-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.admin-section-header h1,
.admin-section-header h2 {
    font-size: 32px;
    color: var(--white);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.admin-section-header h1 i,
.admin-section-header h2 i {
    color: var(--cta-color);
    font-size: 28px;
}

.admin-section-header p {
    color: var(--text-body);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Payment Ledger Styles */
.payment-ledger-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.ledger-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ledger-title i {
    color: var(--cta-color);
    font-size: 28px;
}

.ledger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.ledger-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ledger-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--cta-color));
}

.ledger-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

.gcash-card::before {
    background: linear-gradient(90deg, #007aff, #0051d5);
}

.ecpay-card::before {
    background: linear-gradient(90deg, #ff6b35, #ff4500);
}

.mlhuillier-card::before {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.cebuana-card::before {
    background: linear-gradient(90deg, #ffc107, #ff9800);
}

.total-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(240, 180, 41, 0.15));
    border: 2px solid var(--cta-color);
}

.total-card::before {
    background: linear-gradient(90deg, var(--cta-color), var(--hover-color));
}

.ledger-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.ledger-icon i {
    font-size: 28px;
    color: var(--white);
}

.ledger-info {
    flex: 1;
}

.ledger-info h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ledger-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--cta-color);
    margin: 0 0 5px 0;
    font-family: 'Courier New', monospace;
}

.total-amount {
    font-size: 32px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(240, 180, 41, 0.5);
}

.ledger-count {
    color: var(--text-body);
    font-size: 13px;
    margin: 0;
}

.ledger-count span {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .ledger-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ledger-grid {
        grid-template-columns: 1fr;
    }
    
    .total-card {
        grid-column: 1;
    }
}

.admin-section-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.admin-search {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    min-width: 250px;
    transition: all 0.3s ease;
}

.admin-search:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: rgba(255, 255, 255, 0.08);
}

.admin-filter-btn,
.admin-filter-select {
    padding: 10px 16px;
    background: var(--elevated-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-filter-btn:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
}

.admin-filter-select {
    min-width: 180px;
}

/* Admin Products Grid */
.admin-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 25px 0 40px 0;
    margin-top: 10px;
    max-width: 900px;
}

.admin-product-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 100%;
}

.admin-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6b46c1, #4a90e2, #10b981);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.admin-product-card:hover {
    border-color: var(--primary-accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.4), 0 0 20px rgba(107, 70, 193, 0.2);
}

.admin-product-card:hover::before {
    opacity: 1;
}

.admin-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.admin-product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    pointer-events: none;
}

.admin-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.admin-product-card:hover .admin-product-image img {
    transform: scale(1.1);
}

.admin-product-info {
    padding: 16px 18px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.admin-product-info h3 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-product-price {
    color: #fbbf24;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
    letter-spacing: 0.5px;
}

.admin-product-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    background: rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    margin: 0 0 10px 0;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.admin-product-category i {
    color: var(--primary-accent);
    font-size: 12px;
}

/* Admin Stock Control */
.admin-stock-control {
    padding: 14px 18px 16px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.08), rgba(74, 144, 226, 0.08));
    border-top: 2px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
}

.admin-stock-control label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stock-control label i {
    color: var(--primary-accent);
    font-size: 12px;
}

.stock-input-group {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.admin-stock-input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.admin-stock-input:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: rgba(74, 144, 226, 0.15);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.admin-update-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.admin-update-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.admin-update-btn:active {
    transform: translateY(0);
}

.admin-update-btn i {
    font-size: 13px;
}

/* Admin Product Image Placeholder */
.admin-product-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
    color: var(--text-body);
    text-align: center;
    padding: 20px;
}

.admin-product-image .image-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary-accent);
    opacity: 0.5;
}

.admin-product-image .image-placeholder span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-product-stock {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.admin-product-stock label {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

/* Admin Tables */
.admin-table-container {
    background: var(--elevated-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: rgba(74, 144, 226, 0.1);
}

.admin-table th {
    padding: 16px 20px;
    text-align: left;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.admin-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(74, 144, 226, 0.05);
}

.admin-table td {
    padding: 16px 20px;
    color: var(--text-body);
    font-size: 14px;
}

.admin-table td.amount {
    color: var(--cta-color);
    font-weight: 700;
    font-size: 16px;
}

.admin-table td strong {
    color: var(--white);
    font-weight: 600;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-completed,
.status-paid {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-processing,
.status-preparing {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.status-ready-for-pickup {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.status-failed,
.status-cancelled {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

/* Order Badges */
.order-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.order-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.order-preparing {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid #2196f3;
}

.order-ready-for-pickup {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border: 1px solid #9c27b0;
}

.order-cancelled {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

/* Status Select Dropdowns */
.payment-status-select,
.order-status-select {
    padding: 8px 12px;
    background: var(--primary-bg);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-status-select:hover,
.order-status-select:hover {
    border-color: var(--primary-accent);
}

.payment-status-select:focus,
.order-status-select:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Responsive Admin Dashboard */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 240px;
    }
    
    .admin-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .admin-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .admin-dashboard {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 2px solid var(--border-color);
    }
    
    .admin-nav {
        display: flex;
        overflow-x: auto;
        padding: 0;
    }
    
    .admin-nav-btn {
        flex-direction: column;
        padding: 15px 20px;
        gap: 5px;
        font-size: 12px;
        border-left: none;
        border-bottom: 4px solid transparent;
    }
    
    .admin-nav-btn.active {
        border-left: none;
        border-bottom-color: var(--primary-accent);
    }
    
    .admin-main {
        height: auto;
    }
    
    .admin-content-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 20px;
    }
    
    .admin-section {
        padding: 20px;
    }
    
    .admin-section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .admin-section-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .admin-search {
        width: 100%;
    }
    
    .admin-products-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-table-container {
        overflow-x: auto;
    }
    
    .admin-table {
        min-width: 800px;
    }
}


/* ============================================================================
   ADMIN SYSTEM STYLES
   ============================================================================ */

/* Admin Login Section */
.admin-login-section {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.admin-credentials-display {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.credentials-box {
    text-align: center;
    color: white;
}

.credentials-box i {
    font-size: 24px;
    margin-bottom: 10px;
}

.credentials-box code {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #ffd700;
}

.admin-login-trigger-btn {
    width: 100%;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.admin-login-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Admin Mode Banner */
.admin-mode-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.admin-mode-banner i {
    font-size: 20px;
}

/* Admin Modal */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.admin-modal.active {
    display: flex;
}

.admin-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.close-admin-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.close-admin-modal:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.admin-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.admin-header i {
    font-size: 48px;
    margin-bottom: 15px;
}

.admin-header h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.admin-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.admin-form {
    padding: 30px;
}

.admin-login-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Admin Stock Management */
.admin-stock-management {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stock-label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.stock-input-group {
    display: flex;
    gap: 10px;
}

.stock-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.stock-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.update-stock-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-stock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Stock Display (User Mode) */
.stock-display {
    margin-bottom: 10px;
}

.stock-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.stock-text.out-of-stock {
    color: #ef4444;
}

.stock-text i {
    font-size: 14px;
}

/* Payment Management */
.payment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.transaction-number {
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

.payment-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-successful {
    background: #d1fae5;
    color: #065f46;
}

.status-failed {
    background: #fee2e2;
    color: #991b1b;
}

.payment-details {
    margin-bottom: 15px;
}

.payment-details p {
    margin: 5px 0;
    color: #64748b;
}

.payment-total {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b !important;
}

.payment-date {
    font-size: 12px !important;
}

.payment-actions {
    display: flex;
    gap: 10px;
}

.payment-action-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-action-btn.success-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.payment-action-btn.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.payment-action-btn.failed-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.payment-action-btn.failed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.empty-payments {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}

.empty-payments i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-payments p {
    margin: 10px 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.empty-payments small {
    font-size: 14px;
}

/* Admin Logout Button */
.admin-logout-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.admin-logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Responsive Admin Styles */
@media (max-width: 768px) {
    .admin-modal-content {
        width: 95%;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .stock-input-group {
        flex-direction: column;
    }
    
    .update-stock-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================================
   ADMIN DASHBOARD STYLES
   ============================================================================ */

/* Admin Dashboard Container */
.admin-dashboard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    z-index: 10000;
    display: none;
    overflow: hidden;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--elevated-bg) 0%, var(--secondary-bg) 100%);
    border-right: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10001;
}

.admin-sidebar-header {
    padding: 30px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-header i {
    font-size: 28px;
}

.admin-sidebar-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Admin Navigation */
.admin-nav {
    flex: 1;
    padding: 20px 15px;
    overflow-y: visible;
}

.admin-nav-btn {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--text-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    text-align: left;
}

.admin-nav-btn i {
    font-size: 18px;
    width: 24px;
}

.admin-nav-btn:hover {
    background: rgba(74, 144, 226, 0.15);
    transform: translateX(5px);
}

.admin-nav-btn.active {
    background: linear-gradient(135deg, var(--primary-accent) 0%, #667eea 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Admin Sidebar Footer */
.admin-sidebar-footer {
    padding: 20px 15px;
    border-top: 2px solid var(--border-color);
}

.admin-logout-btn-sidebar {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.admin-logout-btn-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Admin Content Area */
.admin-content {
    margin-left: 280px;
    height: 100vh;
    overflow-y: auto;
    padding: 40px;
    background: var(--primary-bg);
}

/* Admin Sections */
.admin-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.admin-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End of Admin Sections */


