/* Premium Ocean Blue & Coral Theme */

:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent-color: #f97316;
    --accent-light: #fb923c;
    --deep-blue: #0c4a6e;
    --light-bg: #f0f9ff;
    --gradient-start: #06b6d4;
    --gradient-end: #0ea5e9;
    --coral-gradient: #f97316;
    --glow-color: rgba(14, 165, 233, 0.5);
}

/* Container - Same as home page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Glass morphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Top Header with ocean gradient */
.top-header {
    background: linear-gradient(135deg, #0891b2 0%, #0ea5e9 50%, #3b82f6 100%);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Main Header with ocean gradient */
.main-header {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #3b82f6 100%);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.5), 
                inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
}

.main-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #38bdf8, #f97316, transparent);
}

.logo h1 {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.4)); }
    50% { filter: drop-shadow(0 4px 16px rgba(14, 165, 233, 0.6)); }
}

.logo .tagline {
    color: #fef3c7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Search Bar */
.search-bar input {
    border: 2px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    transition: all 0.3s;
}

.search-bar input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4), 0 0 0 3px rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.search-bar button {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    transition: all 0.3s;
}

.search-bar button:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.6);
    transform: translateY(-2px) scale(1.05);
}

/* Header Actions */
.header-link {
    color: white;
    transition: all 0.3s;
    position: relative;
}

.header-link::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.header-link:hover::before {
    opacity: 1;
}

.header-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cart-count {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Navigation with glassmorphism */
.text-nav-with-mega {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(224, 242, 254, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2), 
                inset 0 1px 0 rgba(255,255,255,0.5);
    border-top: 2px solid var(--primary-light);
    border-bottom: 1px solid rgba(56, 189, 248, 0.3);
}

.nav-item-mega > a {
    color: var(--deep-blue);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-item-mega > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-item-mega:hover > a::before {
    width: 80%;
}

.nav-item-mega > a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Category Icons with glassmorphism */
.categories-nav {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(224, 242, 254, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2), 
                inset 0 1px 0 rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(56, 189, 248, 0.3);
}

.category-item {
    transition: all 0.3s;
}

.category-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.category-icon {
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    transition: all 0.3s;
}

.category-item:hover .category-icon {
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4), 0 0 20px rgba(14, 165, 233, 0.3);
}

.category-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    border-radius: 50%;
    opacity: 0.5;
}

/* Mega Dropdown */
.mega-dropdown-menu {
    background: white;
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.3);
    border: 2px solid var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
}

.mega-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.mega-column h4 {
    color: var(--deep-blue);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 8px;
}

.mega-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1) 0%, transparent 100%);
}

/* Enhanced 3D Buttons - Ocean & Coral */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5), 
                0 2px 4px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(56, 189, 248, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #075985 100%);
    box-shadow: 0 10px 35px rgba(14, 165, 233, 0.7), 
                0 4px 8px rgba(0,0,0,0.2),
                inset 0 1px 0 rgba(255,255,255,0.3),
                0 0 30px rgba(14, 165, 233, 0.5);
    transform: translateY(-4px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
    transform: translateY(-2px) scale(1.02);
}

/* Enhanced Product Cards with 3D */
.product-card {
    border: 2px solid rgba(167, 139, 250, 0.2);
    background: white;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15), 
                inset 0 1px 0 rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, transparent 50%, rgba(167, 139, 250, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover {
    border-color: var(--accent-violet);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.35), 
                0 8px 16px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255,255,255,0.8),
                0 0 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.product-card:hover::before,
.product-card:hover::after {
    opacity: 1;
}

.discount-badge {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.wishlist-btn {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
    transition: all 0.3s;
}

.wishlist-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    color: white;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.5);
}

/* Hero Slider - Compact Height */
.hero-slider {
    height: 200px !important;
    max-height: 200px;
    position: relative;
    z-index: 1;
}

.hero-slider .slide {
    min-height: 200px !important;
    height: 200px !important;
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 1;
}

.hero-slider .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.slide-content {
    padding: 30px 0 !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    max-width: 800px !important;
}

.slide-content h2 {
    font-size: 1.5rem !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 40px rgba(139, 92, 246, 0.5);
    margin-bottom: 5px !important;
}

.slide-content p {
    font-size: 0.9rem !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 10px !important;
}

.slide-content .btn {
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
    display: inline-block !important;
}

.slider-btn {
    background: rgba(139, 92, 246, 0.9);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary-violet);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    transform: scale(1.1);
}

.dot {
    background: rgba(139, 92, 246, 0.3);
}

.dot.active {
    background: var(--primary-violet);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

/* Section Titles */
.section-title {
    color: var(--deep-blue);
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

/* Footer - Ocean Blue & Coral */
.footer {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    box-shadow: 0 -4px 20px rgba(14, 165, 233, 0.4);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0ea5e9, #f97316, #0ea5e9, transparent);
    animation: footerShine 3s linear infinite;
}

@keyframes footerShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer h3 {
    color: #fef3c7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f97316 0%, #38bdf8 100%);
}

.footer a {
    transition: all 0.3s;
}

.footer a:hover {
    color: #fb923c;
    padding-left: 8px;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(56, 189, 248, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #f97316 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    border-color: #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.6), 0 0 20px rgba(14, 165, 233, 0.4);
    transform: translateY(-4px) scale(1.15) rotate(5deg);
}

.footer-bottom {
    background: rgba(12, 74, 110, 0.5);
    border-top: 1px solid rgba(56, 189, 248, 0.3);
}

.footer-bottom p {
    color: #e0f2fe;
}

.footer-bottom .fa-heart {
    color: #f97316;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Features Section */
.feature-card {
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.3), 0 0 20px rgba(249, 115, 22, 0.2);
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(249, 115, 22, 0.03) 100%);
}

.feature-card i {
    background: linear-gradient(135deg, #0ea5e9 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.4));
    transition: all 0.3s;
}

.feature-card:hover i {
    transform: scale(1.2) rotateY(360deg);
    transition: transform 0.6s;
}

/* Price Tags */
.current-price {
    color: var(--deep-blue);
    font-weight: 700;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Category Cards */
.category-card {
    border: 2px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
    transition: all 0.3s;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, white 100%);
}

.category-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.3), 0 0 20px rgba(249, 115, 22, 0.2);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(240, 249, 255, 1) 0%, white 100%);
}

.category-card .category-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.4));
}

.category-card:hover .category-icon {
    filter: drop-shadow(0 6px 16px rgba(249, 115, 22, 0.6));
    transform: scale(1.2) rotateY(360deg);
    transition: transform 0.6s;
}

/* Input Fields */
input:focus, textarea:focus, select:focus {
    border-color: var(--primary-violet);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    outline: none;
}

/* Links */
a {
    color: var(--primary-violet);
    transition: all 0.3s;
}

a:hover {
    color: var(--primary-dark);
}

/* Search Bar - Medium Size */
.search-bar {
    flex: 1;
    max-width: 600px !important;
}

.search-bar input {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
}

/* Become a Seller Link */
.become-seller-link {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px !important;
    margin-left: 10px !important;
}

.become-seller-link i {
    font-size: 18px;
}

/* More Menu Dropdown - Fixed Position */
.more-menu-wrapper {
    position: relative;
    z-index: 999999;
}

.header-actions {
    position: relative;
    z-index: 999999;
}

.more-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 18px;
    transition: all 0.3s;
}

.more-btn:hover {
    transform: translateY(-2px) rotate(90deg);
}

.more-dropdown {
    display: none;
    position: fixed;
    top: 65px;
    right: 15px;
    background: white;
    min-width: 260px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    z-index: 9999999;
    border: 2px solid rgba(56, 189, 248, 0.3);
}

.dropdown-section {
    padding: 10px 0;
}

.dropdown-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #878787;
    text-transform: uppercase;
    padding: 8px 20px;
    margin: 0;
    letter-spacing: 0.5px;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

.more-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px 12px 0 0;
}

/* Remove hover - using click instead */
.more-menu-wrapper .more-dropdown.active {
    display: block;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.more-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.more-item:last-child {
    border-bottom: none;
}

.more-item i {
    width: 20px;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s;
}

.more-item span {
    font-size: 14px;
    font-weight: 500;
}

.more-item:hover {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    padding-left: 25px;
}

.more-item:hover i {
    color: var(--accent-color);
    transform: scale(1.2) rotate(10deg);
}

/* Arrow indicator for dropdown */
.more-dropdown::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.1));
}

/* 3D Effects - Add depth to everything */
* {
    transform-style: preserve-3d;
}

/* Cart Page Styles - Matching Front Theme */
.cart-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3fa 100%);
    padding: 40px 0;
    min-height: 80vh;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cart-items {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f7fa;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    font-size: 18px;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
}

.item-details h3 a {
    color: #2d3748;
    text-decoration: none;
}

.item-price {
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-quantity button {
    width: 35px;
    height: 35px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s;
}

.item-quantity button:hover {
    background: #667eea;
    color: white;
}

.item-quantity input {
    width: 50px;
    text-align: center;
    border: 2px solid #e2e8f0;
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
}

.item-subtotal {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
    min-width: 100px;
    text-align: right;
}

.item-remove button {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.item-remove button:hover {
    background: #c53030;
}

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.cart-summary h2 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
}

.summary-row span:first-child {
    color: #718096;
}

.summary-row span:last-child {
    color: #2d3748;
    font-weight: 600;
}

.summary-divider {
    height: 2px;
    background: #e2e8f0;
    margin: 15px 0;
}

.summary-row.total {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
}

.summary-row.total span {
    color: #667eea;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.empty-cart i {
    font-size: 80px;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #718096;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Cart Responsive */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-summary {
        position: static;
    }
}

