.cart-item-qty-input {
    width: 48px;
    text-align: center;
    font-size: 1.08em;
    font-weight: 500;
    border: 1.5px solid #672E22;
    border-radius: 6px;
    color: #672E22;
    background: #fff;
    margin: 0 2px;
    padding: 0.1em 0.2em;
    outline: none;
    transition: border-color 0.2s;
}
.cart-item-qty-input:focus {
    border-color: #4d2117;
}
.cart-modal-item input[type="checkbox"] {
    accent-color: #672E22;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    display: block;
}
.cart-modal-item #selectAllCartItems {
    accent-color: #672E22;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    display: block;
}
.cart-modal-item #deleteSelectedBtn {
    min-width: 90px;
    font-size: 0.98em;
    padding: 0.3em 0.7em;
    border-radius: 6px;
}
.cart-modal-grid {
    display: grid;
    grid-template-columns: 32px 48px 1.7fr 48px 36px 48px 1.1fr 44px;
    align-items: center;
    gap: 0.2em;
    background: #fff;
    border-radius: 2px;
    padding: 1em 0.7em 1em 0.7em;
    margin-bottom: 0.9em;
    border-bottom: 1px solid #eee;
}
.cart-col.cart-num {
    text-align: center;
    font-weight: 600;
    color: #672E22;
    font-size: 1em;
}
.cart-col.cart-img img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff8f0;
    border: 1px solid #f3e2db;
    display: block;
    margin: 0 auto;
}
.cart-col.cart-name {
    font-weight: 500;
    color: #672E22;
    font-size: 1em;
    padding-left: 0.2em;
    line-height: 1.5;
}
.cart-col.cart-minus, .cart-col.cart-plus {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-col.cart-qty {
    text-align: center;
    font-size: 1.13em;
    font-weight: 500;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-col.cart-price {
    text-align: right;
    font-weight: 600;
    color: #672E22;
    font-size: 1.08em;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.cart-col.cart-delete {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-modal-item .btn-outline-secondary {
    background: #fff;
    color: #672E22;
    border: 1.5px solid #672E22;
    border-radius: 6px;
    font-size: 1em;
    padding: 0.1em 0.7em;
    min-width: 32px;
    min-height: 32px;
    line-height: 1.1;
    box-shadow: none;
    transition: border-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-modal-item .btn-outline-secondary:hover, .cart-modal-item .btn-outline-secondary:focus {
    background: #f3e2db;
    color: #4d2117;
    border-color: #4d2117;
}
.cart-modal-item .btn-outline-danger {
    background: #fff;
    color: #672E22;
    border: 1.5px solid #672E22;
    border-radius: 6px;
    font-size: 1.1em;
    padding: 0.1em 0.7em;
    min-width: 32px;
    min-height: 32px;
    line-height: 1.1;
    box-shadow: none;
    transition: border-color 0.2s, color 0.2s;
    display: flex;
    align-items: right;
    justify-content: right;
}
.cart-modal-item .btn-outline-danger:hover, .cart-modal-item .btn-outline-danger:focus {
    background: #fbe9e6;
    color: #c0392b;
    border-color: #c0392b;
}
.cart-qty-controls {
    gap: 3em !important;
}
body {
        font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
        margin: 0;
        padding: 0;
        background: #fff;
        color: #2d1a14;
}
.navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        background: #fff !important;
        padding: 0.8rem 1rem;
        transition: all 0.3s ease;
        z-index: 1000;
}

.navbar.scrolled {
        background: #672E22 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* White text for scrolled navbar */
.navbar.scrolled .navbar-brand {
    color: white !important;
}

.navbar.scrolled .nav-link {
    color: white !important;
}

.navbar.scrolled .nav-link:hover {
    color: #f8f9fa !important;
}

.navbar.scrolled .navbar-toggler {
    border-color: white;
}


.navbar .navbar-toggler-icon {
    /* Ensure burger icon is always visible in default (non-scrolled) state */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
        margin-top: 85px;
}

/* Specific adjustments for homepage hero section */
.hero {
        margin-top: 0;
        padding-top: 85px;
}

/* Cart Badge Styling */
.cart-badge {
    top: -8px;
    right: -8px;
    position: absolute;
    background-color: #dc3545;
    color: white;
    border-radius: 50px;
    font-size: 0.7em;
    min-width: 18px;
    min-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Cart badge positioning - make it exactly like desktop */
.nav-link {
    position: relative !important;
}

.nav-link .badge.rounded-pill {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    left: auto !important;
    transform: none !important;
    z-index: 1000 !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    line-height: 18px !important;
    padding: 0 !important;
    border: 1px solid white !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
    background-color: #dc3545 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Keep product grid properly spaced */
.product-list {
        margin-top: 1rem;
}

header.scrolled {
        box-shadow: 0 2px 12px rgba(103,46,34,0.08);
        border-bottom: 1px solid rgba(103,46,34,0.12);
}

footer {
        background: #672E22;
        color: #fff;
        padding: 1.5em 1em 1.2em 1em;
        text-align: center;
        letter-spacing: 1px;
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(103,46,34,0.06);
}
main {
        padding: 0;
}
.btn {
        display: inline-block;
        background: #672E22;
        color: #fff;
        padding: 0.7em 2em;
        text-decoration: none;
        border-radius: 6px;
        margin-top: 1.5em;
        font-size: 1.1em;
        font-weight: 500;
        letter-spacing: 0.5px;
        border: none;
        transition: background 0.2s, box-shadow 0.2s;
        box-shadow: 0 2px 8px rgba(103,46,34,0.08);
        cursor: pointer;
}
.btn:hover, .btn:focus {
        background: #4d2117;
        color: #fff;
}
.btn-lg {
        font-size: 1.25em;
        padding: 1em 2.5em;
        margin-top: 2em;
}
.brand {
        color: #672E22;
        font-weight: bold;
        letter-spacing: 1px;
}
.hero {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        min-height: 70vh;
        background: #fff;
        padding: 3em 1em 2em 1em;
        gap: 2em;
}
.hero-content {
        max-width: 420px;
        text-align: left;
}
.hero-content h1 {
        font-size: 2.5em;
        margin-bottom: 0.3em;
        color: #672E22;
}

/* ===== CLEAN MODERN CART MODAL ===== */

/* Modal Base */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

/* Clean Cart Modal Content */
.cart-modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    width: 100%;
    max-width: 480px;
    min-width: 320px;
    max-height: 85vh;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 7.5vh auto;
    position: relative;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .cart-modal-content {
    transform: scale(1) translateY(0);
}

/* Clean Cart Header */
.cart-header {
    background: #ffffff;
    padding: 24px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.cart-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.cart-close-btn {
    background: #f8f9fa;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-close-btn:hover {
    background: #e9ecef;
    color: #495057;
}

/* Cart Content */
.cart-content {
    display: flex;
    flex-direction: column;
    height: calc(85vh - 100px);
    max-height: 600px;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
}

/* Clean Cart Items */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    animation: slideIn 0.3s ease;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.cart-item-status {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
}

.cart-item-color {
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8e8e93;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 80px;
    text-align: right;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.quantity-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.quantity-input {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    width: 45px;
    height: 28px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 4px;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 12px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Empty Cart State */
.empty-cart-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-cart-icon {
    font-size: 48px;
    color: #e9ecef;
    margin-bottom: 16px;
}

.empty-cart-state h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.empty-cart-state p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Clean Cart Summary */
.cart-summary {
    background: #f8f9fa;
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-label {
    font-size: 14px;
    color: #6c757d;
}

.summary-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.vat-row {
    margin-bottom: 16px;
}

.summary-divider {
    height: 1px;
    background: #e9ecef;
    margin: 16px 0;
}

.summary-total .summary-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.summary-total .summary-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Clean Cart Actions */
.cart-actions {
    padding: 20px 24px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 12px;
}

.btn-checkout {
    background: #672E22;
    border: none;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(103, 46, 34, 0.2);
}

.btn-checkout:hover {
    background: #2b130e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(103, 46, 34, 0.3);
    color: white;
}

.btn-checkout:active {
    transform: translateY(0);
}

#clearCartBtn {
    background: #a7a6a6;
    border: none;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    min-width: 140px;
}

#clearCartBtn:hover {
    background: #000000;
    border: none;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-modal-content {
        margin: 20px;
        max-width: calc(100vw - 40px);
        max-height: calc(100vh - 40px);
    }
    
    .cart-header,
    .cart-summary,
    .cart-actions {
        padding: 16px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    #clearCartBtn {
        order: 2;
        min-width: auto;
        width: 100%;
    }
    
    .btn-checkout {
        order: 1;
        width: 100%;
    }
    
    .cart-items-container {
        padding: 0 20px;
    }
    
    /* Fix cart badge positioning on mobile */
    .cart-badge {
        top: -8px !important;
        right: -8px !important;
        left: auto !important;
        transform: none !important;
        position: absolute !important;
        font-size: 0.7em !important;
        min-width: 18px !important;
        min-height: 18px !important;
        padding: 0.25em 0.5em !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Mobile specific adjustments for nav badge */
    .nav-link .badge.rounded-pill {
        top: -6px !important;
        right: -6px !important;
        min-width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        line-height: 16px !important;
    }
    
    /* Ensure cart icon container has proper positioning */
    .navbar-nav .nav-link {
        position: relative !important;
        display: inline-block !important;
    }
    
    /* Override any conflicting Bootstrap positioning */
    .navbar-nav .nav-item {
        position: relative !important;
    }
    
    /* Ensure navbar items are properly spaced on mobile */
    .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }

    /* Fix navbar toggle functionality */
    .navbar-toggler {
        border: none !important;
        padding: 0.25rem 0.5rem !important;
        font-size: 1.25rem !important;
        z-index: 1050;
    }

    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-collapse {
        z-index: 1040;
    }
}
.subtitle {
        font-size: 1.2em;
        color: #4d2117;
        margin-bottom: 1.5em;
        line-height: 1.5;
}
.hero-image img {
        max-width: 320px;
        width: 100%;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(103,46,34,0.10);
        background: #fff8f0;
        border: 2px solid #f3e2db;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero {
        flex-direction: column;
        padding: 2em 1em 1em 1em;
        gap: 1.5em;
        min-height: 60vh;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-image img {
        max-width: 220px;
    }
}
@media (max-width: 600px) {
    header, footer {
        padding: 1em 0.5em 1em 0.5em;
        font-size: 1em;
    }
    .btn, .btn-lg {
        width: 100%;
        font-size: 1em;
        padding: 0.8em 0;
        margin-top: 1em;
    }
    .hero {
        padding: 1.5em 0.5em 1em 0.5em;
        min-height: 50vh;
    }
    .hero-content h1 {
        font-size: 1.3em;
    }
    .product-list {
        flex-direction: column;
        gap: 1em;
        align-items: stretch;
    }
    .product {
        width: 100% !important;
        min-width: 0;
    }
    .modal-content {
        width: 95vw;
        padding: 1em;
    }
}
.products-main {
    padding-top: 1rem;
}

/* ===== CHECKOUT PAGE STYLES ===== */

/* Checkout Header */
.checkout-navbar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.checkout-brand-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-brand {
    text-decoration: none;
    color: #672E22;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.checkout-brand:hover {
    color: #8B4513;
    text-decoration: none;
    transform: scale(1.02);
}

.checkout-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.checkout-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: inherit;
}

/* Adjust main content for fixed header */
.checkout-main {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 85px);
    margin-top: 85px;
}

.checkout-header {
    margin-bottom: 2rem;
}

.checkout-title {
    color: #672E22;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.checkout-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(103, 46, 34, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checkout-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(103, 46, 34, 0.15);
}

.checkout-card-header {
    background: linear-gradient(135deg, #672E22 0%, #8B4513 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    border: none;
    padding: 1.25rem 1.5rem;
}

.checkout-card-header h4 {
    font-weight: 600;
    margin: 0;
}

.checkout-card .card-body {
    padding: 2rem 1.5rem;
}

/* Order Items */
.checkout-order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.checkout-order-item:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
}

.checkout-item-info {
    flex-grow: 1;
}

.checkout-item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.checkout-item-details {
    color: #6c757d;
    font-size: 0.9rem;
}

.checkout-item-price {
    font-weight: 600;
    color: #672E22;
    font-size: 1.1rem;
}

/* Total Section */
.checkout-total-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.checkout-summary {
    font-size: 1rem;
}

.checkout-summary .text-primary {
    color: #672E22 !important;
}

/* Form Styles */
.checkout-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.checkout-input:focus {
    border-color: #672E22;
    box-shadow: 0 0 0 0.2rem rgba(103, 46, 34, 0.15);
}

.checkout-input.is-invalid {
    border-color: #dc3545;
}

.checkout-input.is-valid {
    border-color: #28a745;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.text-danger {
    color: #dc3545 !important;
}

/* Buttons */
.checkout-submit-btn {
    background: linear-gradient(135deg, #672E22 0%, #8B4513 100%);
    border: none;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 46, 34, 0.3);
}

.checkout-submit-btn:hover {
    background: linear-gradient(135deg, #8B4513 0%, #672E22 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 46, 34, 0.4);
    color: white;
}

.checkout-submit-btn:active {
    transform: translateY(0);
}

.checkout-back-btn {
    background: transparent;
    border: 2px solid #672E22;
    color: #672E22;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkout-back-btn:hover {
    background: #672E22;
    color: white;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-navbar {
        padding: 0.75rem 0;
    }
    
    .checkout-logo {
        height: 35px;
    }
    
    .checkout-brand-text {
        font-size: 1.3rem;
    }
    
    .checkout-main {
        margin-top: 75px;
    }
    
    .checkout-title {
        font-size: 2rem;
    }
    
    .checkout-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .checkout-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .checkout-order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .checkout-item-price {
        align-self: flex-end;
    }
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    margin-top: 1em;
}
.cart-box {
    display: none;
}

