@font-face {
            font-family: 'PlayfairLocal';
            src: url('/e_commerce_store/Playfair_Display/static/PlayfairDisplay-Regular.ttf') format('truetype');
            font-weight: normal;
        }

        @font-face {
            font-family: 'PlayfairLocal';
            src: url('/e_commerce_store/Playfair_Display/static/PlayfairDisplay-Regular.ttf') format('truetype');
            font-weight: bold;
        }
        
        body {
            font-family: 'PlayfairLocal', sans-serif;
            background: linear-gradient(180deg, #121212 0%, #1E1E1E 100%);
            color: #e0e0e0;
        }
        
        .navbar {
            background-color: #1a1a1a !important;
            border-bottom: 1px solid #c39248;
        }
        
        .navbar-brand, .nav-link {
            color: #a3762f !important;
        }
        
        .nav-link:hover {
            color: #c39248 !important;
        }
        
        .cart-container, .summary-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            padding: 1.5rem;
            border: 1px solid #333;
        }
        
        .cart-item-img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border: 1px solid #333;
            border-radius: 5px;
            background-color: #121212;
        }
        
        .quantity-input {
            width: 60px;
            text-align: center;
            background-color: #121212;
            border: 1px solid #333;
            color: #e0e0e0;
        }
        
        .quantity-input:focus {
            background-color: #121212;
            border-color: #c39248;
            color: #e0e0e0;
            box-shadow: 0 0 0 0.25rem rgba(195, 146, 72, 0.25);
        }
        
        .cart-item {
            border-bottom: 1px solid #333 !important;
        }
        
        h1 {
            color: #c39248;
        }
        
        .text-danger {
            color: #C3261E !important;
        }
        
        .btn-outline-primary {
            color: #c39248;
            border-color: #c39248;
        }
        
        .btn-outline-primary:hover {
            background-color: #c39248;
            color: #121212;
        }
        
        .btn-dark {
            background-color: #333;
            border-color: #333;
        }
        
        .btn-dark:hover {
            background-color: #444;
            border-color: #444;
        }
        
        .btn-outline-danger {
            color: #C3261E;
            border-color: #C3261E;
        }
        
        .btn-outline-danger:hover {
            background-color: #C3261E;
            color: white;
        }
        
        .btn-primary {
            background-color: #c39248;
            border-color: #c39248;
            color: #121212;
            font-weight: bold;
        }
        
        .btn-primary:hover {
            background-color: #a3762f;
            border-color: #a3762f;
        }
        
        .alert-success {
            background-color: rgba(40, 167, 69, 0.2);
            border-color: #28a745;
            color: #e0e0e0;
        }
        
        .text-muted {
            color: #b0b0b0 !important;
        }
        
        .bi-cart-x {
            color: #b0b0b0 !important;
        }
        
        @media (max-width: 768px) {
            .cart-item-img {
                width: 60px;
                height: 60px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .cart-container, .summary-card {
                padding: 1rem;
            }
            
            .cart-item-img {
                width: 50px;
                height: 50px;
            }
        }