/* Ensure the container scrolls horizontally */
.horizontal-scroll-container {
    display: flex;
    overflow-x: auto; /* Enables horizontal scrolling */
    gap: 15px; /* Adds space between items */
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
}

/* Style each product item */
.horizontal-scroll-item {
    flex: 0 0 auto; /* Prevents items from resizing */
    width: 250px; /* Adjust width based on design */
    scroll-snap-align: start;
}

/* Ensure images fit properly */
.product-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Adjust text below the images */
.product-image-overlay-title {
    display: block;
    font-size: 16px;
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
}

/* Adjust price styling */
.product-image-price-overlay {
    display: block;
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-top: 3px;
}


.linked-activities-wrapper {
  margin-top: 1em;
}

.linked-activity-card {
    margin-bottom: 1.5em;
    overflow: hidden;
}

.activity-thumb {
    float: left;
    margin-right: 1em;
    width: 80px;
    height: 80px;
}

.activity-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.activity-text {
    overflow: hidden;
    /* ensures text wraps nicely */
}

.random-locations {
    margin-bottom: 2em;
}