:root {
    --grundee-green: #54A300;
    --grundee-green-hover: #438200;
    --grundee-dark: #2c3e50;
    --grundee-accent: #e9f5db;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-container {
    max-width: 900px;
    margin: 40px auto;
}

.wizard-container header {
    text-align: center;
    margin-bottom: 40px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

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

.step-circle.active {
    border-color: var(--grundee-green);
    color: var(--grundee-green);
    box-shadow: 0 0 10px rgba(84, 163, 0, 0.2);
}

.step-circle.completed {
    background: var(--grundee-green);
    border-color: var(--grundee-green);
    color: var(--white);
}

.step-line {
    height: 2px;
    width: 50px;
    background: var(--gray-300);
}

.step-line.active {
    background: var(--grundee-green);
}

/* Cards */
.wizard-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
}

.wizard-card .section-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.wizard-card .section-title i {
    color: var(--grundee-green);
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.option-card {
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    background: var(--white);
    text-align: center;
    height: 100%;
}

.option-card:hover {
    border-color: var(--grundee-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option-card.selected {
    border-color: var(--grundee-green);
    background-color: var(--grundee-accent);
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.icon-circle i {
    font-size: 1.5rem;
    color: var(--gray-500);
}

.option-card.selected .icon-circle {
    background-color: var(--grundee-green);
}

.option-card.selected .icon-circle i {
    color: var(--white);
}

/* Helpers for prototype logic */
/*.datetime-wrapper {
    max-width: 400px;
    margin: 20px auto;
    text-align: left;
    animation: slideUp 0.3s ease;
}*/

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manual-notice {
    background: #fff4e6;
    border: 1px solid #ffd8a8;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: #d9480f;
    font-weight: 600;
    animation: slideUp 0.3s ease;
}

/* Availability Slots */
.availability-slots {
    margin-top: 25px;
    animation: slideUp 0.3s ease;
}

.slot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.slot-item:hover {
    border-color: var(--grundee-green);
    background: var(--white);
    box-shadow: var(--shadow);
}

.slot-item.selected {
    border-color: var(--grundee-green);
    background: var(--grundee-accent);
}

.slot-time {
    font-weight: 600;
    color: var(--grundee-dark);
}

.slot-badge {
    background: var(--grundee-green);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Refined location items */
.location-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 10px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.location-item:hover {
    border-color: var(--grundee-green);
    background: var(--white);
    box-shadow: var(--shadow);
}

.location-item.selected {
    border-color: var(--grundee-green);
    background: var(--grundee-accent);
}

.venue-group {
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 20px;
    padding: 0px 15px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.venue-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--grundee-dark);
    display: block;
    line-height: 1.2;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.venue-address {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 600;
}

.venue-address i {
    margin-right: 4px;
    color: var(--grundee-green);
    opacity: 0.7;
}

.field-main-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-img-small {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.field-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--grundee-dark);
    margin-bottom: 2px;
}

.field-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.field-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 4px;
}

.stat-item {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-item i {
    color: var(--grundee-green);
    font-size: 0.8rem;
}

.field-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    flex-wrap: nowrap;
}

.field-main-info {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 0 0 320px;
    min-width: 0;
}

.field-actions-selection {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.timeslots-section {
    width: 100%;
    min-width: 0;
}

.request-price-tag {
    font-size: 1rem;
    font-weight: 800;
    color: var(--grundee-green);
    line-height: 1.2;
    text-align: right;
    margin-bottom: 5px;
}

.request-price-tag .price-val {
    font-size: 1.1rem;
}

.request-price-tag .unit {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-left: 1px;
}

.field-bottom-section {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-100);
}

/* Slots Carousel */
.slots-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slots-carousel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slots-carousel::-webkit-scrollbar {
    display: none;
}

.slots-carousel.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    user-select: none;
    scroll-snap-type: none;
}

.slot-card {
    flex: 0 0 auto;
    width: 160px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.slot-card:hover {
    border-color: var(--grundee-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: var(--grundee-accent);
}

.slot-time {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--grundee-dark);
}

.slot-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slot-duration {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
}

.slot-price-value {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--grundee-green);
}

.location-item.request-mode.selected {
    border-color: var(--grundee-green);
    background: var(--grundee-accent);
}

.location-item.request-mode.selected .select-btn {
    display: none;
}

.location-item.request-mode.selected .unselect-btn {
    display: inline-block;
}

.info-btn-inline {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--grundee-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.info-btn-inline.icon-only {
    width: 38px;
    height: 38px;
    padding: 0;
    font-size: 1.1rem;
    border-radius: 50%;
}

.info-btn-inline:hover {
    background: var(--grundee-green);
    color: var(--white);
    border-color: var(--grundee-green);
}

.field-details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.detail-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--white);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    min-height: 24px;
}

.detail-item.status-icon {
    width: 28px;
    padding: 0;
    opacity: 0.4;
    filter: grayscale(1);
}

.detail-item.status-icon.active {
    opacity: 1;
    filter: none;
    background: var(--grundee-accent);
    border-color: var(--grundee-green);
    color: var(--grundee-green);
}

.weekday-pill input:checked+label,
.duration-pill input:checked+label {
    background: var(--grundee-green);
    color: white;
    border-color: var(--grundee-green);
}

.instant-badge {
    background: #e7f5ff;
    color: #1971c2;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Selection Summary */
.selection-summary {
    display: flex;
    gap: 30px;
    padding: 15px 20px;
    background: var(--gray-100);
    border-radius: 12px;
    border-left: 4px solid var(--grundee-green);
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.summary-value {
    font-weight: 700;
    color: var(--grundee-dark);
    font-size: 0.95rem;
}

.selection-summary.prominent {
    background: #fff;
    border: 2px solid var(--grundee-green);
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(84, 163, 0, 0.1);
}

.selection-summary.prominent .summary-value {
    font-size: 1.1rem;
}

/* Validation Errors */
.validation-error {
    color: #e03131;
    background: #fff5f5;
    border: 1px solid #ffc9c9;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: none;
    animation: shake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@media (max-width: 768px) {
    .field-top-row {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .field-main-info {
        flex: 1 1 auto;
        width: 100%;
    }

    .field-actions-selection {
        width: 100%;
        align-items: flex-start;
        min-width: unset;
    }

    .slot-card {
        width: 140px;
    }

    .location-item {
        padding: 15px;
    }
}

/* Carousel Fade Effects */
.slots-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 1));
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slots-carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 35px;
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 1));
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slots-carousel-wrapper.has-scroll-left::before {
    opacity: 1;
}

.slots-carousel-wrapper.has-scroll-right::after {
    opacity: 1;
}

/* Review & Finalize Step 4 */
.summary-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.summary-card:hover {
    border-color: var(--grundee-green);
    box-shadow: var(--shadow);
}

.summary-card .icon-box {
    width: 45px;
    height: 45px;
    background: var(--grundee-accent);
    color: var(--grundee-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.summary-card .info {
    flex-grow: 1;
}

.summary-card .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.summary-card .value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--grundee-dark);
}

.summary-card .sub-value {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 2px;
}

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

.next-steps-info li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.next-steps-info li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--grundee-green);
}

@media (max-width: 768px) {
    .summary-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Refined Step 4 Summary Styles */
.next-steps-prominent .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.next-steps-card {
    background: #fff;
    transition: transform 0.3s ease;
}

.next-steps-card:hover {
    transform: translateY(-2px);
}

.notice-request,
.notice-instant,
.notice-standard {
    animation: fadeIn 0.5s ease-out;
}

.pricing-prominent-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--grundee-accent);
    color: var(--grundee-green);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    border: 2px solid var(--grundee-green);
}

.field-summary-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.field-summary-card .field-img-wrapper {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.field-summary-card .field-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.field-summary-card .venue-logo-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.field-summary-card .venue-logo-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.field-summary-card .field-info {
    padding: 20px;
}

.fields-request-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.field-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--gray-100);
    border-radius: 12px;
}

.field-mini-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-category-header {
    border-left: 4px solid var(--grundee-green);
    padding-left: 15px;
    margin-bottom: 25px;
}

.result-category-header h3 {
    letter-spacing: -0.5px;
}

.result-category-header .text-muted {
    font-size: 0.9rem;
    line-height: 1.4;
}

.date-badge {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    user-select: none;
    border-width: 1.5px !important;
}

.date-badge:hover:not(.selected) {
    border-color: #dee2e6;
    background-color: #f1f3f5 !important;
}

.date-badge.selected {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.cursor-pointer {
    cursor: pointer;
}

#flexible-time-range {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.address-card {
    transition: all 0.2s ease;
    border-width: 2px !important;
}

.address-card:hover {
    border-color: var(--grundee-green) !important;
    transform: translateY(-2px);
}

.address-card.selected {
    border-color: var(--grundee-green) !important;
    background-color: rgba(130, 201, 30, 0.05) !important;
}

.address-card.selected .select-icon {
    display: block !important;
}

.add-new-card {
    border-style: dashed !important;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Custom Scroll Picker Styling */
.scroll-picker-container {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    user-select: none;
}

.picker-column-group {
    display: flex;
    height: 100px;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .scroll-picker-container {
        flex-direction: column;
        padding: 10px;
    }
}

@media (min-width: 769px) {
    .picker-column-group {
        flex: 1;

    }
}

.picker-column {
    flex: 1;
    position: relative;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.picker-column::-webkit-scrollbar {
    display: none;
}

.picker-list {
    padding: 50px 0;
}

.picker-item {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-400);
    scroll-snap-align: center;
    transition: all 0.2s ease;
    font-weight: 500;
    cursor: n-resize;
    white-space: nowrap;
    overflow: visible;
    padding: 0 10px;
}

.picker-item.active {
    color: var(--grundee-dark);
    font-size: 1.25rem;
    font-weight: 800;
    transform: scale(1.05);
}

/* Selection Overlay */
.selection-highlight {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 45px;
    margin-top: -22.5px;
    background: rgba(84, 163, 0, 0.08);
    border: 2px solid var(--grundee-green);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}

.time-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--grundee-green);
}

#wheel-hour .picker-item {
    text-align: right;
}

#wheel-minute .picker-item {
    text-align: left;
}

/* Summary Step Enhancements */
.summary-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.summary-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--grundee-green);
}

.summary-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--grundee-green);
}

.summary-card .card-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--grundee-dark);
    line-height: 1.2;
}

.summary-card .card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

.summary-card .flexibility-info {
    font-size: 0.8rem;
    color: var(--grundee-green);
    font-weight: 600;
}

.activity-img-summary {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
}

#summary-header-prominent {
    text-align: left;
    margin-bottom: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.title-field-group {
    margin-bottom: 0;
}

.title-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

#final-event-title {
    font-size: 1.8rem;
    font-weight: 800;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 8px 12px;
    margin-left: -12px;
    width: 100%;
    transition: var(--transition);
    color: var(--grundee-dark);
}

#final-event-title:hover,
#final-event-title:focus {
    background: var(--gray-100);
    border-color: var(--gray-200);
    outline: none;
}

/* Prominent Date/Time Styles */
.header-summary-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-summary-card .card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

.header-summary-card .card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--grundee-green);
    line-height: 1.2;
}

.header-summary-card .flexibility-info {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 600;
}

.add-description-btn,
.adjust-time-btn {
    font-weight: 700;
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.add-description-btn:hover,
.adjust-time-btn:hover {
    color: var(--grundee-green-hover);
    text-decoration: underline;
}

.description-textarea-wrapper {
    margin-bottom: 30px;
    animation: slideUp 0.3s ease;
}

.description-textarea {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 20px;
    font-size: 1rem;
    width: 100%;
    min-height: 120px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    color: var(--grundee-dark);
}

.description-textarea:focus {
    outline: none;
    border-color: var(--grundee-green);
    box-shadow: 0 0 0 3px rgba(84, 163, 0, 0.1);
}

/* Activity Inline Summary */
.activity-inline-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--gray-100);
    border-radius: 16px;
    margin-bottom: 20px;
}

.activity-inline-summary img,
.activity-inline-summary .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
}

.activity-inline-summary .icon-box {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grundee-green);
    font-size: 1.2rem;
}

.activity-inline-summary .activity-info {
    display: flex;
    flex-direction: column;
}

.activity-inline-summary .label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
}

.activity-inline-summary .name {
    font-weight: 800;
    color: var(--grundee-dark);
}

/* Recurrence Position Fix */
#recurrence-configuration-container {
    position: relative;
}

.recurrence-switch-top-right {
    position: absolute !important;
    top: 24px;
    right: 24px;
    margin: 0 !important;
}

.recurrence-switch-top-right .form-check-input {
    margin: 0 !important;
    transform: scale(1.3);
    cursor: pointer;
}

@media (max-width: 992px) {
    #summary-header-prominent {
        grid-template-columns: 1.2fr repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #summary-header-prominent {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    #final-event-title {
        font-size: 1.6rem;
    }

    .header-summary-card .card-value {
        font-size: 1.3rem;
    }
}

/* Next Steps & Finalize Integration */
.next-steps-card {
    background: #f8f9fa !important;
    border: 1px solid var(--gray-200) !important;
}

#finalize-button-container .btn-success {
    background-color: var(--grundee-green);
    border-color: var(--grundee-green);
    transition: all 0.2s ease;
}

#finalize-button-container .btn-success:hover {
    background-color: var(--grundee-green-hover);
    border-color: var(--grundee-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(84, 163, 0, 0.2);
}

.summary-section h5.label {
    letter-spacing: 0.5px;
}

#reservation-policy-container {
    background-color: #fff9ed !important;
    border-color: #ffda6a !important;
    transition: all 0.3s ease;
}

#reservation-policy-container:hover {
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
}

.start-over-link {
    transition: all 0.2s ease;
    opacity: 0.7;
}

.start-over-link:hover {
    opacity: 1;
    color: var(--gray-700) !important;
}

/* Event Wizard Redesign: Venue and Field Selection */

/* Clickable venue header row */
.venue-header {
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 0 -14px;
    transition: background-color 0.18s ease;
    outline: none;
}
.venue-header:hover {
    background-color: rgba(84, 163, 0, 0.06);
}
.venue-header:focus-visible {
    box-shadow: 0 0 0 3px rgba(84, 163, 0, 0.25);
}
.venue-header:hover .venue-title {
    color: var(--grundee-green, #54A300);
}
.venue-header .venue-title {
    transition: color 0.15s ease;
}

/* Chevron expand/collapse indicator */
.venue-expand-toggle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(84, 163, 0, 0.12);
    color: var(--grundee-green, #54A300);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.venue-expand-toggle i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}
.venue-header.expanded .venue-expand-toggle {
    background-color: var(--grundee-green, #54A300);
    color: #fff;
}
.venue-header.expanded .venue-expand-toggle i {
    transform: rotate(180deg);
}

/* Larger "Add all fields" switch */
.add-all-switch-container {
    transition: opacity 0.25s ease-in-out;
}
.add-all-switch-container .form-check-input {
    width: 2.75em;
    height: 1.5em;
    cursor: pointer;
    background-color: #ccc;
    border-color: #ccc;
}
.add-all-switch-container .form-check-input:checked {
    background-color: var(--grundee-green, #54A300);
    border-color: var(--grundee-green, #54A300);
}
.add-all-switch-container .form-check-label {
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    padding-left: 0.4em;
    line-height: 1.5em;
}

.venue-group .fields-list-wrapper {
    transition: height 0.35s ease;
}

