/* PradipSweets Delivery - Frontend CSS */
:root {
    --psd-primary: #ff4757;
    --psd-secondary: #2f3542;
    --psd-accent: #ffa502;
    --psd-success: #2ed573;
    --psd-bg: #f1f2f6;
    --psd-white: #ffffff;
    --psd-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --psd-glass: rgba(255, 255, 255, 0.8);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--psd-bg);
    color: var(--psd-secondary);
    font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
}

/* Premium Buttons */
.psd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.psd-btn-primary {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.psd-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.psd-btn-large {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.psd-item-sold-out {
    opacity: 0.6;
    filter: grayscale(0.8);
    pointer-events: none;
    position: relative;
}

.item-unavailable {
    background: rgba(0, 0, 0, 0.7) !important;
    color: #fff !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Checkout Page Styling */
.psd-checkout-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.psd-checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.psd-checkout-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--psd-secondary);
    margin-bottom: 10px;
}

.psd-checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.psd-side-card {
    background: var(--psd-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--psd-shadow);
}

.psd-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.psd-form-group {
    margin-bottom: 24px;
}

.psd-form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: #636e72;
}

.psd-input,
.psd-textarea {
    width: 100%;
    padding: 16px;
    background: #f8f9fa;
    border: 2px solid #f1f2f6;
    border-radius: 14px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.psd-input:focus,
.psd-textarea:focus {
    outline: none;
    border-color: var(--psd-primary);
    background: var(--psd-white);
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
}

.psd-payment-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #f1f2f6;
    border-radius: 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.psd-payment-option:hover {
    border-color: var(--psd-primary);
}

.psd-payment-option input[type="radio"] {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    accent-color: var(--psd-primary);
}

/* Order Summary */
.psd-order-summary {
    position: sticky;
    top: 40px;
}

.psd-pickup-badge {
    background: #fff5f5;
    color: var(--psd-primary);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px dashed rgba(255, 71, 87, 0.3);
}

.psd-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f2f6;
}

.psd-total-row {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--psd-secondary);
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 968px) {
    .psd-checkout-grid {
        grid-template-columns: 1fr;
    }

    .psd-checkout-container {
        margin: 30px auto;
    }
}