.cart-page-wrapper {
    padding-top: 150px; /* Space for fixed navbar */
    background: url('../img/blurred-chicken-2.png') center/cover fixed no-repeat;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Cart Item Styling */
.cart-item-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.cart-img-box {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.cart-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quantity Controls */
.quantity-control {
    background: #f1f1f1;
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    padding: 5px 15px;
}

.qty-btn {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 10px;
}

.qty-num {
    font-weight: 700;
    margin: 0 10px;
}

/* Summary Card */
.summary-card {
    background: #f8f9fa;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
}

.voucher-input {
    background: #e9ecef;
    border: none;
    border-radius: 12px;
    height: 45px;
}

/* Support Buttons */
.btn-whatsapp {
    background-color: #198754;
    color: white;
    border-radius: 50rem;
    font-weight: 600;
    border: none;
}

.btn-phone {
    background-color: #198754;
    color: white;
    border-radius: 50rem;
    font-weight: 600;
    border: none;
}

.btn-whatsapp:hover, .btn-phone:hover {
    filter: brightness(0.9);
    color: white;
}


.custom-status-modal {
    background-color: #d9d9d9; /* Light grey shell */
    border-radius: 40px;
    border: none;
}

/* Pills in Modal 1 */
.order-header-pill {
    background-color: #f39200;
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
}

.order-item-pill {
    background-color: #c4c4c4;
    color: #333;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 500;
}

.status-btn {
    cursor: pointer;
    transition: 0.3s;
}

.status-btn:hover {
    background-color: #b0b0b0;
}

/* Timeline in Modal 2 */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background-color: #888;
    z-index: 1;
}

.status-step {
    position: relative;
    z-index: 2;
}

.status-pill {
    background-color: #c4c4c4; /* Default inactive */
    color: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    font-weight: 600;
}

.status-step.active .status-pill {
    background-color: #f39200; /* Active state */
}

.status-step i {
    font-size: 1.5rem;
    min-width: 30px;
}


/* Smooth rotation for the chevron */
.order-header-pill .accordion-arrow {
    transition: transform 0.3s ease;
}

.order-header-pill.collapsed .accordion-arrow {
    transform: rotate(-90deg); /* Points right/down when closed */
}

.order-header-pill:not(.collapsed) .accordion-arrow {
    transform: rotate(0deg); /* Points straight down when open */
}

/* Ensure the accordion doesn't add default white backgrounds */
.accordion-item, .accordion-header, .accordion-button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

/* Add a bit of breathing room for the expanded content */
.collapse.show {
    padding-bottom: 10px;
}

/* Container styling */
.success-modal-content {
    background-color: #d9d9d9; /* The signature light-grey shell */
    border-radius: 50px;
    border: none;
    padding: 10px;
}

/* Typography */
.success-modal-content h2 {
    font-family: 'Ariana Pro', sans-serif;
    color: #000;
    font-size: 1.8rem;
}

/* The Main "Continue" Button */
.btn-orange-pill {
    background-color: #f39200;
    color: white;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-orange-pill:hover {
    background-color: #d68100;
    color: white;
}

/* The Circular Close Button */
.btn-orange-circle-close {
    background-color: #f39200;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 1.2rem;
}

.btn-orange-circle-close:hover {
    background-color: #d68100;
    color: white;
}

/* Icon Tweak */
.status-graphic-wrapper img {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 50px;
    padding: 5px 12px;
    gap: 15px;
}

.qty-btn {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    user-select: none;
    color: #333;
    padding: 0 5px;
}

.qty-btn:hover {
    color: #f39200;
}

.qty-num {
    font-weight: 700;
    min-width: 20px;
    display: inline-block;
    text-align: center;
}

.remove-item-btn {
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.remove-item-btn:hover {
    color: #a30000 !important;
}