/* ===== Bulk Order Wizard ===== */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 20px 0;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: all 0.4s;
    cursor: default;
}

.wizard-step.active {
    opacity: 1;
}

.wizard-step.completed {
    opacity: 0.8;
}

.wizard-step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: all 0.4s;
    background: var(--white);
}

.wizard-step.active .step-number {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 4px rgba(193, 121, 43, 0.15);
}

.wizard-step.active span {
    color: var(--gold-dark);
    font-weight: 600;
}

.wizard-step span {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 16px;
    min-width: 40px;
    max-width: 100px;
    transition: background 0.4s;
}

.wizard-step.completed + .step-connector {
    background: var(--success);
}

/* ===== Wizard Panels ===== */
.wizard-panel {
    display: none;
    animation: panelIn 0.4s ease;
}

.wizard-panel.active {
    display: block;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    color: var(--gold);
}

.panel-desc {
    color: var(--gray-500);
    margin-bottom: 28px;
    font-size: 1rem;
}

/* ===== Packages Grid ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--gray-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-card.selected {
    border-color: var(--gold);
    background: rgba(193, 121, 43, 0.03);
    box-shadow: 0 0 0 4px rgba(193, 121, 43, 0.1);
}

.package-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    color: white;
}

.package-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.package-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.package-price small {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 400;
}

.package-includes {
    text-align: right;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.package-includes li {
    font-size: 0.8rem;
    color: var(--gray-600);
    padding: 3px 0;
    list-style: none;
}

.package-includes li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    margin-left: 6px;
    font-size: 0.7rem;
}

/* ===== Product Selector ===== */
.product-selector-controls {
    margin-bottom: 24px;
}

.selector-search {
    position: relative;
    margin-bottom: 16px;
}

.selector-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.selector-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
}

.selector-search input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(193, 121, 43, 0.1);
}

.selector-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.selector-cat-btn {
    padding: 8px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    background: var(--white);
    font-family: var(--font);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray-600);
}

.selector-cat-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.selector-cat-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 600;
}

/* ===== Selected Items ===== */
.selected-items {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.selected-items h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.selected-item:last-child {
    border-bottom: none;
}

.selected-item img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.selected-item-info {
    flex: 1;
}

.selected-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.selected-item-info span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.selected-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.selected-item-qty button {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-50);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.selected-item-qty button:hover {
    background: var(--gold);
}

.selected-item-qty input {
    width: 40px;
    height: 32px;
    border: none;
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    text-align: center;
    font-family: var(--font);
    font-weight: 600;
}

.selected-item-price {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.9rem;
    min-width: 80px;
    text-align: left;
}

.selected-item-remove {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s;
}

.selected-item-remove:hover {
    color: var(--danger);
}

/* ===== Bulk Products Grid ===== */
.bulk-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.bulk-product-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.bulk-product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(193, 121, 43, 0.3);
}

.bulk-product-card.in-order {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(193, 121, 43, 0.15);
}

.bulk-product-card.in-order::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    z-index: 2;
}

.bulk-product-img {
    height: 140px;
    overflow: hidden;
    background: var(--gray-100);
}

.bulk-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bulk-product-info {
    padding: 12px;
}

.bulk-product-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
    height: 2.4em;
    overflow: hidden;
}

.bulk-product-info .price {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.bulk-add-btn {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold-dark);
    border-radius: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bulk-add-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.bulk-product-card.in-order .bulk-add-btn {
    background: var(--gold);
    color: var(--black);
}

/* ===== Extras ===== */
.extras-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-100);
}

.extras-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.extras-section h3 i {
    color: var(--gold);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.extra-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.extra-option:hover {
    border-color: var(--gold);
}

.extra-option.selected {
    border-color: var(--gold);
    background: rgba(193, 121, 43, 0.05);
}

.extra-option input[type="checkbox"] {
    display: none;
}

.extra-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.extra-option.selected .extra-check {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.extra-option.selected .extra-check::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
}

.extra-info {
    flex: 1;
}

.extra-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.extra-info span {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
}

/* ===== Dietary ===== */
.dietary-section {
    margin-top: 24px;
}

.dietary-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dietary-section h3 i {
    color: var(--success);
}

.dietary-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dietary-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: var(--white);
}

.dietary-check:hover {
    border-color: var(--success);
}

.dietary-check:has(input:checked) {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
    color: #065f46;
    font-weight: 600;
}

.dietary-check input {
    display: none;
}

.dietary-check i {
    color: var(--success);
}

/* ===== Event Form ===== */
.event-form {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.date-status {
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date-status.available {
    color: var(--success);
}

.date-status.limited {
    color: var(--warning);
}

.date-status.full {
    color: var(--danger);
}

/* ===== Review ===== */
.review-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.review-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-card h3 i {
    color: var(--gold);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.review-item {
    padding: 10px;
    background: var(--gray-50);
    border-radius: 8px;
}

.review-item label {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: block;
    margin-bottom: 2px;
}

.review-item strong {
    font-size: 0.9rem;
    color: var(--black);
}

.review-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.review-product:last-child {
    border-bottom: none;
}

.review-product img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.review-product-info {
    flex: 1;
}

.review-product-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

.review-product-info span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.review-product-price {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.85rem;
}

/* ===== Summary Card ===== */
.summary-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    border: 1px solid var(--gray-100);
}

.summary-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-dark);
    padding: 12px 0;
}

.summary-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 8px 0;
}

.deposit-info {
    background: rgba(193, 121, 43, 0.05);
    border: 1px solid rgba(193, 121, 43, 0.15);
    border-radius: 10px;
    padding: 14px;
    margin-top: 12px;
}

.deposit-info .deposit-icon {
    color: var(--gold);
    margin-bottom: 6px;
}

.deposit-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.deposit-sub {
    font-size: 0.8rem !important;
    color: var(--gray-400) !important;
}

/* ===== Wizard Nav ===== */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .wizard-steps {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .step-connector {
        display: none;
    }
    .wizard-step span {
        display: none;
    }
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .review-layout {
        grid-template-columns: 1fr;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
    .bulk-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dietary-options {
        flex-direction: column;
    }
}
