/* Enhanced Expedition Date Picker - Airline Style */
.pew-date-slider-wrap {
    position: relative;
    margin: 15px 0;
    padding: 5px 0;
}

.pew-date-slider {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 40px;
    margin: 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.pew-date-slider::-webkit-scrollbar {
    height: 6px;
}

.pew-date-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.pew-arrow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.2s ease;
}

.pew-arrow-nav:hover {
    background: #f5f5f5;
}

.pew-arrow-nav.prev {
    left: 5px;
}

.pew-arrow-nav.next {
    right: 5px;
}

.pew-date-option {
    flex: 0 0 auto;
    width: 100px;
    padding: 12px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    background: #fff;
}

.pew-date-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pew-date-option.selected {
    border-color: #4285f4;
    background: #f2f8ff;
    box-shadow: 0 2px 8px rgba(66,133,244,0.2);
}

.pew-date-day {
    font-size: 14px;
    color: #666;
    margin-bottom: 2px;
}

.pew-date-date {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.pew-date-month {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.pew-date-price {
    color: #4285f4;
    font-weight: 500;
}

.pew-selected-date {
    margin-top: 15px;
    padding: 10px;
    background: #f5f7f9;
    border-radius: 4px;
    text-align: center;
    color: #2196F3;
}

.pew-no-dates-message {
    padding: 15px;
    background: #fcf8e3;
    border: 1px solid #faebcc;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #8a6d3b;
}

.pew-date-slider-wrap {
    position: relative;
    margin: 20px 0;
}

.pew-arrow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #333;
    font-size: 18px;
}

.pew-arrow-nav.prev {
    left: 0;
}

.pew-arrow-nav.next {
    right: 0;
}

.pew-date-option {
    min-width: 110px;
    margin: 0 5px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pew-date-option.selected, .pew-compact-option.selected {
    border-color: #4285f4;
    background-color: #f2f8ff;
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.2);
}

.pew-date-option:hover:not(.selected) {
    border-color: #a0c3ff;
    background-color: #f9fbff;
}

.pew-date-option:hover:not(.selected):not(.unavailable) {
    transform: translateY(-2px);
}

.pew-date-option.unavailable {
    background-color: #f9f9f9;
    border-color: #eaeaea;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.7;
}

.pew-date-day {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 4px;
}

.pew-date-date {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.pew-date-month {
    font-size: 14px;
    margin-bottom: 4px;
}

.pew-date-price {
    color: #4285f4;
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
}

.pew-date-availability {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.pew-date-availability.low {
    color: #f44336;
}

.pew-date-option.sold-out {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.pew-date-option.sold-out .pew-date-price {
    color: #999;
}

.pew-date-option.sold-out .pew-date-availability {
    color: #e53935;
}

/* Make date selection more visible on mobile */
@media (max-width: 767px) {
    .pew-date-option {
        min-width: 100px;
        padding: 8px;
    }

    .pew-date-day, .pew-date-date {
        font-size: 14px;
    }

    .pew-date-month, .pew-date-price {
        font-size: 12px;
    }
}

/* Enhanced Expedition Type Styling */
.pew-expedition-type-options {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.pew-expedition-type-option {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect removed */

.pew-expedition-type-option.selected {
    border-color: #2ecc71;
    background-color: #f0fff4;
}

.pew-expedition-type-option h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.pew-expedition-type-option p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.pew-expedition-type-price {
    margin-top: 10px;
    font-weight: 500;
    color: #e67e22;
}

/* Enhanced participant selector for group expeditions */
.pew-participants-container {
    background-color: #f5f8ff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid #3498db;
}

.pew-participants-container label {
    display: block;
    margin-bottom: 8px;
    color: #2980b9;
    font-weight: 600;
}

.pew-participants-container select {
    width: 100%;
    max-width: 200px;
    padding: 8px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
}

/* Make sure the first two sections have good spacing */
.pew-expedition-form .pew-collapsible-section:nth-child(1),
.pew-expedition-form .pew-collapsible-section:nth-child(2) {
    margin-bottom: 15px;
}

/* Non-collapsible main sections styles */
.pew-main-section {
    /* border removed */
    /* border-radius removed */
    margin-bottom: 15px;
    padding: 20px;
    /* background-color removed */
}

.pew-main-section h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-bottom: 10px;
}

/* Expedition Type Section Styles */
.pew-expedition-type-section {
    margin-bottom: 30px;
}

.pew-expedition-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .pew-expedition-types {
        grid-template-columns: 1fr;
    }
}

.pew-expedition-type-container {
}

.pew-expedition-type-container:nth-child(1) {
}

/* Hover effect removed */

.pew-expedition-type-container h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.pew-type-description {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.pew-private-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .pew-private-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pew-private-expedition-note {
    background-color: #f0f9ff;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #3498db;
}

.pew-private-expedition-note h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    color: #2980b9;
}

.pew-private-expedition-note p {
    margin-bottom: 0;
    font-size: 14px;
    color: #333;
}

/* Expedition styling moved to expedition-types-compact.css */

/* Price breakdown styling improvements */
.pew-price-breakdown {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pew-price-breakdown-row {
    padding: 8px;
    border-bottom: 1px dashed #eee;
}

.pew-price-breakdown-total {
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 700;
}

.pew-price-per-person-row {
    background-color: #e8f4fc;
    border-left: 4px solid #3498db;
}

.pew-group-discount {
    background-color: #eafaf1;
    border-left: 4px solid #2ecc71;
    padding: 8px 10px;
    border-radius: 4px;
    margin: 10px 0;
}

.pew-payment-details {
    background-color: #fef9e7;
    border-left: 4px solid #f1c40f;
    padding: 8px 10px;
    border-radius: 4px;
    margin-top: 12px;
}

/* Color coding for different expedition types */


/* Base styles moved to expedition-types-compact.css */

/* Price breakdown styling improvements */
.pew-price-breakdown-row {
    padding: 8px;
}

.pew-price-breakdown-row.pew-group-discount {
    background-color: #eafaf1;
    border-radius: 4px;
    padding: 8px 10px;
    margin: 5px 0;
}

.pew-price-breakdown-value {
    font-weight: 500;
}

/* Enhanced Date Selector Styles */
.pew-expedition-date-selector {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pew-price-summary {
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 16px;
}

.base-price-label {
    font-weight: 500;
    color: #333;
}

.base-price-amount {
    font-weight: 600;
    color: #2c5282;
    margin-left: 5px;
}

.pew-date-slider-wrap {
    position: relative;
    margin: 15px 0;
    padding: 5px 0;
}

.pew-date-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 5px;
    margin: 0 30px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.pew-date-option {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.pew-date-option:hover {
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(66, 153, 225, 0.1);
}

.pew-date-option.selected {
    border-color: #4299e1;
    background-color: #ebf8ff;
    box-shadow: 0 4px 6px rgba(66, 153, 225, 0.2);
}

.pew-date-day {
    font-size: 14px;
    color: #718096;
    margin-bottom: 2px;
}

.pew-date-date {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
}

.pew-date-month {
    font-size: 14px;
    color: #4a5568;
    margin: 2px 0;
}

.pew-date-price {
    font-size: 16px;
    color: #2c5282;
    font-weight: 600;
    margin: 5px 0;
}

.pew-date-spots {
    font-size: 13px;
    color: #718096;
}

.pew-arrow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.pew-arrow-nav:hover {
    background: #f7fafc;
    border-color: #4299e1;
}

.pew-arrow-nav.prev {
    left: 0;
}

.pew-arrow-nav.next {
    right: 0;
}

.pew-selected-date {
    margin-top: 15px;
    padding: 10px;
    background: #f7fafc;
    border-radius: 4px;
    font-size: 15px;
    color: #4a5568;
}

.pew-selected-date strong {
    color: #2c5282;
}

.pew-selected-date .price {
    font-weight: 600;
    color: #2c5282;
}

/* Nav buttons used by the date-repair JS slider (class names differ from .pew-arrow-nav) */
.pew-date-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background 0.2s ease;
}

.pew-date-nav:hover {
    background: #e8e8e8;
}

.pew-date-prev {
    left: 0;
}

.pew-date-next {
    right: 0;
}

.pew-no-dates-message {
    padding: 20px;
    text-align: center;
    background: #f7fafc;
    border-radius: 8px;
    color: #718096;
}