/* Minimal, theme-friendly styles */

.tour-grid-wrapper {
    width: 100%;
    margin: 0 auto;
    clear: both
}

/* Override WooCommerce default product grid styles */
.woocommerce .tour-grid-wrapper ul.products,
.woocommerce-page .tour-grid-wrapper ul.products {
    margin: 0;
    padding: 0;
    list-style: none
}

.tour-grid {
    display: grid !important;
    grid-template-columns: repeat(var(--tour-grid-cols, 2), minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    clear: both
}

.tour-grid.tour-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.tour-grid.tour-grid--cols-1 {
    grid-template-columns: 1fr !important;
}

/* Force 2-column layout on the search results shortcode wrapper */
.tour-search-results .tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.tour-search-criteria {
    font-size: 16px;
    margin-bottom: 6px;
}

.tour-search-criteria__label {
    font-weight: 600;
    margin-right: 6px;
}

.tour-categories-list {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 16px;
    padding: 0;
}

.tour-categories-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-categories-list__item {
    margin: 4px 0;
}

.tour-categories-list__item a {
    text-decoration: none;
}

.tour-categories-list__item a:hover {
    text-decoration: underline;
}

.tour-search-results .tour-search-results-title {
    font-size: 70%;
}

/* Ensure tour cards in WooCommerce archives don't get squashed */
.woocommerce .tour-grid .tour-card,
.woocommerce-page .tour-grid .tour-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    float: none !important
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .tour-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .tour-grid,
    .tour-grid.tour-grid--cols-2,
    .tour-search-results .tour-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important
    }
}

.tour-card {
    border: 1px solid rgba(31, 68, 55, .08);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .04);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06)
}

.tour-card-image-wrapper {
    display: block;
    position: relative;
    overflow: hidden
}

.tour-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05)
}

.tour-card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .4) 60%, transparent 100%);
    padding: 16px 13px 13px;
    pointer-events: none
}

.tour-card-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.18;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.tour-card-body {
    padding: 13px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.tour-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px
}

.tour-meta-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease
}

.tour-meta-badge:hover {
    transform: translateY(-1px);
    text-decoration: none
}

.tour-meta-area {
    background: linear-gradient(135deg, #0f5a46 0%, #1f7a5f 100%);
    color: #fff
}

.tour-meta-area:hover {
    box-shadow: 0 4px 8px rgba(15, 90, 70, .3);
    color: #fff
}

.tour-meta-type {
    background: rgba(31, 122, 95, .12);
    color: #0f5a46;
    border: 1px solid rgba(31, 122, 95, .2)
}

.tour-meta-type:hover {
    background: rgba(31, 122, 95, .18);
    border-color: rgba(31, 122, 95, .3);
    color: #0f5a46
}

.tour-card-price {
    font-weight: 700;
    font-size: 16px;
    color: #0f5a46;
    margin: 6px 0 10px
}

.tour-card-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 2px 0 3px
}

.tour-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #325047;
    font-weight: 500
}

.tour-info-icon {
    flex-shrink: 0;
    color: #1f7a5f;
    width: 13px;
    height: 13px
}

.tour-info-perks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    row-gap: 3px;
    align-items: center
}

.tour-info-perk {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #325047
}

.tour-perk-tick {
    flex-shrink: 0;
    width: 11px;
    height: 11px
}

.tour-card-summary {
    margin: 4px 0 4px;
    padding: 4px 10px;
    background: rgba(31, 122, 95, .04);
    border-radius: 6px;
    border-left: 2px solid #1f7a5f;
    margin-top: auto;
}

.tour-card-summary p {
    margin: 0;
    font-size: 13px !important;
    line-height: 1.45;
    color: #325047;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: calc(1.45em * 3);
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-info-departure {
    font-size: 12px;
    line-height: 1.4;
    color: #325047;
}

.tour-card-button {
    margin-top: 4px;
    display: inline-block;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #1fb858 0%, #0f8a3c 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 3px 10px rgba(15, 138, 60, .25)
}

.tour-card-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 13px rgba(15, 138, 60, .35);
    color: #fff;
    text-decoration: none
}

.tour-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.tour-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px
}

.tour-perks-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
    padding: 0
}

.tour-perk-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 90, 70, .08);
    font-size: 14px;
    font-weight: 700;
    color: #4d481f
}

.tour-perk-tick {
    color: #1fb858;
    font-size: 18px;
    line-height: 1
}

.tour-enquiry-form {
    border: none;
    border-radius: 16px;
    padding: 8px 6px !Important;
    margin: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%
}

.tour-enquiry-form__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #4d481f
}

.tour-enquiry-form .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0
}

.tour-enquiry-form label {
    display: block;
    font-weight: 600;
    color: #1f4437;
    font-size: 14px
}

.tour-enquiry-form input,
.tour-enquiry-form textarea,
.tour-enquiry-form select {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(12, 70, 53, .2);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 15px;
    background: #fefefe;
    transition: border-color .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
    height: 40px
}

.tour-enquiry-form textarea {
    height: auto;
    min-height: 110px
}

.tour-enquiry-form input:focus,
.tour-enquiry-form textarea:focus,
.tour-enquiry-form select:focus {
    border-color: #0b5c4a;
    box-shadow: 0 0 0 3px rgba(11, 92, 74, .15);
    outline: none
}

.tour-phone-wrapper {
    display: flex !important;
    gap: 8px !important;
    align-items: stretch !important;
    width: 100% !important
}

.tour-country-code {
    width: 35% !important;
    flex-shrink: 0 !important;
    height: 40px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f4437' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 10px;
    box-sizing: border-box !important
}

.tour-phone-input {
    width: 65% !important;
    flex-shrink: 0 !important;
    height: 40px !important;
    box-sizing: border-box !important
}

.tour-enquiry-form textarea {
    min-height: 110px;
    resize: vertical
}

.tour-enquiry-form__submit {
    cursor: pointer;
    border: none;
    border-radius: 18px;
    padding: 14px 18px;
    font-weight: 700;
    letter-spacing: .05em;
    background: linear-gradient(135deg, #1fb858, #0f8a3c);
    color: #fff;
    box-shadow: 0 12px 30px rgba(15, 129, 80, .25);
    transition: transform .2s ease, box-shadow .2s ease;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center
}

.tour-enquiry-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(15, 129, 80, .32)
}

.tour-enquiry-form__submit:active {
    transform: none;
    box-shadow: 0 10px 24px rgba(15, 129, 80, .26)
}

.tour-enquiry-form [data-tour-plugin-status] {
    margin-top: -1px;
    font-size: 13px;
    color: #0b5c4a;
    min-height: 18px
}

.tour-plugin-wa-button {
    display: block;
    margin: 0
}

.tour-price-panel .tour-plugin-wa-button--with-form,
.tour-price-card-new .tour-plugin-wa-button--with-form {
    margin-top: 14px;
}

.tour-plugin-wa-button--with-form .tour-plugin-wa-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-plugin-wa-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tour-plugin-wa-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #1f4437;
}

.tour-plugin-wa-field label .required {
    color: #d63638;
}

.tour-plugin-wa-field input[type="text"],
.tour-plugin-wa-field input[type="email"],
.tour-plugin-wa-field input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(12, 70, 53, .2);
    border-radius: 12px;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
    background: #fefefe;
}

.tour-plugin-wa-field input:focus {
    outline: none;
    border-color: #0b5c4a;
    box-shadow: 0 0 0 3px rgba(11, 92, 74, .15);
}

.tour-plugin-wa-status {
    margin: 0;
    min-height: 18px;
    font-size: 13px;
}

.tour-plugin-wa-status.success {
    color: #0f8a3c;
}

.tour-plugin-wa-status.error {
    color: #d63638;
}

.tour-plugin-wa-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 8px 20px rgba(15, 129, 80, .18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    color: #fff;
    text-align: center;
}

.tour-plugin-wa-button a.is-disabled {
    opacity: .7;
    pointer-events: none;
}

.tour-plugin-wa-link--primary {
    background: linear-gradient(135deg, #1fb858, #0f8a3c);
    color: #fff;
    border: none
}

.tour-plugin-wa-link--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(15, 129, 80, .25)
}

.tour-plugin-wa-link--primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(15, 129, 80, .2)
}

.tour-plugin-wa-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.tour-plugin-wa-icon svg {
    width: 24px;
    height: 24px;
    color: #fff !important;
    fill: #fff !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

.tour-plugin-wa-icon svg path {
    fill: #fff !important;
}

.tour-plugin-wa-text {
    line-height: 1.2;
    font-size: 15px;
    color: #fff;
    flex: 1;
    text-align: center;
}

@media (max-width: 640px) {
    .tour-plugin-wa-fields {
        grid-template-columns: 1fr;
    }
}

.tour-price-panel {
    border: 1px solid rgba(12, 70, 53, .1);
    border-radius: 20px;
    padding: 18px 20px 20px;
    margin: 4.8px 0 7.2px;
    background: #fffffe;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06)
}

.tour-price-panel__header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(31, 68, 55, 0.08);
}
.woocommerce div.product form.cart .variations td {
padding: 0 10px 10px 0 !important
}

.tour-price-panel__eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #1f4437;
    font-weight: 600
}

.tour-price-panel__amount {
    font-size: 32px;
    font-weight: 700;
    color: #0b5c4a;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline
}

.tour-price-panel__amount-money {
    line-height: 1.2
}

.tour-price-panel__amount-label {
    font-size: 15px;
    font-weight: 600;
    color: #325047;
    text-transform: uppercase;
    letter-spacing: .08em
}

.tour-price-panel__single {
    font-size: 13px;
    color: #325047;
    font-weight: 500;
    margin-top: 2px;
    margin-bottom: 4px
}

.tour-price-panel__total {
    font-size: 18px;
    color: #0b5c4a;
    font-weight: 700;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(31, 68, 55, 0.08);
}

.tour-price-panel__controls {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px
}

.tour-price-panel__controls label {
    font-weight: 600;
    color: #1f4437;
    margin: 0
}

.tour-price-panel__input {
    border: 1px solid rgba(12, 70, 53, .2);
    border-radius: 12px;
    padding: 6px 10px;
    font-size: 16px;
    width: 100%;
    max-width: 180px
}

.tour-price-panel__input:focus {
    outline: 2px solid #0b5c4a;
    outline-offset: 2px
}

/* Variable Tour Products - Show variation form but hide add to cart button */
.product-type-tour_variable .single_add_to_cart_button,
.product-type-tour_variable .single_variation_wrap .button {
    display: none !important;
}

.product-type-tour_variable .variations_form .variations {
    margin-bottom: 0;
}

.product-type-tour_variable .woocommerce-variation-price {
    display: none !important;
}

/* Remove theme padding from variation table elements */
.tour-price-panel .tour-variations th,
.tour-price-panel .tour-variations td,
.tour-price-panel .tour-variations tr,
#content-area .tour-price-panel .tour-variations th,
#content-area .tour-price-panel .tour-variations td,
#main-content .tour-price-panel .tour-variations th,
#main-content .tour-price-panel .tour-variations td {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Override WooCommerce variation table padding */
.woocommerce .tour-price-panel .tour-variations td,
.woocommerce-page .tour-price-panel .tour-variations td,
.woocommerce div.product form.cart .tour-variations td,
.woocommerce-page div.product form.cart .tour-variations td {
    padding: 0 !important;
    max-width: none !important;
    line-height: 1.4 !important;
}

/* Force remove padding from label cells specifically */
.woocommerce div.product form.cart .tour-variations td.label,
.woocommerce-page div.product form.cart .tour-variations td.label {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

/* Tour variations selector styling */
.tour-variations {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: none;
    border-collapse: collapse;
    text-align: left !important;
}

.tour-variations tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.tour-variations tr {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.tour-variations td {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none;
    text-align: left !important;
}

.tour-variations td.label {
    text-align: left !important;
    margin-bottom: 0;
}

.tour-variations td.label label {
    display: block;
    font-weight: 600;
    color: #1f4437;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.tour-variations td.value {
    width: 100%;
    text-align: left !important;
    margin-top: 6px !important;
}

.tour-variations td.value select {
    width: 100% !important;
    max-width: 180px !important;
    padding: 6px 10px !important;
    border: 1px solid rgba(12, 70, 53, .2) !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    line-height: 1.4;
    background-color: #fff !important;
    font-family: inherit !important;
    color: inherit !important;
    font-weight: 400 !important;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f4437' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 32px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: block;
    margin: 0;
    text-align: left !important;
    box-shadow: none;
}

.tour-variations td.value select:hover {
    border-color: rgba(12, 70, 53, .4);
}

.tour-variations td.value select:focus {
    outline: 2px solid #0b5c4a;
    outline-offset: 2px;
}

.tour-variations .reset_variations {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: #0b5c4a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.tour-variations .reset_variations:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Ensure variations form doesn't add extra spacing */
.tour-price-panel .variations_form {
    margin: 0 !important;
    padding: 0;
}

/* Override WooCommerce theme margins */
.woocommerce .tour-price-panel form.cart,
.woocommerce-page .tour-price-panel form.cart,
.woocommerce #content .tour-price-panel form.cart,
.woocommerce-page #content .tour-price-panel form.cart,
.tour-price-panel form.variations_form {
    margin: 0 !important;
    padding: 0 !important;
}

.tour-price-panel .single_variation_wrap {
    display: none;
}

:where(.tour-enquiry-form input, .tour-enquiry-form textarea, .tour-enquiry-form button):focus {
    outline: 2px solid currentColor;
    outline-offset: 2px
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important
    }
}



.tour-overview {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0;
    padding: 0;
    list-style: none
}

@media (max-width: 900px) {
    .tour-overview {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media (max-width: 600px) {
    .tour-overview {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}

.tour-overview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 2px 6px 6px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04)
}

.tour-overview-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.tour-overview-icon svg {
    width: 28px;
    height: 28px
}

.tour-overview-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
    align-items: center
}

.tour-overview-label,
.tour-overview-value {
    display: block;
    margin: 0;
    line-height: 1
}

.tour-overview-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2f4a3f;
    letter-spacing: .08em;
    margin-bottom: 0
}

.tour-overview-value {
    font-size: 13px;
    font-weight: 600;
    color: #0b5c4a
}

.tour-filters {
    border-radius: 14px;
    padding: 11px 31px;
    border: 1px solid rgba(11, 92, 74, .12);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .04);
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0 0 11px
}

.tour-filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.tour-filters__eyebrow {
    margin: 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #0b5c4a;
    font-weight: 600
}

.tour-filters__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0b5c4a
}

.tour-filters__reset {
    align-self: center;
    border: none;
    background: transparent;
    color: #0b5c4a;
    font-weight: 600;
    text-decoration: none;
    padding: 3px 5px;
    border-radius: 999px;
    transition: background .2s ease
}

.tour-filters__reset:hover {
    background: rgba(11, 92, 74, .12)
}

.tour-filters__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px
}

.tour-filters__field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 6px 7px;
    border-radius: 9px;
    background: rgba(249, 251, 250, .9);
    border: 1px solid rgba(11, 92, 74, .08)
}

.tour-filters__field--compact {
    /* Removed max-width to ensure equal spacing */
}

.tour-filters__label {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    color: #1f4437
}

.tour-filters select,
.tour-filters input {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 5px 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0b5c4a;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
    transition: box-shadow .2s ease, transform .2s ease
}

.tour-filters select:focus,
.tour-filters input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 92, 74, .15);
    transform: translateY(-1px)
}

.tour-filters__actions {
    display: flex;
    justify-content: flex-end
}

.tour-filters__submit {
    border: none;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
    background: linear-gradient(120deg, #0b5c4a, #0f8a3c);
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(11, 92, 74, .35);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease
}

.tour-filters__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(11, 92, 74, .4)
}

.tour-filters__submit:active {
    transform: translateY(0);
    box-shadow: 0 12px 20px rgba(11, 92, 74, .3)
}

@media (max-width:768px) {
    .tour-filters {
        padding: 9px
    }

    .tour-filters__header {
        flex-direction: column;
        align-items: flex-start
    }

    .tour-filters__actions {
        justify-content: flex-start;
        width: 100%
    }

    .tour-filters__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}

/* Custom Tour Form Styles */
.custom-tour-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.custom-tour-form {
    border: 1px solid rgba(31, 68, 55, .12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .04);
    overflow: visible;
}

.custom-tour-form__header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(31, 68, 55, .1);
    background: #fff;
}

.custom-tour-form__title {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 700;
    color: #1f4437;
}

.custom-tour-form__subtitle {
    margin: 0;
    font-size: 14px;
    color: #5a7a6e;
    font-weight: 400;
}

.custom-tour-form__body {
    padding: 20px 24px;
}

.custom-tour-form__section {
    margin-bottom: 20px;
}

.custom-tour-form__section:last-child {
    margin-bottom: 0;
}

.custom-tour-form__section-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1f4437;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(11, 92, 74, .15);
}

.custom-tour-form__field {
    margin-bottom: 14px;
}

.custom-tour-form__field:last-child {
    margin-bottom: 0;
}

.custom-tour-form__row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.custom-tour-form__row:last-child {
    margin-bottom: 0;
}

.custom-tour-form__field--half {
    flex: 1;
    margin-bottom: 0;
}

.custom-tour-form__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1f4437;
}

.custom-tour-form__field input[type="text"],
.custom-tour-form__field input[type="email"],
.custom-tour-form__field input[type="tel"],
.custom-tour-form__field input[type="date"],
.custom-tour-form__field input[type="number"],
.custom-tour-form__field textarea,
.custom-tour-form__field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(12, 70, 53, .2);
    border-radius: 12px;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
    background: #fefefe;
}

.custom-tour-form__field input:focus,
.custom-tour-form__field textarea:focus,
.custom-tour-form__field select:focus {
    outline: none;
    border-color: #0b5c4a;
    box-shadow: 0 0 0 3px rgba(11, 92, 74, .15);
}

.custom-tour-form__field textarea {
    resize: vertical;
    min-height: 80px;
}

.custom-tour-form__field .required {
    color: #d32f2f;
}

.custom-tour-form__phone-wrapper {
    display: flex;
    gap: 8px;
}

.custom-tour-form__country-code {
    flex: 0 0 110px;
}

.custom-tour-form__duration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
}

.custom-tour-form__duration-option {
    position: relative;
    cursor: pointer;
}

.custom-tour-form__duration-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.custom-tour-form__duration-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: 1px solid rgba(31, 68, 55, .2);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease;
}

.custom-tour-form__duration-option input[type="radio"]:checked + span {
    background: #0b5c4a;
    color: #fff;
    border-color: #0b5c4a;
}

.custom-tour-form__duration-option:hover span {
    border-color: #0b5c4a;
}

.custom-tour-form__duration-more {
    height: 40px;
    border: 1px dashed rgba(31, 68, 55, .3);
    border-radius: 8px;
    background: transparent;
    color: #0b5c4a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s ease;
}

.custom-tour-form__duration-more:hover {
    background: rgba(11, 92, 74, .05);
}

.custom-tour-form__radio-group,
.custom-tour-form__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-tour-form__inline-radio {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.custom-tour-form__radio-inline {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 16px;
    border: 1px solid rgba(31, 68, 55, .15);
    border-radius: 6px;
    transition: all .2s ease;
    min-width: 80px;
    justify-content: center;
    background: #fafafa;
}

.custom-tour-form__radio-inline:hover {
    border-color: #0b5c4a;
    background: #fff;
}

.custom-tour-form__radio-inline input[type="radio"] {
    margin-right: 8px;
    accent-color: #0b5c4a;
}

.custom-tour-form__radio-inline span {
    font-size: 14px;
    color: #1f4437;
    font-weight: 500;
}

.custom-tour-form__checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.custom-tour-form__radio,
.custom-tour-form__checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 12px;
    border: 1px solid rgba(31, 68, 55, .15);
    border-radius: 6px;
    transition: all .2s ease;
    background: #fafafa;
}

.custom-tour-form__radio:hover,
.custom-tour-form__checkbox:hover {
    border-color: #0b5c4a;
    background: #fff;
}

.custom-tour-form__radio input[type="radio"],
.custom-tour-form__checkbox input[type="checkbox"],
.custom-tour-form__checkbox input[type="radio"] {
    margin-right: 10px;
    accent-color: #0b5c4a;
}

.custom-tour-form__radio span,
.custom-tour-form__checkbox span {
    font-size: 14px;
    color: #1f4437;
}

.custom-tour-form__group-label {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1f4437;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(11, 92, 74, .1);
    color: #0b5c4a;
    font-size: 12px;
    cursor: help;
    margin-left: 4px;
}

.custom-tour-form__field--gdpr {
    padding-top: 16px;
    border-top: 1px solid rgba(31, 68, 55, .08);
}

.custom-tour-form__footer {
    padding: 16px 24px 20px;
    background: transparent;
}

.custom-tour-form__submit {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #0b5c4a 0%, #1f4437 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 2px 6px rgba(11, 92, 74, .25);
}

.custom-tour-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(11, 92, 74, .35);
}

.custom-tour-form__submit:active {
    transform: translateY(0);
}

.custom-tour-form__status {
    margin: 12px 0 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.custom-tour-form__status.success {
    display: block;
    background: rgba(46, 125, 50, .1);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, .3);
}

.custom-tour-form__status.error {
    display: block;
    background: rgba(211, 47, 47, .1);
    color: #d32f2f;
    border: 1px solid rgba(211, 47, 47, .3);
}

@media (max-width: 600px) {
    .custom-tour-form-wrapper {
        max-width: 100%;
    }

    .custom-tour-form {
        border-radius: 0;
    }

    .custom-tour-form__header {
        padding: 20px 16px 12px;
    }

    .custom-tour-form__title {
        font-size: 20px;
    }

    .custom-tour-form__body {
        padding: 20px 16px;
    }

    .custom-tour-form__row {
        flex-direction: column;
        gap: 16px;
    }

    .custom-tour-form__field--half {
        width: 100%;
    }

    .custom-tour-form__checkbox-grid {
        grid-template-columns: 1fr;
    }

    .custom-tour-form__duration-grid {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    }

    .custom-tour-form__footer {
        padding: 16px;
    }
}
        font-size: 20px;
    }

    .custom-tour-form__body {
        padding: 16px;
    }

    .custom-tour-form__row {
        flex-direction: column;
        gap: 16px;
    }

    .custom-tour-form__field--half {
        width: 100%;
    }

    .custom-tour-form__duration-grid {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    }

    .custom-tour-form__footer {
        padding: 16px;
    }
}

/* ========================================
   NEW PROFESSIONAL PRICE CARD
   ======================================== */

.tour-price-card-new {
    background: #ffffff;
    border: 1px solid rgba(31, 68, 55, 0.12);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tour-price-card-new__header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(31, 68, 55, 0.08);
    margin-bottom: 20px;
}

.tour-price-card-new__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5a7a6e;
    margin-bottom: 8px;
}

.tour-price-card-new__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.tour-price-card-new__amount {
    font-size: 36px;
    font-weight: 700;
    color: #0b5c4a;
    line-height: 1;
}

.tour-price-card-new__per {
    font-size: 14px;
    font-weight: 500;
    color: #5a7a6e;
    text-transform: lowercase;
}

.tour-price-card-new__single {
    margin-top: 8px;
    font-size: 13px;
    color: #5a7a6e;
    font-weight: 500;
}

.tour-price-card-new__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-price-card-new__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tour-price-card-new__field-label {
    font-size: 14px;
    font-weight: 600;
    color: #1f4437;
    margin: 0;
}

.tour-price-card-new__input,
.tour-price-card-new__select {
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(31, 68, 55, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #1f4437;
    background: #ffffff;
    transition: all 0.2s ease;
    appearance: none;
}

.tour-price-card-new__input {
    max-width: 200px;
}

.tour-price-card-new__select {
    max-width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f4437' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

.tour-price-card-new__input:focus,
.tour-price-card-new__select:focus {
    outline: none;
    border-color: #0b5c4a;
    box-shadow: 0 0 0 3px rgba(11, 92, 74, 0.1);
}

.tour-price-card-new__input:hover,
.tour-price-card-new__select:hover {
    border-color: rgba(31, 68, 55, 0.35);
}

.tour-price-card-new__variations-form {
    display: contents;
    margin: 0 !important;
    padding: 0 !important;
}

.tour-price-card-new__total {
    padding-top: 16px;
    border-top: 1px solid rgba(31, 68, 55, 0.08);
    font-size: 18px;
    font-weight: 700;
    color: #0b5c4a;
}

.tour-price-card-new .variations_form .variations,
.tour-price-card-new .variations_form table,
.tour-price-card-new .variations_form tbody,
.tour-price-card-new .variations_form tr,
.tour-price-card-new .variations_form td {
    all: unset;
    display: contents;
}

.tour-price-card-new .single_add_to_cart_button {
    display: none !important;
}

.tour-price-card-new .tour-plugin-wa-button {
    margin: 20px 0 0 0;
}

@media (max-width: 600px) {
    .tour-price-card-new {
        padding: 20px 16px;
    }
    
    .tour-price-card-new__amount {
        font-size: 32px;
    }
    
    .tour-price-card-new__input {
        max-width: 100%;
    }
}
