:root {
    --primary-yellow: #f4b400;
    --deep-black: #111111;
    --dark-gray: #1e1e1e;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --success-green: #2ecc71;
    --warning-orange: #f39c12;
    --danger-red: #e74c3c;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--deep-black);
    color: var(--text-light);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(244, 180, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(244, 180, 0, 0.1) 0%, transparent 40%);
}

.app-container {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Store Layout Specifics */
.app-container.store-layout {
    flex-direction: column;
}

.app-container.store-layout .main-content {
    height: calc(100vh - 80px); /* Subtract navbar height */
}

/* Navbar (New) */
.navbar {
    height: 80px;
    width: 100%;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 100;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    max-width: 600px;
}

.navbar-search {
    width: 100%;
}

.navbar-search input {
    width: 100%;
    padding: 10px 20px 10px 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
}

.navbar-search input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.1);
    outline: none;
}

.navbar-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1e1e1e;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: none;
}

.search-results-dropdown.show {
    display: block;
}

.search-result-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(244, 180, 0, 0.1);
}

.search-result-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #333;
}

.search-result-info h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.search-result-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nav-menu-horizontal {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item-h a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

.nav-item-h.active a, .nav-item-h a:hover {
    color: var(--primary-yellow);
}

.nav-item-h.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

/* Sidebar (Legacy/Other Views) */
.sidebar {
    width: 260px;
    height: 100%;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 24px;
    color: var(--primary-yellow);
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-text span {
    color: var(--primary-yellow);
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 3rem;
}

.nav-item {
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.nav-item:hover, .nav-item.active {
    background: rgba(244, 180, 0, 0.15);
    color: var(--primary-yellow);
    border: 1px solid rgba(244, 180, 0, 0.2);
}

.nav-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.main-content.full-width {
    width: 100%;
}

/* Header (Legacy) */
.top-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

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

.notification-btn {
    position: relative;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.notification-btn:hover {
    color: var(--primary-yellow);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-yellow);
    color: var(--deep-black);
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Scrollable Content Area */
.content-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0; /* Removed padding to allow full-width footer */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-yellow) var(--dark-gray);
    display: flex;
    flex-direction: column;
}

.page-content {
    padding: 2rem; /* Content padding moved here */
    flex: 1; /* Push footer down */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.btn-login-header {
    background: var(--primary-yellow);
    color: #111;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-login-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 180, 0, 0.3);
}

.search-wrapper-rel {
    position: relative;
    width: 100%;
}

.text-danger { color: var(--danger-red); }
.text-warning { color: var(--warning-orange); }
.text-success { color: var(--success-green); }

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.content-scroll::-webkit-scrollbar {
    width: 6px;
}

.content-scroll::-webkit-scrollbar-thumb {
    background-color: var(--primary-yellow);
    border-radius: 3px;
}

.content-scroll::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, rgba(244, 180, 0, 0.2), rgba(30, 30, 30, 0.6));
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(244, 180, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-banner.large-hero {
    min-height: 450px;
    padding: 4rem;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(244, 180, 0, 0.05) 100%);
}

.hero-banner.full-width-hero {
    border-radius: 0;
    margin: 0 0 2rem 0;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
    padding: 4rem 10%; /* Adjust padding for full width */
}

.hero-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.welcome-text {
    margin-bottom: 2rem;
}

.welcome-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

.hero-main-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-main-text span {
    color: var(--primary-yellow);
}

.hero-main-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

/* Common Hero Styles */
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--deep-black);
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.4);
}

.hero-image {
    width: 500px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.hero-img-real {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    transition: transform 0.3s ease;
}

.hero-img-real:hover {
    transform: scale(1.02);
}

/* Categories Section */
.categories-section {
    padding: 3rem 10%;
    margin-bottom: 2rem;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid var(--glass-border);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.section-header-center p {
    color: var(--text-muted);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6), rgba(20, 20, 20, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.7), rgba(30, 30, 30, 0.9));
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.cat-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 180, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .cat-icon {
    background: var(--primary-yellow);
    color: var(--deep-black);
    transform: scale(1.1);
}

.category-card h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Catalog Grid */
.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.catalog-filters {
    display: flex;
    gap: 12px;
}

.filter-chip {
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-chip:hover, .filter-chip.active {
    background: var(--primary-yellow);
    color: var(--deep-black);
    border-color: var(--primary-yellow);
}

.dropdown-filter {
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.product-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(20, 20, 20, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(244, 180, 0, 0.2);
    color: var(--primary-yellow);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    display: block;
}

.product-actions {
    display: flex;
    flex-direction: column; /* Stack vertically */
    gap: 10px;
    align-items: stretch; /* Full width items */
    margin-top: auto;
    padding: 0 15px 15px; /* Moved from inline style */
}

.stock-status {
    font-size: 0.8rem;
    color: var(--success-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stock-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    display: block;
}

.size-select {
    width: 100%; /* Full width */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 10px 12px; /* Slightly larger padding */
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.size-select:hover, .size-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-yellow);
}

.size-select option {
    background: #1e1e1e;
    color: var(--text-light);
}

.btn-add-cart {
    width: 100%; /* Full width */
    background: var(--primary-yellow);
    color: var(--deep-black);
    border: none;
    padding: 10px 16px; /* Slightly larger padding */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem; /* Slightly larger text */
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 180, 0, 0.3);
    background: #e5a900;
}

.btn-add-cart.disabled {
    background: var(--glass-bg);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    width: 100%;
}

/* Footer */
.main-footer {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 0;
    margin-top: auto;
    color: var(--text-muted);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-col h5 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--primary-yellow);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.contact-info li i {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-yellow);
    color: var(--deep-black);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

/* Glassmorphism Refinements */
.navbar {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.loader-logo {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.loader-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 2px;
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes loading {
    0% { left: -40%; }
    100% { left: 100%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Shopping Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.right-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.right-panel.open {
    right: 0;
}

@media (max-width: 480px) {
    .right-panel {
        width: 100%;
        right: -100%;
    }
}

.panel-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    margin: 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary-yellow);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.cart-item-price {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.cart-summary {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--glass-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-row.total {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-checkout {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: var(--primary-yellow);
    color: var(--deep-black);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.3);
}
