/* Holiday Catering Builder Styles */

/* Holiday Hero Section */
.holiday-hero {
    background: linear-gradient(135deg, #1B1B1B 0%, #7A5131 100%);
    color: var(--bone-white);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.holiday-badge {
    display: inline-block;
    background: var(--gold-ochre);
    color: var(--smoky-charcoal);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.holiday-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.holiday-hero .highlight {
    color: var(--gold-ochre);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.holiday-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.holiday-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.holiday-details i {
    color: var(--gold-ochre);
}

/* Builder Section */
.builder-section {
    padding: 60px 20px;
    background: var(--bone-white);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.builder-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Builder Main */
.builder-main {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.builder-header h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.9;
    color: var(--saddle-brown);
    margin-bottom: 10px;
}

.minimum-notice {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Build Steps */
.build-step {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.build-step:last-child {
    border-bottom: none;
}

.step-title {
    font-size: 1.8rem;
    color: var(--smoky-charcoal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.selection-counter {
    font-size: 1rem;
    color: var(--gold-ochre);
    font-weight: 600;
}

/* Package Options */
.package-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-option {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-option:hover {
    border-color: var(--saddle-brown);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.package-option.selected {
    border-color: var(--gold-ochre);
    background: #fffbf5;
    box-shadow: 0 8px 25px rgba(196,162,90,0.2);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-ochre);
    color: var(--smoky-charcoal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.package-badge.fan-favorite {
    background: var(--saddle-brown);
    color: white;
}

.package-badge.variety {
    background: var(--smoky-charcoal);
    color: white;
}

.package-option h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--saddle-brown);
    margin: 15px 0;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--smoky-charcoal);
    margin: 15px 0;
}

.package-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.package-details {
    color: #666;
    font-size: 0.9rem;
}

/* Selection Grid */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.selection-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.selection-item:hover {
    border-color: var(--saddle-brown);
    background: #fafafa;
}

.selection-item.selected {
    border-color: var(--gold-ochre);
    background: #fffbf5;
}

.selection-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}


.selection-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #999;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.selection-item.selected .selection-checkbox {
    background: var(--gold-ochre);
    border-color: var(--gold-ochre);
}

.selection-item.selected .selection-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.selection-content h4 {
    font-size: 1.1rem;
    color: var(--smoky-charcoal);
    margin-bottom: 5px;
}

.selection-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.default-label {
    background: #4a90e2;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.default-side {
    border-color: #4a90e2 !important;
}

.premium-badge {
    background: var(--gold-ochre);
    color: var(--smoky-charcoal);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.included-notice {
    background: #f0f7ff;
    border-left: 4px solid #4a90e2;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
    border-radius: 4px;
}

/* Order Summary */
.order-summary {
    position: relative;
}

.summary-sticky {
    position: sticky;
    top: 100px;
    background: var(--smoky-charcoal);
    color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.summary-sticky h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gold-ochre);
}

.summary-package {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.select-package-msg {
    color: #ccc;
    font-style: italic;
    text-align: center;
}

.summary-package h4 {
    color: var(--gold-ochre);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.summary-package p {
    color: #ddd;
    font-size: 0.9rem;
}

.summary-selections {
    margin-bottom: 20px;
}

.summary-category {
    margin-bottom: 15px;
}

.summary-category h5 {
    color: var(--gold-ochre);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-category ul {
    list-style: none;
    padding: 0;
}

.summary-category li {
    color: white;
    font-size: 0.9rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.summary-category li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--gold-ochre);
}

.summary-total {
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.guest-count-input {
    margin-bottom: 20px;
}

.guest-count-input label {
    display: block;
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.guest-count-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.guest-count-input input:focus {
    outline: none;
    border-color: var(--gold-ochre);
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.total-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-ochre);
}

.summary-actions {
    text-align: center;
}

.build-order-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.order-notice {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info-section {
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.contact-info-section h4 {
    color: var(--gold-ochre);
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-section .form-group {
    margin-bottom: 15px;
}

.contact-info-section label {
    display: block;
    color: #ddd;
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-info-section input,
.contact-info-section textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-info-section input::placeholder,
.contact-info-section textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-info-section input:focus,
.contact-info-section textarea:focus {
    outline: none;
    border-color: var(--gold-ochre);
    background: rgba(255,255,255,0.15);
}

.contact-info-section textarea {
    resize: vertical;
    min-height: 50px;
}

/* Holiday Info Section */
.holiday-info {
    background: white;
    padding: 60px 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 3rem;
    color: var(--gold-ochre);
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.5rem;
    color: var(--smoky-charcoal);
    margin-bottom: 15px;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item li {
    color: #666;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.info-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-ochre);
    font-weight: 700;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .builder-layout {
        grid-template-columns: 1fr 350px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .builder-layout {
        grid-template-columns: 1fr;
    }

    .order-summary {
        order: -1;
    }

    .summary-sticky {
        position: relative;
        top: 0;
    }

    .package-options {
        grid-template-columns: 1fr;
    }

    .selection-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .holiday-hero h1 {
        font-size: 2.5rem;
    }

    .builder-header h2 {
        font-size: 3rem;
    }

    .builder-main {
        padding: 25px;
    }

    .holiday-details {
        flex-direction: column;
        gap: 15px;
    }
}
