﻿
:root {
    --gold: #b89778;
    --gold-dark: #9c7a5a;
    --text: #2d2d2d;
    --bg: #faf8f6;
    --border: #eaeaea;
    --accent: #562f59; /* Purple accent for buttons and highlights, inspired by luxury jewelry sites */
    --white: #ffffff;
    --gray: #777777;
    --light-gray: #f5f5f5;
    --secondary: #1F3747;
    --primary: #5D1143;
}

body {
    background: var(--bg);
    font-family: 'Playfair Display', serif; /* Elegant serif font for premium feel */
    color: var(--text);
    line-height: 1.6;
}

.cl-cart-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.cl-cart {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.cl-items {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.cl-header {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent);
}

.cl-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

    .cl-item:hover {
        background: var(--light-gray);
        border-radius: 8px;
    }

    .cl-item:last-child {
        border-bottom: none;
    }

.cl-img img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .cl-img img:hover {
        transform: scale(1.05);
    }

.cl-details {
    flex: 1;
}

.cl-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.cl-meta {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.cl-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.cl-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cl-qty {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

    .cl-qty button {
        width: 40px;
        height: 40px;
        border: none;
        background: transparent;
        font-size: 18px;
        cursor: pointer;
        transition: background 0.2s;
    }

        .cl-qty button:hover {
            background: var(--light-gray);
        }

    .cl-qty span {
        width: 50px;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
        line-height: 40px;
    }

.cl-remove {
    color: var(--gray);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

    .cl-remove:hover {
        color: #c00;
    }

.cl-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px;
}

    .cl-summary h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 24px;
        color: var(--primary);
    }

.cl-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--secondary);
}

.cl-total {
    font-weight: 700;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
    margin-bottom: 14px;
    color: var(--primary);
}

.cl-checkout {
    width: 100%;
    padding: 8px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

    .cl-checkout:hover {
        background: var(--primary);
        color: var(--white);
        box-shadow: 0 4px 12px rgba(86, 47, 89, 0.2);
    }

.cl-empty {
    text-align: center;
    padding: 100px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.cl-empty-image {
    max-width: 200px;
    margin-bottom: 40px;
}

.cl-empty-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.cl-empty-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.cl-shop-now-btn {
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

    .cl-shop-now-btn:hover {
        background: var(--gold-dark);
        box-shadow: 0 4px 12px rgba(184, 151, 120, 0.2);
    }

.brand-banners-section {
    background: var(--white);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border);
}

.brand-banners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-banner {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

    .brand-banner:hover {
        filter: grayscale(0%);
        transform: scale(1.1);
    }

@media (max-width: 992px) {
    .cl-cart {
        grid-template-columns: 1fr;
    }

    .cl-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .cl-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cl-actions {
        justify-content: start;
    }
}
/* Pincode Styles - Premium Look */
.pincode-wrapper {
    position: relative;
}

.pincode-input {
    padding-left: 40px;
    height: 48px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 11px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .pincode-input:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 2px rgba(184,151,120,0.2);
    }

.pincode-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 20px;
}

.pincode-locate-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    border: none;
    padding: 6px 5px;
    border-radius: 6px;
    font-size: 11px;
    transition: background 0.2s;
}

    .pincode-locate-btn:hover {
        /*            background: var(--gold-dark);*/
    }
/* Modal Styles */
.pincode-modal {
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.modal-input {
    padding-left: 40px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

    .modal-input:focus {
        border-color: var(--gold);
    }

.modal-check-btn {
    background: var(--gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
}

    .modal-check-btn:hover {
        background: var(--gold-dark);
    }
/*  Empty Cart Styling */
.cl-empty-modern {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #faf8f6 0%, #fffdf9 100%);
    padding: 60px 20px;
}

.empty-title {
    font-weight: 700 !important;
}

.btn-empty-cta {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-empty-cta::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.6s;
        z-index: -1;
    }

    .btn-empty-cta:hover::before {
        left: 100%;
    }

    .btn-empty-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(184, 151, 120, 0.3);
    }

.text-gold {
    color: #b89778;
}

/* Responsive */
@media (max-width: 768px) {
    .cl-empty-modern {
        min-height: 70vh;
        padding: 40px 20px;
    }

    .empty-gif img {
        max-height: 220px;
    }

    .empty-title {
        font-size: 28px !important;
    }

    .trust-badges {
        gap: 20px !important;
    }
}

.cl-check {
    font-size: 10px;
    color: #562f59 !important;
}
/*  Exact Pincode Modal Enhancements */
#pincodeModal .modal-content {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

#pincodeModal input:focus {
    border-color: #b89778 !important;
    box-shadow: 0 0 0 4px rgba(184, 151, 120, 0.2);
    outline: none;
}

#pincodeModal .btn-close-white {
    filter: invert(1);
    opacity: 0.9;
}

#pincodeModal .bxs-map-pin {
    color: #b89778;
}

#pincodeModal .text-gold {
    color: #b89778;
}

