<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.clubland-shop-items-carousel {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 12px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-header h2 {
    font-weight: 700;
    margin: 0;
}

.see-more {
    font-size: 14px;
    text-decoration: none;
    color: #06203B;
    margin-left: auto;
}

.see-more:hover {
    text-decoration: underline;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    padding: 10px;
    background-color: #f8f8f8;
}

.product-image img {
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.product-title {
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
    color: #06203B;
    display: block;
    text-align: center;
    margin-bottom: 10px; /* Adds space between the title and buttons */
}

.product-price {
    font-size: 16px;
    color: #444;
    font-weight: 700;
}

.select-options {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06203B;
    color: #8CBCE0;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
}

.select-options:hover {
    background: #06203B;
}

.cart-icon {
    margin-right: 8px;
}

.product-buttons {
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.product-buttons .button {
    display: inline-block;
    background-color: #06203B;
    color: #06203B;
    padding: 10px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.product-buttons .button:hover {
    background-color: #8CBCE0;
}

.clubland-shop-item:hover {
    transform: scale(1.05);
}

.entry-content .clubland-shop-items-carousel .clubland-shop-item {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px !important;
    min-height: 280px;
    height: auto;
    text-align: center;
    margin: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.clubland-shop-items-carousel .swiper-container {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}


.clubland-shop-items-carousel .swiper-wrapper {
    display: flex;
}

.clubland-shop-items-carousel .swiper-slide {
    flex-shrink: 0;
    width: auto;
    max-width: 100%;
}


</pre></body></html>