#custom-box-shop .shop-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}



/* ================================
   Box Contents Styles
   ================================ */

.user-box-wrapper {
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 16px;
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.user-box-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
    text-align: center;
}

.user-box-items {
    margin-bottom: 25px;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    overflow: hidden;
}

/* Box Item */
.box-item {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    border-bottom: 1px solid #f1f1f1;
    background: #fafafa;
    transition: background 0.2s, transform 0.2s;
}
.box-item:last-child {
    border-bottom: none;
}
.box-item:hover {
    background: #fffbea;
    transform: translateX(4px);
}

.item-img img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 18px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.item-info {
    flex: 1;
}
.item-title {
    font-weight: 600;
    font-size: 15px;
    color: #1f2937;
}
.item-price {
    font-size: 14px;
    color: #6b7280;
}

.remove-item {
    font-weight: bold;
    color: #ef4444;
    cursor: pointer;
    font-size: 20px;
    margin-left: 12px;
    transition: color 0.2s;
}
.remove-item:hover {
    color: #dc2626;
}

/* Summary Section */
.box-summary {
    text-align: center;
}
.box-summary p {
    margin: 6px 0;
    font-weight: 500;
    font-size: 15px;
    color: #374151;
}

/* Modern Progress Bar */
.progress-bar-wrapper {
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    height: 18px;
    margin: 14px 0 20px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.progress-bar {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    height: 100%;
    transition: width 0.4s ease-in-out;
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    line-height: normal;
}
.btn-add-to-cart:hover:not(:disabled) {
    background: linear-gradient(90deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
}
.btn-add-to-cart:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none !important;
    line-height: normal !important;
}
