/**
 * Tour Checkout Widget Styles
 * Multi-step checkout process for DPX Tours
 */

.tour-checkout-widget {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Breadcrumbs */
.checkout-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px 0;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.checkout-breadcrumbs .step {
    display: flex;
    align-items: center;
    color: #555555;
    transition: all 0.3s ease;
    font-weight: 400;
}

.checkout-breadcrumbs .step.active {
    color: #111111;
    font-weight: 600;
}

.checkout-breadcrumbs .step.clickable {
    cursor: pointer;
    position: relative;
}

.checkout-breadcrumbs .step.clickable .step-title {
    position: relative;
    transition: all 0.3s ease;
}

.checkout-breadcrumbs .step.clickable .step-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0073aa;
    transition: width 0.3s ease;
}

.checkout-breadcrumbs .step.clickable:hover .step-title::after {
    width: 100%;
}

.checkout-breadcrumbs .step.clickable:hover {
    color: #111111;
}

.checkout-breadcrumbs .step.clickable:hover .step-number {
    background-color: #005a87;
    transform: scale(1.1);
}

.checkout-breadcrumbs .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #0073aa;
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 600;
}

.checkout-breadcrumbs .separator {
    margin: 0 15px;
    color: #111111;
    font-weight: 300;
}

/* Login Link */
.checkout-login-link {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 8px;
}

.checkout-login-link span {
    color: #111111;
    margin-right: 10px;
}

.checkout-login-link .login-toggle {
    color: #111111;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.checkout-login-link .login-toggle:hover {
    text-decoration: underline;
}

.checkout-login-link .dashicons {
    margin-left: 5px;
    font-size: 12px;
}

/* Login Form */
.checkout-login-section {
    margin-bottom: 30px;
    border-radius: 8px;
}

.checkout-login-form {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none !important; /* Force hidden by default */
}

.checkout-login-form.show {
    display: block !important; /* Override when shown */
}

.checkout-login-form .woocommerce-form-login {
    margin: 0;
}

.checkout-login-form .form-row {
    margin-bottom: 15px;
}

.checkout-login-form .form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555555;
}

.checkout-login-form .form-row input[type="text"],
.checkout-login-form .form-row input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    color: #111111;
}

.checkout-login-form .form-row input[type="text"]::placeholder,
.checkout-login-form .form-row input[type="password"]::placeholder {
    color: #A0A0A0;
}

.checkout-login-form .form-row input[type="text"]:focus,
.checkout-login-form .form-row input[type="password"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.checkout-login-form .woocommerce-form-login__submit {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-login-form .woocommerce-form-login__submit:hover {
    background: #005a87;
}

.checkout-login-form .woocommerce-LostPassword {
    margin-top: 15px;
    text-align: center;
}

.checkout-login-form .woocommerce-LostPassword a {
    color: #111111;
    text-decoration: none;
    font-size: 13px;
}

.checkout-login-form .woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

.logged-in-user {
    text-align: center;
    padding: 15px;
    background: #e8f5e8;
    border-radius: 4px;
    border: 1px solid #c3e6c3;
}

.logged-in-user p {
    margin: 0 0 10px 0;
    color: #111111;
    font-weight: 500;
}
.checkout-login-link .logout-link {
    text-decoration: underline!important;
    font-weight: 700!important;
}

.logged-in-user .logout-link {
    text-decoration: none;
    font-size: 13px;
    margin-top: 10px;
    padding: 10px 20px;
    background: #111111;
    border-radius: 4px;
    border:1px solid #111111;
}

.logged-in-user .logout-link:hover {
    background: #ffffff;
    color: #111111;
}

/* Container Layout */
.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Form Column */
.checkout-form-column {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: none!important;
}

/* Step Styling */
.checkout-step {
    animation: fadeIn 0.3s ease-in-out;
}

.checkout-step-title {
    font-size: 24px;
    font-weight: 600;
    color: #111111;
}

/* Form Fields */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-field-label {
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 5px;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #111111;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
    color: #A0A0A0;
}

/* General input placeholder color for consistency */
.tour-checkout-widget input::placeholder,
.tour-checkout-widget textarea::placeholder {
    color: #A0A0A0;
}

.checkout-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    position: relative;
}

.checkout-field select::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #555555;
    font-size: 12px;
    pointer-events: none;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    outline: none;
    border-color: #0073aa;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.checkout-field input.error,
.checkout-field select.error,
.checkout-field textarea.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.checkout-field input.success,
.checkout-field select.success,
.checkout-field textarea.success {
    border-color: #28a745;
    background: #f8fff9;
}

.checkout-field textarea {
    min-height: 100px;
    resize: vertical;
}

/* Phone Input Container */
.phone-input-container {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 200px;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #111111;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    padding-right: 40px;
}

.country-code-select::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #A0A0A0;
    font-size: 12px;
    pointer-events: none;
}

.country-code-select:focus {
    outline: none;
    border-color: #0073aa;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.phone-number-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #111111;
}

.phone-number-input::placeholder {
    color: #A0A0A0;
}

.phone-number-input:focus {
    outline: none;
    border-color: #0073aa;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

/* Additional Travelers */
.additional-travelers {
    display: flex;
    flex-direction: column;
}



.traveler-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #111111;
    font-size: 14px;
    border-left: 4px solid #0073aa;
}

.traveler-group h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin: 15px 0 10px 0;
    padding-bottom: 8px;
}

.no-additional-travelers {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #111111;
}

.no-additional-travelers p {
    margin: 0;
    font-size: 14px;
}

/* Checkout Actions */


.checkout-button {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.checkout-button.checkout-next-step,
.checkout-button.checkout-payment-button {
    background: #2c3e50;
    color: white;
    flex: 1;
}

.checkout-button.checkout-next-step:hover,
.checkout-button.checkout-payment-button:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.checkout-button.checkout-prev-step {
    background: #6c757d;
    color: white;
}

.checkout-button.checkout-prev-step:hover {
    background: #5a6268;
}

/* Order Summary */
.checkout-summary-column {
    position: sticky;
    top: 20px;
}

.order-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.order-summary-title {
    font-size: 20px;
    display: none;
    font-weight: 600;
    color: #111111;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

/* Tour Items */
.tour-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

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

.tour-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
    line-height: 1.4;
}

.tour-dates {
    color: #111111;
    font-size: 14px;
    margin-bottom: 15px;
}




.guest-details p,
.room-details p {
    font-size: 14px;
    color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.guest-details p:hover,
.room-details p:hover {
    background: #e9ecef;
    transform: translateX(2px);
}

.guest-pricing {
    font-weight: 600;
    color: #111111 !important;
}

.room-details p:last-child,
.guest-details p:last-child {
    border-bottom: none;
}

/* Simple Room Section Styling - Matching Pricing Breakdown */
.room-info {
    margin-bottom: 15px;
}

.room-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
    /* Remove the blue bar to match pricing breakdown */
    display: block;
}

.room-info h5::before {
    display: none;
}

.room-details {
    display: flex;
    flex-direction: column;
}

/* Override the general styling for room details to match pricing breakdown */
.room-details p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #111111;
    margin-bottom: 5px;
    /* Remove all the fancy styling */
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    transition: none;
    transform: none;
}

.room-details p:hover {
    background: none;
    transform: none;
}

.room-details p:last-child {
    margin-bottom: 0;
}

.room-details p .room-name {
    color: #111111;
}

.room-details p .room-price {
    font-weight: 600;
    color: #111111;
}

/* Empty room state - simplified */
.room-info.empty-rooms {
    background: none;
    border: none;
}

.room-info.empty-rooms h5 {
    color: #111111;
}

.room-info.empty-rooms h5::before {
    display: none;
}

.pricing-item span {
    display: flex;
    gap: 5px;
    color: #111111;
}
/* Pricing Breakdown */

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 13px;
}

.breakdown-item:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.breakdown-label {
    color: #111111;
}

.breakdown-price {
    font-weight: 600;
    color: #111111;
}

/* Cart Summary */
.cart-summary {
    margin-top: 20px;
}

.subtotal,
.shipping,
.coupon-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #111111;
}

.coupon-discount {
    color: #111111;
}

.discount-amount {
    color: #dc3545;
    font-weight: 600;
}

.applied-coupons {
    margin: 10px 0;
    padding: 10px;
    background: #d4edda;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
}

/* Empty Cart States */
.empty-cart,
.no-tour-data {
    text-align: center;
    padding: 30px 20px;
    color: #111111;
}

.empty-cart p,
.no-tour-data p {
    margin-bottom: 15px;
    font-size: 16px;
}

.empty-cart .button {
    display: inline-block;
    padding: 12px 24px;
    background: #111111;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.empty-cart .button:hover {
    background: #111111;
    color: white;
    text-decoration: none;
}

/* Pricing Summary */
.pricing-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.promo-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.promo-discount span:first-child {
    color: #111111;
    font-size: 14px;
}

.discount-amount {
    color: #111111;
    font-weight: 600;
    font-size: 14px;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #111111;
}

.total-price {
    color: #111111;
    font-size: 20px;
}

/* Promo Code Section */
.promo-code-section {
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.promo-code-section label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 10px;
}

.promo-input {
    display: flex;
    gap: 10px;
}

.promo-input input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    background: #f8f9fa;
    color: #111111;
}

.promo-input input::placeholder {
    color: #A0A0A0;
}

.promo-input input:focus {
    outline: none;
    border-color: #A0A0A0;
    background: white;
}

.apply-promo {
    padding: 10px 16px;
    background: #111111;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apply-promo:hover {
    background: #111111;
}

/* Review Section */
.checkout-review {
    margin-bottom: 30px;
}

/* Two-column review layout */
.checkout-review.review-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.checkout-review.review-two-column .review-section {
    margin-bottom: 0;
}

/* Responsive for review layout */
@media (max-width: 768px) {
    .checkout-review.review-two-column {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkout-review.review-two-column .review-section {
        margin-bottom: 20px;
    }
}

.review-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.review-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dee2e6;
}

.review-data {
    font-size: 14px;
    color: #111111;
    line-height: 1.6;
}

/* Payment Gateway */
.payment-gateway {
    margin-bottom: 25px;
}

.payment-gateway h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.payment-method-option:hover {
    border-color: #A0A0A0;
    background: #f8f9ff;
}

.payment-method-option.selected {
    border-color: #A0A0A0;
    background: #e7f3ff;
}

.payment-method-option.selected .payment-method-info {
    color: #111111;
    font-weight: 500;
}

.payment-method-option input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.payment-method-option input[type="radio"]:checked + .payment-method-info {
    color: #111111;
    font-weight: 500;
}

.payment-method-info {
    display: flex;
    align-items: flex-start!important;
    gap: 5px!important;
    flex: 1;
    flex-direction: column!important;
    align-content: flex-start!important;
    flex-wrap: nowrap!important;
    font-size: 16px!important;
}

.payment-gateway-icon {
    display: flex;
    align-items: center;
}

.payment-gateway-icon img {
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-method-option:hover .payment-gateway-icon img {
    opacity: 1;
}

/* Dynamic payment gateway styling */
.payment-gateway-icon {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
}

.payment-gateway-icon img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-gateway-icon img:hover {
    opacity: 1;
}

.payment-gateway-name {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 8px;
    margin-bottom: 5px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.payment-gateway-name:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #111111;
}

/* Privacy Policy */
.privacy-policy {
    margin-bottom: 25px;
    padding: 15px;
    background: #e7f3ff;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
}

.privacy-policy p {
    font-size: 13px;
    color: #111111;
    line-height: 1.5;
    margin: 0;
}

.privacy-policy a {
    color: #111111;
    text-decoration: none;
    font-weight: 500;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* Error Messages */
.checkout-errors {
    background: #f8d7da;
    color: #111111;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.checkout-errors ul {
    margin: 0;
    padding-left: 20px;
}

.checkout-errors li {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tour-checkout-widget {
        padding: 15px;
    }
    
    .checkout-container {
        gap: 20px;
    }
    
    .checkout-form-column,
    .order-summary {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .checkout-breadcrumbs {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .checkout-breadcrumbs .separator {
        display: none;
    }
    
    .checkout-breadcrumbs .step.clickable {
        padding: 8px 12px;
        border-radius: 6px;
        background: rgba(0, 115, 170, 0.05);
        transition: all 0.3s ease;
    }
    
    .checkout-breadcrumbs .step.clickable:hover {
        background: rgba(0, 115, 170, 0.1);
        transform: translateY(-1px);
    }
    
  
    
    .checkout-button {
        width: 100%;
    }
    
    /* Phone input responsive */
    .phone-input-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .country-code-select {
        flex: none;
        width: 100%;
    }
    
    .promo-input {
        flex-direction: column;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .tour-checkout-widget {
        padding: 10px;
    }
    
    .checkout-form-column,
    .order-summary {
        padding: 15px;
    }
    
    .checkout-step-title {
        font-size: 20px;
    }
    
    /* Mobile room section styling */
    .room-info {
        padding: 12px;
    }
    
    .room-info h5 {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .room-details p {
        padding: 10px 12px;
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .guest-breakdown,
    .pricing-breakdown {
        padding: 12px;
    }
    
    .guest-breakdown h5,
    .pricing-breakdown h5 {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.checkout-button.loading {
    position: relative;
    color: transparent;
}

.checkout-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success States */
.checkout-field input.success,
.checkout-field select.success,
.checkout-field textarea.success {
    position: relative;
}

.checkout-field input.success::after,
.checkout-field select.success::after,
.checkout-field textarea.success::after {
    content: '✓';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-weight: bold;
}

/* Focus States */
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.15);
}

/* Hover Effects */
.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.order-summary:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Print Styles */
@media print {
    .checkout-actions,
    .payment-gateway,
    .privacy-policy {
        display: none;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* Thank You Page Styles - Using existing classes */
.thank-you-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
}

.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    gap: 20px;
}

.tour-count-title,
.pricing-breakdown h5,
.room-inpricing-breakdownfo h5{
    font-size: 16px;
    border-top: 1px solid #e9ecef;
    padding-top: 10px;
}
.room-info-thankyou h5{
    margin-bottom: 10px;
}

.thank-you-header {
    text-align: center;
    margin-bottom: 40px;
}

.thank-you-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.thank-you-message {
    font-size: 16px;
    color: #555555;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.thank-you-submessage {
    font-size: 14px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

.more-details-link {
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.more-details-link:hover {
    text-decoration: underline;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-page {
        padding: 20px 15px;
    }
    
    .thank-you-title {
        font-size: 28px;
    }
}

/* Thank you page: disable sticky for order summary */
.thank-you-page .checkout-summary-column,
.thank-you-page .order-summary,
.thankyou-order-summary {
    position: static;
    top: auto;
}
