.is-style-homepage-recently-added {
    padding: 100px 0;
    background-color: #F9FBFF;
}

.is-style-homepage-recently-added .product-section-header {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.is-style-homepage-recently-added .section-pretitle {
    display: block;
    color: #0E899F;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.is-style-homepage-recently-added .section-title {
    color: #121C21;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    font-family: 'Satoshi', var(--wp--preset--font-family--body), sans-serif;
}

.is-style-homepage-recently-added .btn-outline-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--wp--preset--color--accent);
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.is-style-homepage-recently-added .btn-outline-action:hover {
    background-color: #07809E;
    transform: translateY(-2px);
}

/* Products Grid */
.is-style-homepage-recently-added .products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.is-style-homepage-recently-added .product-bundle-card {
    background-color: #ffffff;
    border: 1px solid #E0E7EB;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px -8px rgba(18, 28, 33, 0.05);
    transition: all 0.3s ease;
}

.is-style-homepage-recently-added .product-bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(18, 28, 33, 0.12);
}

.is-style-homepage-recently-added .card-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #F2F2F2;
    overflow: hidden;
}

.is-style-homepage-recently-added .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.is-style-homepage-recently-added .product-bundle-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.is-style-homepage-recently-added .card-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #ffffff;
    color: #0E899F;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.is-style-homepage-recently-added .card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.is-style-homepage-recently-added .card-product-title {
    color: #2F2F2F;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.25;
    font-family: 'Satoshi', var(--wp--preset--font-family--body), sans-serif;
}

.is-style-homepage-recently-added .card-product-desc {
    color: #4D5558;
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 24px 0;
    flex: 1;
}

.is-style-homepage-recently-added .card-product-metas {
    border-top: 1px solid #E0E7EB;
    border-bottom: 1px solid #E0E7EB;
    padding: 16px 0;
    margin-bottom: 24px;
}

.is-style-homepage-recently-added .meta-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.is-style-homepage-recently-added .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #121C21;
    font-size: 13px;
    font-weight: 500;
}

.is-style-homepage-recently-added .meta-item svg {
    color: #09819F;
}

.is-style-homepage-recently-added .card-footer-pricing {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.is-style-homepage-recently-added .price-from-label {
    display: block;
    color: rgba(5, 5, 5, 0.75);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.is-style-homepage-recently-added .price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.is-style-homepage-recently-added .price-current {
    color: #2F2F2F;
    font-size: 22px;
    font-weight: 700;
}

.is-style-homepage-recently-added .price-regular {
    color: rgba(46, 46, 46, 0.26);
    font-size: 22px;
    font-weight: 700;
    text-decoration: line-through;
}

.is-style-homepage-recently-added .price-unit {
    font-size: 12px;
    font-weight: 700;
}

.is-style-homepage-recently-added .btn-gradient-card {
    background: linear-gradient(180deg, #1793B1 0%, #07809E 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.is-style-homepage-recently-added .btn-gradient-card:hover {
    opacity: 0.9;
}

.is-style-homepage-recently-added .card-shipping-bar {
    background-color: #F2F2F2;
    padding: 14px 20px;
    text-align: center;
    color: #283438;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .is-style-homepage-recently-added .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .is-style-homepage-recently-added {
        padding: 60px 0;
    }
    .is-style-homepage-recently-added .product-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .is-style-homepage-recently-added .section-title {
        font-size: 36px;
    }
    .is-style-homepage-recently-added .products-grid {
        grid-template-columns: 1fr;
    }
}
