:root {
    /* Bakır ve Kahve Temalı Renk Paleti */
    --primary-color: #B87333;      /* Bakır */
    --secondary-color: #D2691E;    /* Koyu bakır */
    --accent-color: #CD853F;       /* Açık bakır */
    --dark-copper: #8B4513;        /* Koyu bakır */
    --light-copper: #DEB887;       /* Açık bakır */
    --coffee-dark: #3C2415;        /* Koyu kahve */
    --coffee-medium: #5D4037;      /* Orta kahve */
    --coffee-light: #8D6E63;       /* Açık kahve */
    --cream: #FFF8DC;              /* Krem */
    --warm-white: #FAF0E6;         /* Sıcak beyaz */
    --text-dark: #2C1810;          /* Koyu metin */
    --text-light: #6C6C6C;         /* Açık metin */
    --bg-light: #FFF8F5;           /* Açık arkaplan */
    --white: #FFFFFF;              /* Beyaz */
    --border-light: #E5E5E5;       /* Açık border */
    --shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
    --shadow-hover: 0 8px 30px rgba(139, 69, 19, 0.2);
    --gradient-copper: linear-gradient(135deg, #B87333 0%, #D2691E 100%);
    --gradient-coffee: linear-gradient(135deg, #3C2415 0%, #5D4037 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(139, 69, 19, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(184, 115, 51, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 40px rgba(139, 69, 19, 0.15);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    position: relative;
    letter-spacing: -0.02em;
}

.navbar-brand::after {
    content: '☕';
    margin-left: 10px;
    font-size: 1.4rem;
    color: var(--dark-copper);
    filter: drop-shadow(0 2px 4px rgba(139, 69, 19, 0.3));
}

.navbar-nav .nav-link {
    color: var(--coffee-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0 !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-copper);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.search-container {
    position: relative;
    max-width: 400px;
}

.search-input {
    border: 1px solid var(--border-light);
    border-radius: 25px;
    padding: 8px 40px 8px 15px;
    width: 100%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
    background: var(--white);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

.cart-btn {
    position: relative;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.cart-btn:hover::before {
    width: 100%;
    height: 100%;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #DC3545;
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switcher a {
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 2px;
    border: 2px solid transparent;
}

.lang-switcher a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-switcher a.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.3);
}

.lang-switcher img {
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.lang-switcher a:hover img {
    transform: scale(1.05);
}

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

/* Hero Section */
.hero {
    background: var(--gradient-coffee), 
                url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1920&h=1080&fit=crop&crop=center') center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(60, 36, 21, 0.8) 0%, rgba(93, 64, 55, 0.6) 50%, rgba(184, 115, 51, 0.4) 100%);
    z-index: 1;
}

.hero::after {
    content: '☕';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-hero {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--primary-color);
}

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

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 15px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    margin: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.sort-select {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 8px 15px;
    background: var(--white);
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

/* Product Grid */
.products-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-light) 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
    border: 1px solid rgba(184, 115, 51, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(184, 115, 51, 0.03), rgba(210, 105, 30, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
    border-color: rgba(184, 115, 51, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(45deg, #f0f0f0, #fafafa);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 69, 19, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.05);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    animation: fadeInLeft 0.5s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-info {
    padding: 20px;
    background: var(--white);
    position: relative;
}

.product-category {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-features {
    margin-bottom: 15px;
}

.feature-tag {
    background: linear-gradient(45deg, var(--bg-light), #f5f5f5);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin: 2px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-card:hover .feature-tag {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-1px);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.product-price::before {
    content: '₺';
    font-size: 1rem;
    margin-right: 2px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 10px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-1px);
}

/* Loading and Empty States */
.loading-spinner {
    text-align: center;
    padding: 50px 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--border-light);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--accent-color);
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer a:hover::after {
    width: 100%;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    transition: left 0.3s ease;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a:hover {
    transform: translateY(-2px) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 8px;
    }
    
    .search-container {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .filter-section .row {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-section .col-md-4 {
        text-align: center !important;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        margin: 0 5px;
        font-size: 1rem;
    }
    
    .search-container {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .cart-btn {
        width: 40px;
        height: 40px;
    }
    
    .filter-section {
        padding: 20px 0;
        margin-top: -30px;
    }
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
        margin: 2px;
    }
    
    .sort-select {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .product-card {
        margin-bottom: 25px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-outline {
        padding: 8px 15px;
    }
    
    .hero::after {
        font-size: 4rem;
        top: 30%;
        right: 5%;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 350px;
    }
    
    .footer .row {
        text-align: center;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 20px;
    }
    
    .search-container {
        margin: 15px 0;
    }
    
    .lang-switcher {
        justify-content: center;
        margin-top: 15px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-card {
        border-radius: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
    }
    
    .footer ul li {
        margin-bottom: 8px;
    }
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, var(--bg-light), var(--white));
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: var(--border-light);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.cart-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 15px;
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: var(--bg-light);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.1);
}

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

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

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.quantity-btn {
    background: var(--border-light);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.cart-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(45deg, var(--white), var(--bg-light));
    border-top: 1px solid var(--border-light);
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-dark);
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    transition: left 0.3s ease;
}

.btn-checkout:hover::before {
    left: 0;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
}

/* Notification Styles */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: var(--shadow);
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
} 