    
        :root {
      --brand-red: #c0392b;
      --border-color: #e0e0e0;
    }
 
    body { font-family:'Lato', sans-serif }
 
    /* ── NAVBAR ── */
   /* Background image handler */
.set-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

* Elegant Category Card */
        .elegant-category-card {
            background: #fff;
            
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .elegant-category-card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }

        /* Header Styling */
        .category-header-elegant {
            background: linear-gradient(180deg, #e6d4c7, #eed3c1);
            color: 000;
            padding: 15px 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .header-icon {
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-title {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            letter-spacing: 0.3px;
        }

        /* Sidebar Container */
        .category-sidebar-elegant {
            max-height: 600px;
            overflow-y: auto;
            padding: 8px 0;
        }

        .category-sidebar-elegant::-webkit-scrollbar {
            width: 6px;
        }

        .category-sidebar-elegant::-webkit-scrollbar-track {
            background: transparent;
        }

        .category-sidebar-elegant::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .category-sidebar-elegant::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

        /* Main Category Items */
        .category-item-elegant {
            border-bottom: 1px solid #f0f0f0;
        }

        .category-header-btn {
            padding: 14px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .category-header-btn:hover {
            background-color: #f8f9ff;
            padding-left: 20px;
        }

        .category-link-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }

        .category-icon {
            color: #cc9977;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 20px;
        }

        .category-name-link {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.3s ease;
            letter-spacing: 0.2px;
        }

        .category-name-link:hover {
            color: #cc9977;
        }

        .expand-toggle {
            color: #999;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 20px;
        }

        .category-header-btn:hover .expand-toggle {
            color: #cc9977;
        }

        .expand-toggle.rotated {
            transform: rotate(90deg);
        }

        /* Subcategory Items */
        .subcategory-list-elegant {
            background-color: #f8f9ff;
            border-left: 2px solid #e93131;
        }

        .subcategory-item-elegant {
            border-bottom: 1px solid rgba(102, 126, 234, 0.1);
        }

        .sub-header-btn {
            padding: 11px 16px 11px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sub-header-btn:hover {
            background-color: #fff;
            padding-left: 28px;
        }

        .subcategory-link-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .sub-icon {
            color: #cc9977;
            font-size: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 16px;
        }

        .subcategory-name-link {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .subcategory-name-link:hover {
            color: #cc9977;
        }

        .expand-toggle-sub {
            color: #ccc;
            font-size: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 16px;
        }

        .sub-header-btn:hover .expand-toggle-sub {
            color: #cc9977;
        }

        .expand-toggle-sub.rotated {
            transform: rotate(90deg);
        }

        /* Third Level Items */
        .third-level-list-elegant {
            background-color: #fff;
            border-left: 2px solid #cc9977;
            margin-left: 10px;
        }

        .third-level-item-elegant {
            border-bottom: 1px solid rgba(118, 75, 162, 0.05);
        }

        .third-level-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 16px 9px 24px;
            text-decoration: none;
            color: #666;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .third-level-link:hover {
            color: #cc9977;
            padding-left: 28px;
            background-color: #f8f9ff;
        }

        .third-icon {
            color: #cc9977;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 14px;
            opacity: 0.6;
        }

        .third-level-link:hover .third-icon {
            opacity: 1;
        }

        /* Existing var-input styling */
        .var-input:checked + .var-btn {
            background: #000;
            color: #fff;
        }

        .cursor-pointer {
            cursor: pointer;
        }
 
    /* Logo text */
  
        .btn-primary{
             background-color: #cc9977 !important;
             border-color: #cc9977;
        }
         .btn-primary:hover{
             background-color: rgb(255, 250, 255) !important;
             border-color: #cc9977;
             color: #cc9977;
        }
        .text-h{
            color:#cc9977
        }
        
        
        .product-wrapper{
        position: relative;
        }

        /* Left & Right Buttons Common */
        .scroll-btn{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        background: rgba(0,0,0,0.7);
        color: #fff;
        border: none;
        font-size: 22px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 20;
        }

        /* Left Button */
        .scroll-btn:hover{
            background: #bd2e14;

        }

        /* Left Button */
        .scroll-btn.left{
        left: -10px;
        }

        /* Right Button */
        .scroll-btn.right{
        right: -10px;
        }
        .products{
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 20px;
        border-radius: 20px;
        }

        .products::-webkit-scrollbar{
        display: none;
        }

        /* Card */
        .product-card {
    padding: 6px;
}
.product-card .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    
}

.product-card .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Image wrapper */
.product-card .image-box {
    background: #1a1919
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Image */
.product-card img {
    width: 100%;
    height: auto;            /* ✅ keep original ratio */
    object-fit: cover;     /* ✅ no crop */
    max-height: 190px;       /* optional control */
}

/* Title */
.product-card .title {
    font-size: 11px;

    color: #4d4b4b;
    line-height: 1.4;
    margin-bottom: 6px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price */
.product-card .price {
    font-size: 19px;
    font-weight: 700;
    color: #111;
}

/* Old price */
.product-card .old-price {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
}



        .scroll-btn.left{
        left: 0;
        }

        .scroll-btn.right{
        right: 0;
        }
    .add-to-cart {
        margin-top: auto;
    }

    .add-to-cart button {
        background: transparent;
        border: 1px solid #cc9977;
        color: #cc9977;
        padding: 9px 22px;
        border-radius: 30px;
        font-size: 13px;
        cursor: pointer;
        transition: all .3s ease;
    }

    .add-to-cart button i {
        margin-right: 6px;
        font-size: 12px;
    }

    .add-to-cart button:hover {
        background: #cc9977;
        color: #fff;
    }
    .policy-header {
        background: linear-gradient(90deg, #4e54c8, #8f94fb);
        color: white;
        padding: 60px 20px;
        text-align: center;
        margin-bottom: 30px;
        border-radius: 0 0 20px 20px;
    }
    .section-card {
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .section-card .card-header {
        background-color: #4e54c8;
        color: white;
        font-weight: 500;
        cursor: pointer;
    }
    .card-body p {
        margin-bottom: 10px;
    }
.btn-primary {
    background-color: #c8a96e !important; 
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary:hover {
    background-color: #6b4023 !important;
    border: 1px solid #4a2f1d !important;
    color: #ffffff !important;
    border-color: #c8a96e !important;
    transform: translateY(-2px);
}