/*==================================
    Single Tour Theme Customization
==================================*/

:root {
    --theme-palette-color-1: #6D1F1A;
    --theme-palette-color-2: #C89B5C;
    --theme-palette-color-3: #3f0f0e;
    --theme-palette-color-4: #2f2f2f;
    --theme-palette-color-5: #FAF8F5;
    --theme-palette-color-6: #E9E2DA;
    --theme-palette-color-7: #FAFBFC;
    --theme-palette-color-8: #ffffff;

    /* Semantic custom properties */
    --wg-primary: var(--theme-palette-color-1);
    --wg-accent: var(--theme-palette-color-2);
    --wg-primary-dark: var(--theme-palette-color-3);
    --wg-text: var(--theme-palette-color-4);
    --wg-bg: var(--theme-palette-color-5);
    --wg-border: var(--theme-palette-color-6);
    --wg-card-bg: var(--theme-palette-color-7);
    --wg-white: var(--theme-palette-color-8);
}

.wg-tour-single {
    background-color: var(--wg-bg);
    color: var(--wg-text);
    padding-bottom: 60px;
}

.wg-tour-container {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
}

.wg-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--wg-primary);
}

.wg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.breadcrumb-separator {
    display: inherit;
}

/*==================================
Header & Pricing
==================================*/

.wg-tour-title-main {
    margin: 0 0 20px 0;
}

.wg-tour-price-header {
    margin: 20px 0;
}

.wg-tour-price-header .wg-price-label {
    font-size: 15px;
    font-weight: 500;
}

.wg-price-sale {
    font-size: 50px;
    font-weight: 700;
    color: var(--wg-accent);
    font-family: Domine;
    line-height: 1;
}

.wg-price-regular {
    font-size: 26px;
    text-decoration: line-through;
    color: var(--wg-text);
    opacity: 0.5;
    margin-left: 5px;
    font-family: Domine;
}

.wg-gallery-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow: hidden;
    border-radius: 12px;
}

.wg-gallery-layout-grid.has-fewer-images {
    grid-template-columns: 1fr;
    height: auto;
}

.wg-gallery-col-big {
    position: relative;
    height: 100%;
}

.wg-gallery-col-big .wg-gallery-link-item {
    height: 100%;
}

/* 2x2 grid for up to 4 small images */
.wg-gallery-col-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
    position: relative;
}

.wg-gallery-view-action {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 6px;
    margin: 10px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.wg-gallery-view-action .wg-gallery-view-action-icon {
    display: flex;
}

/* Custom alignment for exactly 4 images total (1 big + 3 small) */
.wg-gallery-layout-grid.count-4 .wg-gallery-col-small .wg-gallery-small-row:first-child {
    grid-column: span 2;
}

/* Custom alignment for exactly 3 images total (1 big + 2 small) */
.wg-gallery-layout-grid.count-3 .wg-gallery-col-small {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

/* Custom alignment for exactly 2 images total (1 big + 1 small) */
.wg-gallery-layout-grid.count-2 .wg-gallery-col-small {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.wg-gallery-small-row {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.wg-gallery-link-item {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.wg-gallery-img-big,
.wg-gallery-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    aspect-ratio: 16/9;
}

.wg-gallery-link-item:hover .wg-gallery-img-big,
.wg-gallery-link-item:hover .wg-gallery-img-small {
    transform: scale(1.04);
}




.wg-tour-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.wg-single-left-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wg-single-right-col {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

/* Sticky Sidebar Widget Card */
.wg-booking-sidebar-card {
    background: var(--wg-white);
    border: 1px solid var(--wg-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 24px rgba(109, 31, 26, 0.03);
    z-index: 10;
}

.wg-booking-form-placeholder {
    margin-bottom: 25px;
}

.wg-booking-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--wg-primary-dark);
    margin-bottom: 15px;
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--wg-border);
}

/* Contact Info Widget */


.wg-contact-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--wg-primary-dark);
    margin-bottom: 12px;
    margin-top: 0;
}

.wg-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wg-contact-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
}

.wg-contact-info-list li i {
    color: var(--wg-primary);
}

.wg-contact-info-list li:last-child {
    margin-bottom: 0;
}

.wg-contact-icon {
    font-size: 16px;
}

/*==================================
Tour Quick Details Card (replaces Hero details)
==================================*/

.wg-trip-facts {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--wg-border);
    border-bottom: 1px solid var(--wg-border);
    padding: 20px 0px;
    margin: 10px 0px 10px;
}

.wg-trip-fact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wg-trip-fact-item .icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wg-accent);
    flex-shrink: 0;
    color: #fff;
}

.wg-trip-fact-item .detail {
    display: flex;
    flex-direction: column;
}

.wg-trip-fact-item .label {
    font-size: 15px;
    color: var(--wg-accent);
    line-height: 1.2;
    font-weight: 500;
}

.wg-trip-fact-item .value {
    margin-top: 3px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

@media(max-width:991px) {
    .wg-trip-facts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .wg-trip-fact-item {
        gap: 8px;
    }

    .wg-trip-fact-item .icon {
        width: 30px;
        height: 30px;
    }

    .wg-trip-fact-item .label {
        font-size: 12px;
        font-weight: 500;
    }

    .wg-trip-fact-item .value {
        margin-top: 2px;
        font-size: 14px;
    }
}

.wg-tour-quick-details-card {
    background: var(--wg-white);
    border: 1px solid var(--wg-border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(109, 31, 26, 0.02);
    position: sticky;
    top: 30px;
}

.tour-badge-wrapper {
    margin-bottom: 15px;
}

.tour-badge {
    display: inline-block;
    background: var(--wg-accent);
    color: var(--wg-white);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}

.meta-grid-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 5px;
}

.meta-grid-item.meta-duration span {
    font-size: 18px;
}

.meta-icon {
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
    color: var(--wg-primary);
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--wg-text);
    opacity: 0.6;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.meta-value {
    font-size: 15px;
    color: var(--wg-text);
    font-weight: 600;
}

.wg-highlights-grid {
    display: grid;
    gap: 8px;
}

.wg-highlight-item {
    display: flex;
    gap: 8px;
}

.wg-highlight-icon {
    display: flex;
}

.wg-highlight-icon svg {
    fill: var(--wg-primary);
    min-width: 26px;
    min-height: 26px;
}

.wg-highlight-text {
    color: var(--wg-text);
}


.tour-content {
    line-height: 1.9;
    color: var(--wg-text);
    font-size: 16px;
}

/*==================================
Itinerary
==================================*/

.wg-itinerary-item {
    margin-bottom: 15px;
    background: var(--wg-white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* .wg-itinerary-item.active {
    border-color: var(--wg-primary);
    box-shadow: 0 4px 12px rgba(109, 31, 26, 0.04);
} */

.wg-itinerary-header {
    width: 100%;
    border: none;
    background: var(--wg-white) !important;
    color: var(--wg-text) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 6px 10px;
    border-color: var(--wg-border) !important;
}


.wg-itinerary-left {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
}

.wg-day-number {
    background: var(--wg-primary);
    color: var(--wg-white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    min-width: 65px;
}

.wg-toggle {
    font-size: 22px;
    font-weight: bold;
    color: var(--wg-accent);
    transition: transform 0.3s;
}

.wg-itinerary-content {
    display: none;
    padding: 15px 10px 10px;
    border: 1px solid var(--wg-border);
    color: var(--wg-text);
    border-radius: 0 0 6px 6px;
    border-top: 0;
    margin-top: -3px;
    --theme-content-spacing: 0.5em;
}

.wg-itinerary-item.active .wg-itinerary-content {
    display: block;
}

.wg-itinerary-item.active .wg-toggle {
    transform: rotate(45deg);
}


.wg-tour-cost .season-list {
    padding-left: 15px;
}

.wg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.wg-header .wg-section-title {
    margin-bottom: 0;
}

.wg-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.wg-price-card {
    background: var(--wg-white);
    border: 1px solid var(--wg-border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wg-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(109, 31, 26, 0.08);
}

.wg-card-header {
    background: var(--wg-primary);
    color: white;
    padding: 10px;
}

.wg-card-header h4 {
    margin: 0;
    font-size: 1.20rem;
    color: #fff;
}

.wg-price-row {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wg-season {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--wg-border);
}

.wg-season:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.season-label {
    font-weight: 600;
    color: var(--wg-text);
    font-size: 1.02rem;
}

.wg-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wg-accent);
    white-space: nowrap;
}

.on-request-box {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wg-accent);
    white-space: nowrap;
}

.wg-currency-switcher {
    display: flex;
    gap: 8px;
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--wg-border) !important;
}

.wg-currency-switcher button {
    border: none;
    padding: 2px 13px !important;
    border-radius: 50px !important;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.98rem;
}

.wg-currency-switcher button.active {
    background: var(--wg-primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .wg-header {
        flex-direction: column;
        align-items: stretch;
    }

    .wg-pricing-cards {
        grid-template-columns: 1fr;
    }
}

/*==================================
Include Exclude
==================================*/

.wg-ie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.wg-ie-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
}

.wg-ie-card ul {
    padding-left: 0;
    list-style: none;
}

.wg-ie-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--wg-border);
    display: flex;
    gap: 8px;
}

.wg-ie-card li svg {
    fill: green;
    min-width: 28px;
    min-height: 28px;
    display: block;
}

.wg-ie-card li svg.times {
    fill: red;
}

.wg-ie-card li:last-child {
    border-bottom: none;
}

/* Hotel Cards */

.wg-hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wg-hotel-card {
    background: var(--wg-white);
    border: 1px solid var(--wg-border);
    border-radius: 10px;
    padding: 18px;
}

.wg-hotel-card-header {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wg-border);
}

.wg-hotel-card-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--wg-primary);
}

.wg-hotel-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--wg-border);
}

.wg-hotel-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wg-hotel-category {
    font-size: 13px;
    font-weight: 700;
    color: var(--wg-primary);
    text-transform: uppercase;
}

.wg-hotel-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wg-hotel-item li {
    margin: 2px 0;
    font-size: 14px;
    line-height: 1.5;
}

@media(max-width:991px) {

    .wg-hotels-grid {
        grid-template-columns: 1fr;
    }

    .wg-hotel-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

}

/*==================================
FAQ
==================================*/

.wg-faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s;
    background: var(--wg-white);
}

.wg-faq-item.active {
    border-color: var(--wg-primary);
}

.wg-faq-question {
    width: 100%;
    border: none;
    background: var(--wg-white) !important;
    color: var(--wg-text) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 6px 10px;
    border-color: var(--wg-border) !important;
}

.wg-faq-answer {
    display: none;
    padding: 15px 10px 10px;
    border: 1px solid var(--wg-border);
    color: var(--wg-text);
    border-radius: 0 0 6px 6px;
    border-top: 0;
    margin-top: -3px;
    --theme-content-spacing: 0.5em;
}

.wg-faq-item.active .wg-faq-answer {
    display: block;
}

.wg-faq-icon {
    font-size: 22px;
    transition: transform 0.3s;
    color: var(--wg-primary);
}

.wg-faq-item.active .wg-faq-icon {
    transform: rotate(45deg);
}

/*==================================
Related Tours
==================================*/

.wg-related-tours {
    border-top: 1px solid var(--wg-border);
    padding-top: 60px;
}

.wg-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wg-tour-card {
    background: var(--wg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--wg-border);
    box-shadow: 0 6px 20px rgba(109, 31, 26, 0.02);
    transition: transform .3s, box-shadow .3s;
}

.wg-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(109, 31, 26, 0.06);
}

.wg-tour-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.wg-tour-content {
    padding: 25px;
}

.wg-tour-destination {
    color: var(--wg-text);
    margin-bottom: 15px;
}

.wg-tour-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

.wg-tour-title a {
    color: var(--wg-primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.wg-tour-title a:hover {
    color: var(--wg-primary);
}

.wg-tour-duration {
    color: var(--wg-primary);
    font-weight: 400;
    margin-bottom: 5px;
}

.wg-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--wg-border);
    padding-top: 15px;
}

.wg-tour-footer .wg-tour-price {
    margin-bottom: 0;
}

.wg-tour-footer .sale-price {
    font-size: 20px;
    color: var(--wg-accent);
}

.wg-tour-footer .regular-price {
    font-size: 14px;
}

.wg-tour-btn {
    color: var(--wg-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.wg-tour-btn:hover {
    color: var(--wg-primary-dark);
}

.wg-tour-footer .wg-tour-price {
    display: flex;
    gap: 5px;
    align-items: center;
}

.wg-tour-footer .wg-tour-price .wg-price-sale {
    font-size: 24px;
}

.wg-tour-footer .wg-tour-price {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    color: #6c6c6c;
}

.wg-sticky-booking-bar {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    border-radius: 6px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
    border: 1px solid var(--wg-border);
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
}

.wg-sticky-info {
    display: flex;
    gap: 22px;
    flex: 1;
}



.wg-sticky-info .item {
    display: flex;
    flex-direction: column;
}

.wg-sticky-info .label {
    font-size: 14px;
    color: #6c6c6c;
}

.wg-sticky-info strong {
    font-size: 18px;
    line-height: 1.3;
}

.item.price-info strong {
    color: var(--wg-accent);
    font-size: 20px;
}


#fancybox-2 button {
    background-color: unset;
    color: unset;
    border: unset;
    border-radius: unset;
}

@media(min-width:992px) {
    .wg-sticky-booking-bar {
        display: none;
    }
}

@media(max-width:640px) {

    .wg-sticky-info {
        gap: 14px;
        overflow: auto;
    }

    .wg-sticky-info strong {
        font-size: 16px;
    }

    .item.price-info strong {
        font-size: 16px;
    }

    .wg-book-btn {
        padding: 12px 18px;
    }
}

/*==================================
Responsive
==================================*/

@media(max-width:991px) {

    .wg-tour-title-main {
        font-size: 30px;
    }

    .wg-tour-main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wg-booking-sidebar-card {
        position: static;
        margin-top: 20px;
    }

    .wg-ie-grid {
        grid-template-columns: 1fr;
    }

    .wg-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:767px) {

    .wg-tour-title-main {
        font-size: 26px;
    }

    .wg-gallery-col-small {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .wg-gallery-col-small .wg-gallery-small-row.wg-gallery-item-3,
    .wg-gallery-col-small .wg-gallery-small-row.wg-gallery-item-4 {
        display: none;
    }

    .wg-gallery-view-action {
        padding: 2px 6px;
        margin: 5px;
        font-size: 12px;
    }

    .wg-gallery-view-action-icon svg {
        width: 20px;
        height: 20px;
    }

    .wg-section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .tour-buttons-quick {
        flex-direction: column;
    }

    .wg-btn {
        width: 100%;
        text-align: center;
    }

    .wg-related-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

/*==================================
Tours Shortcode Grid & Layout
==================================*/

.wg-tours-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.wg-tours-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.wg-tours-grid.wg-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.wg-tours-grid.wg-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wg-tours-grid.wg-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wg-tours-grid.wg-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wg-no-tours {
    font-size: 16px;
    color: var(--wg-text);
    text-align: center;
    padding: 30px;
    border: 1px dashed var(--wg-border);
    border-radius: 8px;
}

/*==================================
Pagination Styling
==================================*/

.wg-tours-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.wg-tours-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--wg-border);
    color: var(--wg-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wg-tours-pagination .page-numbers:hover {
    border-color: var(--wg-primary);
    color: var(--wg-primary);
    background-color: rgba(109, 31, 26, 0.03);
}

.wg-tours-pagination .page-numbers.current {
    background-color: var(--wg-primary);
    border-color: var(--wg-primary);
    color: var(--wg-white);
}

.wg-tours-pagination .page-numbers.prev,
.wg-tours-pagination .page-numbers.next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

/*==================================
Responsive Grid Layouts
==================================*/

@media(max-width:991px) {
    .wg-tours-grid.wg-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .wg-tours-grid.wg-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:767px) {

    .wg-tours-grid.wg-cols-4,
    .wg-tours-grid.wg-cols-3,
    .wg-tours-grid.wg-cols-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*==================================
Swiper Carousel Layout styling
==================================*/

.wg-tours-carousel-wrapper {
    position: relative;
}

.wg-tours-carousel {
    padding: 0px 0 45px 0 !important;
    overflow: hidden;
}

/* Swiper navigation arrows */
.wg-tours-carousel .swiper-button-next,
.wg-tours-carousel .swiper-button-prev {
    color: var(--wg-primary) !important;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: 1px solid var(--wg-border);
    box-shadow: 0 4px 12px rgba(109, 31, 26, 0.08);
    transition: all 0.3s ease;
}

.wg-tours-carousel .swiper-button-next:after,
.wg-tours-carousel .swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: 700;
}

.wg-tours-carousel .swiper-button-next:hover,
.wg-tours-carousel .swiper-button-prev:hover {
    background: var(--wg-primary);
    color: var(--wg-white) !important;
    border-color: var(--wg-primary);
    box-shadow: 0 6px 16px rgba(109, 31, 26, 0.2);
}

.wg-tours-carousel .swiper-button-prev {
    left: 15px;
}

.wg-tours-carousel .swiper-button-next {
    right: 15px;
}

/* Bullet pagination indicators */
.wg-tours-carousel .swiper-pagination-bullet {
    background: var(--wg-border) !important;
    opacity: 0.8;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.wg-tours-carousel .swiper-pagination-bullet-active {
    background: var(--wg-primary) !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Swiper slides spacing and sizing */
.wg-tours-carousel .swiper-slide {
    height: auto !important;
    display: flex;
    flex-direction: column;
}

.wg-tours-carousel .swiper-slide .wg-tour-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 5px;
}