.elementor-3871 .elementor-element.elementor-element-45e205a{margin-top:100px;margin-bottom:0px;}.elementor-3871 .elementor-element.elementor-element-42c660a{text-align:center;}.elementor-3871 .elementor-element.elementor-element-8615b4d{text-align:center;}.elementor-3871 .elementor-element.elementor-element-739f31f img{border-radius:24px 24px 24px 24px;box-shadow:1px 2px 10px 0px rgba(0,0,0,0.5);}.elementor-3871 .elementor-element.elementor-element-92e5c28{margin-top:80px;margin-bottom:0px;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products  ul.products{grid-column-gap:26px;grid-row-gap:37px;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products ul.products li.product .star-rating{color:#00000000;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products ul.products li.product .star-rating::before{color:#00000000;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products ul.products li.product .price{color:#00000000;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products ul.products li.product .price ins{color:#00000000;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products ul.products li.product .price ins .amount{color:#00000000;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products ul.products li.product .price del{color:#00000000;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products ul.products li.product .price del .amount{color:#00000000;}.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products ul.products li.product span.onsale{display:block;}@media(max-width:1024px){.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}}@media(max-width:767px){.elementor-3871 .elementor-element.elementor-element-91948c8.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}}/* Start custom CSS *//* --- GRID LAYOUT -------------------------------------------------- */

/* Make the WooCommerce archive use a clean CSS grid */
.woocommerce ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 32px !important; /* space between cards */
}

/* --- CARD BASE ---------------------------------------------------- */

.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 0 0 24px;
}

/* Hover lift */
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.25);
}

/* --- IMAGE -------------------------------------------------------- */

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img {
    width: 100%;
    display: block;
    border-radius: 24px 24px 0 0;
    transform: scale(1);
    transition: transform 0.35s ease;
}

/* Hover zoom */
.woocommerce ul.products li.product:hover a.woocommerce-LoopProduct-link img {
    transform: scale(1.06);
}

/* --- TEXT AREA ---------------------------------------------------- */

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .woocommerce-product-details__short-description {
    padding: 0 20px;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    margin: 18px 0 6px;
}

/* If you’re showing a “See booking form for pricing” text in the short description */
.woocommerce ul.products li.product .woocommerce-product-details__short-description {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 10px;
}

/* Price – subtle or hide if you don't want it */
.woocommerce ul.products li.product .price {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 4px;
}

/* Hide rating stars (tourism site doesn’t need them here) */
.woocommerce ul.products li.product .star-rating {
    display: none !important;
}

/* --- BUTTON: "Experience details" style --------------------------- */

.woocommerce ul.products li.product a.button {
    margin: 16px 20px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: #f97316;
    color: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    text-decoration: none;
}

/* Hover state */
.woocommerce ul.products li.product a.button:hover {
    background: #fb923c;
    color: #ffffff;
}

/* Optional: make the button full-width on mobile */
@media (max-width: 767px) {
    .woocommerce ul.products li.product a.button {
        width: calc(100% - 40px);
    }
}

/* --- RESPONSIVE TWEAKS ------------------------------------------- */

/* Mobile: 1 column */
@media (max-width: 767px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* Large desktops: allow slightly bigger cards */
@media (min-width: 1280px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }
}/* End custom CSS */