.whats-on-country.columns {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0px;
}

.sidebar {
    max-width: 220px;
    flex-shrink: 0;
}

.content-area {
    flex-grow: 1;
}

.what-on-title {
    color: #e31135;
}

.block-country-list {
    border-radius: 5px;
    margin-bottom: 20px;
}

.block-country-list .block-title {
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
}

.country-banner {
    margin-bottom: 15px;
}

.country-banner .country-image {
    height: 250px;
    background-size: cover !important;
    background-position: center top;
    text-align: center;
}

.country-banner .country-image .overlay-colour {
    background: rgba(0, 0, 0, 0.3);
}

.country-banner .country-image .overlay {
    display: table;
    height: 100%;
    width: 100%;
}

.country-banner .country-image .overlay .inner {
    display: table-cell;
    vertical-align: middle;
}

.country-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-item {
    margin-bottom: 8px;
}

.country-item a {
    color: #333;
    text-decoration: none;
    display: flex;
    padding: 8px 10px;
    border-radius: 3px;
}

.country-item a:hover {
    text-decoration: underline;
}

.country-item.current a {
    background: #e31b35;
    color: #fff;
}

/* Activities Grid (same as before but adjusted for new layout) */
/* Grid container - keeps 3 items per row */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Each activity item */
.activity-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Activity image */
.activity-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.activity-name {
    font-family: noto_serifregular !important;
    text-align: left;
}

.activity-name a {
    color: #333;
    text-decoration: none;
}

.activity-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    flex-grow: 1; /* Take available space */
}

/* Rating stars */
.activity-rating {
    padding: 10px 15px 0;
    color: #ffb300; /* Gold color for stars */
    font-size: 14px;
}

/* Price styling */
.activity-price {
    padding: 5px 15px;
    font-size: 18px;
    font-weight: bold;
    color: #ff0000; /* Red color */
}

/* More Info button */
/*.activity-actions {
    width: 60%;
    margin: auto;
    margin-top: 5px;
}*/

.activity-actions .action {
    display: block;
    padding: 12px 0;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    line-height: 20px;
    width: 120px;
}

.activity-actions .action:hover {
    background: #cc0000; /* Darker red on hover */
}

.worldgift_country-country-view .button-ias.ias-load-more {
    position: relative;
    display: block;
    clear: left;
    float: none;
    padding: 1em 0;
    margin: 0 auto;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: center;
}

.worldgift_country-country-view button.ias-load-more .wrapper {
    border: 1px solid #555555;
    border-radius: 40px;
    padding: 0.65em 2em 0.7em 2em;
}

.worldgift_country-country-view button.button-ias .wrapper span {
    display: inline-block;
    background-color: transparent;
    color: #555555;
    text-transform: uppercase;
    font-size: 18px;
    padding: 0 6px 0 0;
    margin: 0;
    font-family: 'OpenSansSemiBold';
}
.worldgift_country-country-view button.button-ias .wrapper .arrow {
    border: solid #555555;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 4px;
    border-radius: 2px;
}
.worldgift_country-country-view button.button-ias .wrapper .down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 4px;
}

.worldgift_country-country-view .products.wrapper .product-items  .ias-spinner {
    text-align: center;
    span {
        clear: both;
        display: block;
        float: none;
        margin: 0 auto;
        text-align: center;
    }
    img {
        max-width: 20px;
    }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile styles (max-width: 767px) */
@media only screen and (max-width: 767px) {
    /* General layout adjustments */
    .whats-on-country.columns {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
    }

    /* Country list styles with toggle functionality */
    .sidebar.sidebar-main {
        order: -1;
        width: 100%;
        margin-bottom: 15px;
    }

    .sidebar {
        max-width: 100%;
    }
    .block.block-country-list {
        margin-bottom: 15px;
    }

    .block.block-country-list .block-title {
        position: relative;
        padding-right: 25px;
        display: block;
        padding: 1em 0;
        font-size: 14px;
        font-size: 0.875rem;
        text-align: center;
        text-transform: uppercase;
        background-color: #e31b35;
        color: #fff;
        border: none;
    }

    .toggle-country-list {
        cursor: pointer;
        display: inline-block;
        position: relative;
        padding-right: 15px;
        font-family: "OpenSansBold", Georgia, Times New Roman, serif;
    }

    .toggle-country-list:after {
        content: '\25BC'; /* Down arrow */
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
    }

    .block-content.collapsed {
        display: none;
    }

    .toggle-country-list.collapsed:after {
        content: '\25B6'; /* Right arrow */
    }

    /* Rest of your existing mobile styles */
    .country-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .country-item {
        flex: 0 0 calc(50% - 4px);
    }

    .country-item.current {
        font-weight: bold;
    }

    .country-item a {
        display: block;
        color: #333;
        text-decoration: none;
        padding: 6px 10px;
        background: #f5f5f5;
        border-radius: 4px;
        font-size: 14px;
    }

    .country-item.current a {
        background: #e31b35;
        color: white;
    }

    /* Product grid - 2 items per line */
    .products.list.items.product-items.row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -5px;
        width: 100%;
    }

    .item.product.product-item {
        width: 50%;
        padding: 0 5px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .product-item-info.cf {
        border: 1px solid #eee;
        padding: 8px;
        height: 100%;
    }

    .product-item-photo {
        width: 100%;
        height: auto;
    }

    .product-item-name {
        font-size: 14px;
        margin: 0 0 5px;
        min-height: 36px;
    }

    .location-price {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .purchase-info {
        font-size: 13px;
    }

    /*.purchase-info .button {
        display: block;
        text-align: center;
        padding: 6px;
        background: #e31b35;
        color: white;
        text-decoration: none;
        border-radius: 3px;
        font-size: 13px;
    }*/

    /* Toolbar adjustments */
    .toolbar {
        font-size: 13px;
    }

    /* Google Map filter section */
    .googlemap {
        margin: 15px 0;
        padding: 12px;
        border: 1px solid #ddd;
    }

    .slider-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 14px;
    }

    #slider-range {
        margin-bottom: 12px;
    }

    .buttons {
        display: flex;
        gap: 8px;
    }

    .map--button {
        padding: 6px 10px;
        background: #eee;
        border: 1px solid #ddd;
        cursor: pointer;
        font-size: 13px;
    }
}

/* Smaller mobile devices (max-width: 480px) */
@media only screen and (max-width: 480px) {
    .country-item {
        flex: 0 0 100%;
    }

    .country-item a {
        font-size: 13px;
    }

    .country-image.cf {
        height: 150px;
    }

    .product-item-name {
        font-size: 13px;
        min-height: auto;
    }

    .location-price {
        font-size: 13px;
    }
}

@media only screen and (min-width: 64em) {
    .country-banner .country-image {
        width: 100%;
        height: 400px;
    }
}
