.ps-slider-container-a5fe4bcb {
    width: 100%;
    position: relative;
    --ps-gap: 20px;
    --ps-row-gap: 20px;
}

/* Sorting Dropdown */
.ps-sorting-wrapper-a5fe4bcb {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.ps-sorting-wrapper-a5fe4bcb select {
    padding: 8px 30px 8px 15px;
    border: 1px solid #2A684F;
    border-radius: 4px;
    background-color: transparent;
    color: #2A684F;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232A684F%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
.ps-sorting-wrapper-a5fe4bcb select:focus {
    border-color: #0B6E4F;
}

/* Grid Mode */
.ps-grid-wrapper-a5fe4bcb {
    width: 100%;
}
.ps-grid-inner-a5fe4bcb {
    display: grid;
    grid-template-columns: repeat(var(--cols-desktop, 4), 1fr);
    column-gap: var(--ps-gap);
    row-gap: var(--ps-row-gap);
    width: 100%;
}
.ps-grid-item-a5fe4bcb {
    display: flex;
    width: 100%;
}
@media (max-width: 1024px) {
    .ps-grid-inner-a5fe4bcb {
        grid-template-columns: repeat(var(--cols-tablet, 2), 1fr);
    }
}
@media (max-width: 767px) {
    .ps-grid-inner-a5fe4bcb {
        grid-template-columns: repeat(var(--cols-mobile, 1), 1fr);
    }
}

/* Pagination */
.ps-pagination-wrapper-a5fe4bcb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}
.ps-pagination-wrapper-a5fe4bcb .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid #2A684F;
    color: #2A684F;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ps-pagination-wrapper-a5fe4bcb .page-numbers.current {
    background: #2A684F;
    color: #fff;
    border-color: #2A684F;
}
.ps-pagination-wrapper-a5fe4bcb .page-numbers:hover:not(.current) {
    background: #FCE1E4;
    color: #2A684F;
}
.ps-pagination-wrapper-a5fe4bcb .page-numbers.dots {
    border: none;
    background: transparent;
}

/* Shared Product Card Styles */
.ps-product-card-a5fe4bcb {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    font-family: sans-serif;
    padding-bottom: 5px;
}
.ps-image-wrapper-a5fe4bcb {
    position: relative;
    overflow: hidden;
    border: 2px solid #2A684F; 
    border-radius: 6px;
    background: #FCE1E4; 
}
.ps-image-wrapper-a5fe4bcb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    object-fit: cover;
}
.ps-image-wrapper-a5fe4bcb.has-zoom:hover img {
    transform: scale(1.08);
}
.ps-sale-badge-a5fe4bcb {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #0B6E4F; 
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}
.ps-content-a5fe4bcb {
    padding: 15px 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.ps-title-a5fe4bcb {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
}
.ps-title-a5fe4bcb a {
    color: #2A684F;
    text-decoration: none;
}
.ps-price-a5fe4bcb {
    color: #2A684F;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.ps-price-a5fe4bcb del,
.ps-price-a5fe4bcb del span.amount {
    color: #7A9B8F;
    font-weight: normal;
    text-decoration: none;
    opacity: 0.8;
}
.ps-price-a5fe4bcb ins,
.ps-price-a5fe4bcb ins span.amount {
    text-decoration: none;
    font-weight: 600;
}
.ps-button-wrapper-a5fe4bcb {
    margin-top: auto;
    padding-bottom: 5px;
}
.ps-add-to-cart-a5fe4bcb {
    display: inline-block;
    background: #FFBDE1;
    border: 2px solid #2A684F;
    color: #2A684F;
    padding: 12px 20px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}
.ps-add-to-cart-a5fe4bcb:hover {
    background: #2A684F;
    color: #FFBDE1;
}
.ps-button-wrapper-a5fe4bcb.is-fullwidth .ps-add-to-cart-a5fe4bcb {
    display: block;
    width: 100%;
}

.ps-slider-container-a5fe4bcb a.added_to_cart,
.ps-product-card-a5fe4bcb a.added_to_cart,
.ps-button-wrapper-a5fe4bcb a.added_to_cart,
.wc-forward.added_to_cart {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}
