/* Wizard Layout */
.campflow-layout-main {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.campflow-layout-content {
    flex: 1;
    min-width: 0;
}

.campflow-layout-sidebar {
    width: 400px;
    position: sticky;
    top: 20px;
}

/* Progress Bar */
.campflow-progress-wizard {
    width: 100%;
}
.campflow-sticky-bottom-navigation .campflow-progress-wizard {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.campflow-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.campflow-steps::before {
    content: '';
    position: absolute;
    top: 20px; /* middle of the number circle (40px height) */
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cf-border-color);
    z-index: 1;
}

.campflow-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.campflow-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: var(--cf-card-bg);
    border: 2px solid var(--cf-border-color);
    border-radius: 50%;
    font-weight: 700;
    color: var(--cf-secondary-color);
    transition: var(--cf-transition);
}

.campflow-step-name {
    display: block;
    font-size: 14px;
    color: var(--cf-secondary-color);
    font-weight: 500;
}

/* Active Step */
.campflow-step.active .campflow-step-number {
    border-color: var(--cf-accent-color);
    background: var(--cf-accent-color);
    color: #fff;
}
.campflow-step.active .campflow-step-name {
    color: var(--cf-primary-color);
    font-weight: 700;
}

/* Completed Step */
.campflow-step.completed .campflow-step-number {
    border-color: var(--cf-success-color);
    background: var(--cf-success-color);
    color: #fff;
}
.campflow-step.completed .campflow-step-name {
    color: var(--cf-success-color);
}

/* Step Content Area */
.campflow-wizard-content-area {
    background: var(--cf-card-bg);
    padding: 30px;
    border-radius: var(--cf-border-radius);
    box-shadow: var(--cf-shadow);
    margin-bottom: 30px;
}

.campflow-wizard-content-area h2 {
    margin-top: 0;
    color: var(--cf-primary-color);
    border-bottom: 1px solid var(--cf-border-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Bottom Navigation */
.campflow-bottom-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cf-card-bg);
    padding: 20px 30px;
    border-radius: var(--cf-border-radius);
    box-shadow: var(--cf-shadow);
}

/* Summary Sidebar */
.campflow-summary-card {
    background: var(--cf-card-bg);
    padding: 25px;
    border-radius: var(--cf-border-radius);
    box-shadow: var(--cf-shadow);
}

.campflow-summary-card h3 {
    margin-top: 0;
    color: var(--cf-primary-color);
    border-bottom: 1px solid var(--cf-border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.campflow-summary-section {
    margin-bottom: 20px;
}

.campflow-summary-section h4 {
    margin: 0 0 5px;
    font-size: 14px;
    color: var(--cf-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campflow-placeholder-text {
    margin: 0;
    color: var(--cf-text-light);
    font-style: italic;
    font-size: 15px;
}

.campflow-summary-totals {
    border-top: 2px dashed var(--cf-border-color);
    padding-top: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.campflow-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--cf-primary-color);
}

.campflow-total-price {
    font-size: 24px;
    color: var(--cf-accent-color);
}

/* Package Selection Grid */
.campflow-packages-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.campflow-packages-grid.campflow-packages-count-1 {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}
.campflow-packages-grid.campflow-packages-count-2 {
    grid-template-columns: repeat(2, 1fr);
}
.campflow-packages-grid.campflow-packages-count-3 {
    grid-template-columns: repeat(3, 1fr);
}
.campflow-packages-grid.campflow-packages-count-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 992px) {
    .campflow-packages-grid.campflow-packages-count-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .campflow-packages-grid.campflow-packages-count-2,
    .campflow-packages-grid.campflow-packages-count-3,
    .campflow-packages-grid.campflow-packages-count-4 {
        grid-template-columns: 1fr;
    }
}

.campflow-package-card {
    background: var(--cf-card-bg);
    border-radius: var(--cf-border-radius);
    box-shadow: var(--cf-shadow);
    overflow: hidden;
    transition: var(--cf-transition);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    cursor: pointer;
}

.campflow-package-card:hover {
    box-shadow: var(--cf-shadow-hover);
    transform: translateY(-5px);
}

.campflow-package-card.selected {
    border-color: var(--cf-accent-color);
    box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.2), var(--cf-shadow-hover);
}

.campflow-package-card-image {
    height: 200px;
    background: #f0f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.campflow-package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campflow-image-placeholder {
    color: #bdc3c7;
    font-size: 48px;
}
.campflow-image-placeholder .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
}

.campflow-package-card-content {
    padding: 20px;
    flex-grow: 1;
}

.campflow-package-name {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: var(--cf-primary-color);
}

.campflow-package-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.campflow-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #ecf0f1;
    color: var(--cf-secondary-color);
}
.campflow-badge .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.campflow-package-description {
    color: var(--cf-text-light);
    font-size: 14px;
    margin: 0;
}

.campflow-package-card-footer {
    padding: 20px;
    border-top: 1px solid var(--cf-border-color);
    margin-top: auto;
}

.campflow-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.campflow-summary-value {
    margin: 0;
    color: var(--cf-primary-color);
    font-size: 16px;
}

.campflow-summary-subvalue {
    margin: 5px 0 0;
    color: var(--cf-secondary-color);
    font-size: 14px;
}

/* Date Selection Calendar */
.campflow-dates-selection-container {
    background: var(--cf-card-bg);
    border-radius: var(--cf-border-radius);
    box-shadow: var(--cf-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.campflow-calendar-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.campflow-calendar-titles {
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
}

.campflow-calendar-titles h3 {
    margin: 0;
    font-size: 18px;
    color: var(--cf-primary-color);
}

.campflow-calendar-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.campflow-calendar-month {
    flex: 1;
}

.campflow-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.campflow-calendar-day-name {
    font-weight: 600;
    color: var(--cf-text-light);
    font-size: 14px;
    padding: 10px 0;
}



.campflow-calendar-cell.empty {
    cursor: default;
    background: transparent;
}

















.campflow-calendar-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.legend-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 5px;
}

.legend-color.available {
    border: 1px solid var(--cf-border-color);
    background: #fff;
}

.legend-color.selected {
    background: var(--cf-accent-color);
}

.legend-color.booked {
    background: #f9f9f9;
    border: 1px solid transparent;
}

.campflow-quick-select {
    border-top: 1px solid var(--cf-border-color);
    padding-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.campflow-quick-select h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.campflow-quick-select-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.campflow-btn-outline {
    background: transparent;
    border: 1px solid var(--cf-primary-color);
    color: var(--cf-primary-color);
}

.campflow-btn-outline:hover {
    background: var(--cf-primary-color);
    color: #fff;
}

.campflow-trip-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 20px;
    border-radius: var(--cf-border-radius);
}

.timeline-point {
    text-align: center;
    min-width: 100px;
}

.timeline-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--cf-text-light);
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 16px;
    font-weight: 600;
    color: var(--cf-primary-color);
}

.timeline-line {
    flex-grow: 1;
    height: 2px;
    background: var(--cf-border-color);
    margin: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-nights {
    background: #f9f9f9;
    padding: 0 10px;
    font-size: 14px;
    color: var(--cf-accent-color);
    font-weight: 600;
}

/* Premium Stay Cards */
.campflow-stay-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}
.campflow-stay-card {
    background: var(--cf-card-bg);
    border-radius: var(--cf-border-radius);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
}
.campflow-stay-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.campflow-stay-card.highlight {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border-color: rgba(251, 146, 60, 0.2);
}
.campflow-stay-card-icon {
    width: 32px;
    height: 32px;
    background: rgba(251, 146, 60, 0.1);
    color: var(--cf-accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}
.campflow-stay-card-icon .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}
.campflow-stay-card-content {
    flex-grow: 1;
}
.campflow-stay-card-title {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--cf-text-light);
    letter-spacing: 1px;
    margin-bottom: 1px;
}
.campflow-stay-card-date {
    font-size: 15px;
    font-weight: 700;
    color: var(--cf-primary-color);
    line-height: 1.2;
}
.campflow-stay-card-day {
    font-size: 13px;
    color: var(--cf-secondary-color);
}

/* Premium Single Month Calendar */
.campflow-dates-selection-container {
    padding: 15px 30px;
    border-radius: 16px;
    margin-bottom: 12px;
}
.campflow-calendar-grid {
    gap: 5px;
}
.campflow-calendar-day-name {
    font-size: 12px;
    text-transform: uppercase;
    color: #95a5a6;
    letter-spacing: 1px;
    padding: 2px 0;
}
.campflow-calendar-toolbar.single-month {
    justify-content: space-between;
    padding: 0 15px;
    margin-bottom: 10px;
}
.campflow-calendar-wrapper.single-month-wrapper {
    max-width: 500px;
    margin: 0 auto 10px auto;
}
.campflow-calendar-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 14px;
    font-weight: 500;
}
.campflow-calendar-date.available {
    border: 1px solid #f0f3f5;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.campflow-calendar-date.available:hover {
    background: rgba(251, 146, 60, 0.1);
    color: var(--cf-accent-color);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 4px 10px rgba(251, 146, 60, 0.15);
    transform: translateY(-2px);
}
.campflow-calendar-date.selected {
    background: var(--cf-accent-color) !important;
    color: #fff !important;
    border-color: var(--cf-accent-color) !important;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4) !important;
    transform: scale(1.05) !important;
}
.campflow-calendar-date.in-range {
    background: rgba(251, 146, 60, 0.15) !important;
    color: var(--cf-accent-color) !important;
    border-radius: 4px;
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}
.campflow-calendar-date.disabled,
.campflow-calendar-date.unavailable {
    background: #f8f9fa;
    color: #bdc3c7;
    opacity: 0.8;
    box-shadow: none;
    border: 1px solid transparent;
}
.campflow-calendar-date.unavailable {
    text-decoration: none;
    background: #ecf0f1;
    color: #7f8c8d;
}
.campflow-calendar-date.today {
    border: 2px solid var(--cf-accent-color);
    font-weight: 700;
}

/* Premium Notifications */
#campflow-notifications-area {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.campflow-notification {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #ccc;
    min-width: 300px;
}
.campflow-notification.show {
    transform: translateX(0);
}
.campflow-notification.error { border-left-color: #EF4444; }
.campflow-notification.error .dashicons { color: #EF4444; }
.campflow-notification.success { border-left-color: #22C55E; }
.campflow-notification.success .dashicons { color: #22C55E; }
.campflow-notification.warning { border-left-color: #F59E0B; }
.campflow-notification.warning .dashicons { color: #F59E0B; }
.campflow-notification .dashicons {
    margin-right: 15px;
    font-size: 24px;
    width: 24px;
    height: 24px;
}
.campflow-notification-text {
    font-size: 15px;
    color: var(--cf-text-color);
    font-weight: 500;
}

/* Sticky Bottom Navigation */
.campflow-sticky-bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    z-index: 900;
    padding: 8px 0;
    height: 72px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
/* Offset footer for sticky nav */
.campflow-frontend-wrapper {
    padding-bottom: 90px; 
}
.campflow-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.campflow-nav-left, .campflow-nav-right {
    min-width: 150px;
}
.campflow-nav-right {
    text-align: right;
}
.campflow-nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

/* Progress in Nav */


.campflow-sticky-bottom-navigation .campflow-steps {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    width: 100%;
    min-width: 700px;
    height: 60px;
}
.campflow-sticky-bottom-navigation .campflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: #95a5a6;
    position: relative;
    flex: 1;
    z-index: 2;
    transition: all 0.25s ease;
}
.campflow-sticky-bottom-navigation .campflow-step:hover {
    transform: scale(1.02);
}
.campflow-sticky-bottom-navigation .campflow-step::after {
    content: '';
    position: absolute;
    top: 17px; /* align with middle of icon (36px / 2 - 1px) */
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: -1;
    transition: all 0.3s ease;
}
.campflow-sticky-bottom-navigation .campflow-step:last-child::after {
    display: none;
}
.campflow-sticky-bottom-navigation .campflow-step.completed::after {
    background: var(--cf-success-color);
}
.campflow-sticky-bottom-navigation .campflow-step.active::after {
    background: var(--cf-accent-color);
}
/* The icon circle */
.campflow-sticky-bottom-navigation .campflow-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;
    color: #95a5a6;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
}
.campflow-sticky-bottom-navigation .campflow-step.active .campflow-step-icon {
    border-color: var(--cf-accent-color);
    background: var(--cf-accent-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(251, 146, 60, 0.4);
    animation: stepPulse 2s infinite ease-out;
}
.campflow-sticky-bottom-navigation .campflow-step.completed .campflow-step-icon {
    border-color: var(--cf-success-color);
    background: var(--cf-success-color);
    color: #fff;
}

.campflow-sticky-bottom-navigation .campflow-step.active,
.campflow-sticky-bottom-navigation .campflow-step.completed {
    color: var(--cf-text-color);
}
.campflow-sticky-bottom-navigation .campflow-step.completed .campflow-step-name {
    color: var(--cf-success-color);
}
.campflow-sticky-bottom-navigation .campflow-step.active .campflow-step-name {
    color: var(--cf-text-color);
    font-weight: 700;
}
.campflow-sticky-bottom-navigation .campflow-step-name {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 2px;
}
@keyframes stepPulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(251, 146, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); }
}
@media (max-width: 768px) {
    .campflow-sticky-bottom-navigation .campflow-steps {
        min-width: 100%;
    }
    .campflow-sticky-bottom-navigation .campflow-step-name {
        display: none;
    }
}
/* Premium Buttons */
.campflow-btn {
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
}
.campflow-btn-primary {
    background: linear-gradient(135deg, var(--cf-accent-color) 0%, #D97706 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}
.campflow-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FB923C 0%, #D97706 100%);
}
.campflow-btn-success {
    background: linear-gradient(135deg, var(--cf-success-color) 0%, #16A34A 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}
.campflow-btn-success:hover {
    background: linear-gradient(135deg, #4ADE80 0%, #16A34A 100%);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}
.campflow-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Quick Select & Timeline */
.campflow-quick-select.premium {
    background: var(--cf-card-bg);
    border-radius: var(--cf-border-radius);
    padding: 12px 15px;
    border-top: none;
    box-shadow: var(--cf-shadow);
    margin-bottom: 12px;
}
.campflow-quick-select.premium h4 {
    margin-bottom: 8px;
    font-size: 14px;
}
.campflow-quick-select.premium .campflow-btn-outline {
    border-radius: 30px;
    flex: 1;
    max-width: 150px;
    padding: 10px 15px;
}
.campflow-quick-select.premium .campflow-btn-outline.active {
    background: var(--cf-accent-color);
    color: #fff;
    border-color: var(--cf-accent-color);
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
}
.campflow-trip-timeline.premium {
    background: var(--cf-card-bg);
    box-shadow: var(--cf-shadow);
    margin-bottom: 15px;
    padding: 12px 15px;
}
.campflow-trip-timeline.premium .timeline-line {
    background: linear-gradient(90deg, #ecf0f1 0%, var(--cf-accent-color) 50%, #ecf0f1 100%);
    height: 3px;
}
.campflow-trip-timeline.premium .timeline-nights {
    border-radius: 20px;
    padding: 5px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@keyframes timelinePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: var(--cf-accent-color); }
    100% { transform: scale(1); }
}
.campflow-pulse {
    animation: timelinePulse 0.4s ease-out;
}


/* Premium Summary */
.campflow-summary-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
    padding: 15px;
}
.campflow-summary-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1F2937;
    border-bottom: 2px solid #f0f3f5;
    padding-bottom: 8px;
}
.campflow-summary-section {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #f0f3f5;
}
.campflow-summary-section:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.campflow-summary-section h4 {
    font-size: 12px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
}
.campflow-summary-value {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}
.campflow-summary-subvalue {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 4px;
}
.campflow-summary-totals {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 12px;
    border-top: none;
}
.campflow-summary-row {
    font-size: 16px;
    color: #1F2937;
    font-weight: 600;
}
.campflow-total-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--cf-accent-color);
}
.campflow-calendar-date.hover-range {
    background: rgba(251, 146, 60, 0.05);
}

/* Accommodation Selection Step */
.campflow-step-accommodation {
    animation: campflowFadeIn 0.5s ease-out;
}

.campflow-accommodation-header {
    text-align: center;
    margin-bottom: 30px;
}

.campflow-accommodation-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--cf-primary-color);
    margin-bottom: 10px;
}

.campflow-accommodation-header p {
    font-size: 16px;
    color: var(--cf-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.campflow-accommodation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.campflow-accommodation-card {
    position: relative;
    background: var(--cf-card-bg);
    border-radius: var(--cf-border-radius);
    overflow: hidden;
    box-shadow: var(--cf-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.campflow-accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.campflow-accommodation-card.selected {
    border-color: var(--cf-accent-color);
    background-color: #FFF7ED;
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.15);
}

.campflow-accommodation-card.sold-out {
    opacity: 0.7;
    filter: grayscale(100%);
    pointer-events: none;
}

.campflow-acc-image {
    position: relative;
    height: 180px;
    background: #f0f3f5;
    overflow: hidden;
}

.campflow-acc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campflow-accommodation-card:hover .campflow-acc-image img {
    transform: scale(1.05);
}

.campflow-acc-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
}

.campflow-acc-placeholder .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

.campflow-acc-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.6);
}

.campflow-acc-status.available {
    background: rgba(34, 197, 94, 0.9);
}

.campflow-acc-status.limited {
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
}

.campflow-acc-status.sold-out {
    background: rgba(239, 68, 68, 0.9);
}

.campflow-acc-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.campflow-acc-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--cf-primary-color);
    margin: 0 0 10px 0;
}

.campflow-acc-description {
    font-size: 14px;
    color: var(--cf-text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.campflow-acc-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.campflow-meta-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--cf-text-color);
}

.campflow-meta-item .dashicons {
    color: var(--cf-accent-color);
    margin-right: 5px;
}

.campflow-acc-amenities {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f3f5;
}

.campflow-amenity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cf-text-light);
    font-size: 14px;
}

.campflow-acc-package-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    border-left: 3px solid var(--cf-accent-color);
}

.campflow-package-name {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #95a5a6;
    margin-bottom: 5px;
}

.campflow-package-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--cf-primary-color);
}

.campflow-package-duration {
    font-size: 13px;
    color: var(--cf-text-light);
    margin-top: 3px;
}

.campflow-acc-actions {
    margin-top: auto;
}

.campflow-room-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f3f5;
    border-radius: 30px;
    padding: 5px;
}

.campflow-counter-btn { width: 36px; height: 36px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: all 0.2s ease; font-size: 20px; font-weight: bold; line-height: 1; } .campflow-counter-btn.plus { background: var(--cf-accent-color); color: #fff; } .campflow-counter-btn.plus:hover { background: #D97706; } .campflow-counter-btn.minus { background: #fff; color: var(--cf-text-color); } .campflow-counter-btn.minus:hover { background: var(--cf-accent-color); color: #fff; } .campflow-counter-btn:disabled { opacity: 0.5; cursor: not-allowed; background: #fff; color: #bdc3c7; }

.campflow-counter-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--cf-primary-color);
    outline: none;
}

.campflow-acc-soldout-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: #ecf0f1;
    color: #95a5a6;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.campflow-invalid-highlight {
    outline: 2px solid #EF4444 !important;
    outline-offset: 4px;
    border-radius: 4px;
    transition: outline 0.2s ease-in-out;
}

#campflow-calendar-prev,
#campflow-calendar-next {
    background: var(--cf-accent-color);
    color: #fff;
    border: none;
}

#campflow-calendar-prev:hover,
#campflow-calendar-next:hover {
    background: #D97706;
}

#campflow-calendar-prev:disabled,
#campflow-calendar-next:disabled {
    background: #ecf0f1;
    color: #bdc3c7;
    cursor: not-allowed;
}

.campflow-accommodation-card.selected::before {
    content: "Selected";
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--cf-accent-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
.campflow-sticky-bottom-navigation .campflow-step.completed .campflow-step-icon i.fa-check {
    animation: checkPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Extras Selection Step */
.campflow-step-extras {
    animation: campflowFadeIn 0.5s ease-out;
}

.campflow-step-description {
    font-size: 16px;
    color: var(--cf-text-light);
    margin-bottom: 30px;
}

.campflow-extra-category-group {
    margin-bottom: 40px;
}

.campflow-category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cf-primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f3f5;
}

.campflow-extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.campflow-extra-card {
    background: var(--cf-card-bg);
    border-radius: var(--cf-border-radius);
    box-shadow: var(--cf-shadow);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.campflow-extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.campflow-extra-card.is-selected {
    border-color: var(--cf-accent-color);
    background-color: #FFF7ED;
}

.campflow-extra-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.campflow-extra-header {
    margin-bottom: 10px;
}

.campflow-extra-category-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cf-accent-color);
    background: rgba(251, 146, 60, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.campflow-extra-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--cf-primary-color);
    margin: 0;
}

.campflow-extra-description {
    font-size: 14px;
    color: var(--cf-text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.campflow-extra-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.campflow-extra-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--cf-primary-color);
}

.campflow-extra-calc-type {
    font-size: 12px;
    color: #95a5a6;
    font-weight: 600;
    text-transform: uppercase;
}

.campflow-extra-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #f0f3f5;
}

.campflow-extra-card.is-selected .campflow-extra-footer {
    background: rgba(251, 146, 60, 0.05);
    border-top-color: rgba(251, 146, 60, 0.2);
}

.campflow-quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    border: 1px solid #e2e8f0;
}

.campflow-extra-card.is-selected .campflow-quantity-selector {
    border-color: var(--cf-accent-color);
}

.campflow-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f0f3f5;
    color: var(--cf-text-color);
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.campflow-qty-btn:hover {
    background: var(--cf-accent-color);
    color: #fff;
}

.campflow-qty-btn.campflow-qty-plus {
    background: rgba(251, 146, 60, 0.1);
    color: var(--cf-accent-color);
}

.campflow-qty-btn.campflow-qty-plus:hover {
    background: var(--cf-accent-color);
    color: #fff;
}

.campflow-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--cf-primary-color);
    outline: none;
    -moz-appearance: textfield;
}

.campflow-qty-input::-webkit-outer-spin-button,
.campflow-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.campflow-btn-extra-toggle {
    width: 100%;
    padding: 10px 15px;
    background: transparent;
    border: 2px solid var(--cf-accent-color);
    color: var(--cf-accent-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.campflow-btn-extra-toggle:hover {
    background: var(--cf-accent-color);
    color: #fff;
}

.campflow-btn-extra-toggle .text-remove {
    display: none;
}

.campflow-extra-card.is-selected .campflow-btn-extra-toggle {
    border-color: #e5e7eb;
    color: #6b7280;
    background: #f9fafb;
}

.campflow-extra-card.is-selected .campflow-btn-extra-toggle:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

.campflow-extra-card.is-selected .campflow-btn-extra-toggle .text-add {
    display: none;
}

.campflow-extra-card.is-selected .campflow-btn-extra-toggle .text-remove {
    display: inline-block;
}

/* Update Summary List to remove quantity multiplier */
.campflow-summary-extras-list .extra-name {
    font-weight: 500;
    flex: 1;
}

/* Hide the old quantity styles */
.campflow-quantity-selector,
.campflow-qty-btn,
.campflow-qty-input {
    display: none;
}

/* Summary List Styles */
.campflow-summary-extras-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.campflow-summary-extras-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
    color: #374151;
}

.campflow-summary-extras-list li:last-child {
    margin-bottom: 0;
}

.campflow-summary-extras-list .extra-name {
    font-weight: 500;
    flex: 1;
}

.campflow-summary-extras-list .extra-qty {
    font-weight: 700;
    color: var(--cf-accent-color);
    background: rgba(251, 146, 60, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}


/* Extra Image Styles */
.campflow-extra-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.campflow-extra-image-placeholder {
    background-color: #f3f4f6;
    background-image: linear-gradient(45deg, #f3f4f6 25%, #e5e7eb 25%, #e5e7eb 50%, #f3f4f6 50%, #f3f4f6 75%, #e5e7eb 75%, #e5e7eb 100%);
    background-size: 20px 20px;
}

.campflow-category-title .dashicons,
.campflow-extra-category-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
    margin-right: 4px;
    vertical-align: middle;
}


/* Guest Step Styles */
.campflow-step-guests-wrapper {
    width: 100%;
}

.campflow-guest-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.campflow-guest-header {
    background: #f9fafb;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.campflow-guest-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
}

.campflow-guest-title .dashicons {
    margin-right: 8px;
    color: #f97316;
}

.campflow-guest-body {
    padding: 20px;
}

.campflow-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.campflow-form-row-2 .campflow-form-group {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

.campflow-form-group {
    margin-bottom: 16px;
}

.campflow-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.campflow-required {
    color: #ef4444;
}

.campflow-guest-input,
.campflow-guest-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #111827;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.campflow-guest-input:focus,
.campflow-guest-textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.campflow-guest-input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.campflow-field-hint {
    margin: 6px 0 0 0;
    font-size: 12px;
    color: #6b7280;
}

/* Review Step Styles */
.campflow-step-review-wrapper {
    width: 100%;
}

.campflow-review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.campflow-review-header {
    background: #f9fafb;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.campflow-review-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.campflow-review-body {
    padding: 20px;
}

.campflow-review-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.campflow-review-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.campflow-review-label {
    color: #4b5563;
    font-size: 14px;
}

.campflow-review-value {
    color: #111827;
    font-size: 14px;
    text-align: right;
}

.campflow-review-extras-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.campflow-review-extras-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.campflow-review-extras-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.campflow-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
}

.campflow-badge-gray {
    background: #f3f4f6;
    color: #4b5563;
}

.campflow-terms-container {
    background: #fff8f1;
    border: 1px solid #fed7aa;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.campflow-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.campflow-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 12px;
}

.campflow-checkbox-label a {
    color: #f97316;
    text-decoration: underline;
}

.campflow-checkbox-label a:hover {
    color: #ea580c;
}

.campflow-review-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

@media (max-width: 480px) {
    #campflow-notifications-area {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    .campflow-notification {
        min-width: unset;
        width: 100%;
    }
}


/* Payment step desktop layout override: keep Booking Summary on the right.
 * This intentionally overrides theme/plugin flex-direction rules on desktop.
 */
@media (min-width: 993px) {
    .campflow-layout-main {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 30px !important;
    }

    .campflow-layout-content {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        order: 1 !important;
    }

    .campflow-layout-sidebar {
        width: 400px !important;
        flex: 0 0 400px !important;
        order: 2 !important;
        position: sticky !important;
        top: 20px !important;
    }
}

@media (max-width: 992px) {
    .campflow-layout-main {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }

    .campflow-layout-content,
    .campflow-layout-sidebar {
        width: 100% !important;
        flex: 0 0 auto !important;
    }

    .campflow-layout-content { order: 1 !important; }
    .campflow-layout-sidebar { order: 2 !important; position: static !important; }
}

/* ============================================================
   CampFlow Wizard - Theme Override Protection
   Keep the existing wizard design authoritative inside the
   CampFlow frontend wrapper. This prevents theme/global form
   styles from overriding wizard controls.
   ============================================================ */

.campflow-frontend-wrapper input,
.campflow-frontend-wrapper select,
.campflow-frontend-wrapper textarea {
    font-family: inherit !important;
    box-sizing: border-box !important;
}

/* Text-like CampFlow inputs */
.campflow-frontend-wrapper input[type="text"],
.campflow-frontend-wrapper input[type="email"],
.campflow-frontend-wrapper input[type="number"],
.campflow-frontend-wrapper input[type="tel"],
.campflow-frontend-wrapper input[type="url"],
.campflow-frontend-wrapper input[type="search"],
.campflow-frontend-wrapper input[type="password"],
.campflow-frontend-wrapper input[type="date"],
.campflow-frontend-wrapper input[type="datetime-local"],
.campflow-frontend-wrapper input[type="month"],
.campflow-frontend-wrapper input[type="time"],
.campflow-frontend-wrapper input[type="week"],
.campflow-frontend-wrapper textarea,
.campflow-frontend-wrapper select {
    box-sizing: border-box !important;
}

/* Guest form controls - preserve wizard.css values against theme rules */
.campflow-frontend-wrapper .campflow-guest-input,
.campflow-frontend-wrapper .campflow-guest-textarea {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #111827 !important;
    background-color: #fff !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
}

.campflow-frontend-wrapper .campflow-guest-input:focus,
.campflow-frontend-wrapper .campflow-guest-textarea:focus {
    outline: none !important;
    border-color: #f97316 !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1) !important;
}

.campflow-frontend-wrapper .campflow-guest-input:invalid:not(:placeholder-shown) {
    border-color: #ef4444 !important;
}

/* Accommodation quantity input */
.campflow-frontend-wrapper .campflow-counter-input {
    width: 50px !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--cf-primary-color) !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
}

/* Extra quantity input (if present) */
.campflow-frontend-wrapper .campflow-qty-input {
    width: 40px !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--cf-primary-color) !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    appearance: none !important;
    -moz-appearance: textfield !important;
    -webkit-appearance: none !important;
    box-sizing: border-box !important;
}

.campflow-frontend-wrapper .campflow-qty-input::-webkit-outer-spin-button,
.campflow-frontend-wrapper .campflow-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Checkbox/radio controls: do not let global input rules resize them */
.campflow-frontend-wrapper input[type="checkbox"],
.campflow-frontend-wrapper input[type="radio"] {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin: initial !important;
    border-radius: initial !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.campflow-frontend-wrapper .campflow-checkbox-label input[type="checkbox"] {
    margin-top: 3px !important;
    margin-right: 12px !important;
}

/* Generic CampFlow form groups */
.campflow-frontend-wrapper .campflow-form-group input,
.campflow-frontend-wrapper .campflow-form-group select,
.campflow-frontend-wrapper .campflow-form-group textarea {
    font-family: inherit !important;
    box-sizing: border-box !important;
}

/* Prevent the theme's generic input rules from changing CampFlow buttons */
.campflow-frontend-wrapper button,
.campflow-frontend-wrapper input[type="button"],
.campflow-frontend-wrapper input[type="submit"],
.campflow-frontend-wrapper input[type="reset"] {
    font-family: inherit !important;
    box-sizing: border-box !important;
}