.total-price.font-bold.da-tm.text-xl.inline-block {
    color: #d8aa42 !important;
}

:root {
    --ease-2: cubic-bezier(0.25, 0, 0.4, 1);
    --ease-spring-3: linear(0,0.009,0.035 2.1%,0.141 4.4%,0.723 12.9%,0.938 16.7%,1.017,1.077,1.121,1.149 24.3%,1.159,1.163,1.161,1.154 29.9%,1.129 32.8%,1.051 39.6%,1.017 43.1%,0.991,0.977 51%,0.974 53.8%,0.975 57.1%,0.997 69.8%,1.003 76.9%,1);
    --product-image-height: 17rem;
}

.s-products-slider-card, 
.swiper-slide {
    height: auto !important;
    display: flex !important;
}

custom-salla-product-card:not([horizontal]) .s-product-card-image {
    position: relative !important;
    overflow: hidden !important;
    height: var(--product-image-height) !important;
    min-height: var(--product-image-height) !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    background-color: #ffffff !important;
}

custom-salla-product-card[horizontal] .s-product-card-image {
    position: relative !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background-color: #ffffff !important;
}

.s-product-card-image a {
    display: flex !important;
    position: relative !important;
    height: 100% !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
}

.s-product-card-image-contain {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background-color: #ffffff !important;
    transition: transform 0.3s ease !important;
}

.s-product-card-image a:hover .s-product-card-image-contain {
    transform: none !important;
}


.s-product-card-image::before,
.s-product-card-image a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 50% !important;
    height: 100% !important;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%) !important;
    transform: skewX(-25deg) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

custom-salla-product-card:hover .s-product-card-image::before,
custom-salla-product-card:hover .s-product-card-image a::before,
.s-product-card-entry:hover .s-product-card-image::before,
.s-product-card-entry:hover .s-product-card-image a::before {
    left: 100% !important;
    transition: left 1.1s var(--ease-2) !important;
}


.s-product-card-quickview-btn {
    position: absolute !important;
    top: 60px !important;
    left: 18px !important;
    right: auto !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 9999 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    color: #231f1e !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease !important;
    transform: translateY(-5px) scale(0.9) !important;
}

.s-product-card-quickview-btn svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    stroke: currentColor !important;
}

custom-salla-product-card:hover .s-product-card-quickview-btn,
.s-product-card-entry:hover .s-product-card-quickview-btn,
.s-product-card-image:hover .s-product-card-quickview-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.s-product-card-quickview-btn:hover {
    background-color: #d8aa42 !important;
    color: #ffffff !important;
    border-color: #d8aa42 !important;
    box-shadow: 0 4px 14px rgba(216, 170, 66, 0.4) !important;
}


#custom-qv-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.5rem !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-family: var(--font-main, 'PingARLT'), sans-serif !important;
    direction: rtl !important;
    will-change: opacity, visibility !important;
    transform: translateZ(0) !important;
}

#custom-qv-modal.is-open {
    opacity: 1 !important;
    visibility: visible !important;
}

#custom-qv-modal .custom-qv-backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    will-change: opacity !important;
    transform: translateZ(0) !important;
}

#custom-qv-modal .s-modal-body {
    position: relative !important;
    background-color: #ffffff !important;
    max-width: 900px !important;
    width: 100% !important;
    border-radius: 0.75rem !important;
    padding: 1.5rem !important;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1) !important;
    z-index: 2 !important;
    transform: scale(0.96) translateY(8px) !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
    border: 1px solid #e5e7eb !important;
    will-change: transform !important;
}

#custom-qv-modal.is-open .s-modal-body {
    transform: scale(1) translateY(0) !important;
}

#custom-qv-modal .s-modal-header {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    z-index: 20 !important;
}

#custom-qv-modal .s-modal-close {
    background: #f5f7f9 !important;
    border: none !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #7c8082 !important;
    transition: all 0.2s ease !important;
}

#custom-qv-modal .s-modal-close:hover {
    background: #d8aa42 !important;
    color: #ffffff !important;
}

#custom-qv-modal .angel-quick-view__wrapper {
    display: flex !important;
    gap: 2rem !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    #custom-qv-modal .angel-quick-view__wrapper {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    #custom-qv-modal .s-modal-body {
        padding: 1.25rem !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    #custom-qv-modal .angel-quick-view__images,
    #custom-qv-modal .angel-quick-view__content {
        width: 100% !important;
    }
}

#custom-qv-modal .angel-quick-view__images {
    width: 45% !important;
}

#custom-qv-modal .angel-quick-view__content {
    width: 55% !important;
    text-align: right !important;
}

#custom-qv-modal .quickview-images-box {
    background-color: #fafafa !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 0.75rem !important;
    padding: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 280px !important;
}

#custom-qv-modal .quickview-images-box img {
    max-height: 260px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

#custom-qv-modal .angel-quick-view__title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #231f1e !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.4 !important;
}

#custom-qv-modal .angel-quick-view__taxable {
    font-size: 0.8125rem !important;
    color: #7c8082 !important;
    display: block !important;
    margin-bottom: 0.75rem !important;
}

#custom-qv-modal .s-product-card-sale-price h4,
#custom-qv-modal .s-product-card-price h4,
#custom-qv-modal .price h4 {
    color: #d8aa42 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    display: inline-block !important;
    margin: 0 !important;
}

#custom-qv-modal .s-product-card-sale-price span,
#custom-qv-modal .price span {
    color: #9ca3af !important;
    text-decoration: line-through !important;
    font-size: 0.9375rem !important;
    margin-right: 0.5rem !important;
}

#custom-qv-modal #qv-desc,
#custom-qv-modal .angel-quick-view__description {
    display: block !important;
    max-height: 140px !important;
    overflow-y: auto !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
    margin: 10px 0 !important;
    padding-left: 6px !important;
}

#custom-qv-modal #qv-desc p {
    margin-bottom: 6px !important;
}

#custom-qv-modal #qv-desc strong {
    color: #111827 !important;
    font-weight: 700 !important;
}

#custom-qv-modal .angel-quick-view__add-to-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

#custom-qv-modal .qv-quantity-wrap {
    min-width: 110px !important;
}

#custom-qv-modal .qv-wishlist-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 1px solid #e5e7eb !important;
    background-color: #ffffff !important;
    color: #7c8082 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

#custom-qv-modal .qv-wishlist-btn:hover,
#custom-qv-modal .qv-wishlist-btn.is-active {
    border-color: #f87e7e !important;
    background-color: #fef2f2 !important;
    color: #ef4444 !important;
}

#custom-qv-modal .qv-wishlist-btn.is-active svg {
    fill: #ef4444 !important;
}

.da-ts { 
    color: #d8aa42 !important; 
    font-weight: 500 !important; 
}



custom-salla-product-card.s-product-card-entry {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    border: 1px solid #f3d382 !important;
    border-radius: 8px !important;
    transition: border-color 0.3s ease !important;
    overflow: hidden !important;
}

custom-salla-product-card:not([horizontal]).s-product-card-entry {
    flex-direction: column !important;
}

custom-salla-product-card.s-product-card-entry:hover {
    border-color: #d8aa42 !important; 
}

.s-product-card-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.s-product-card-content-footer {
    margin-top: auto !important;
}


custom-salla-product-card .s-button-primary-outline,
.s-product-card-entry .s-button-primary-outline,
#custom-qv-modal .s-button-primary-outline {
    animation: none !important;
    transform: none !important;
    background-color: transparent !important;
    background-image: none !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

custom-salla-product-card .s-button-primary-outline::before,
.s-product-card-entry .s-button-primary-outline::before,
#custom-qv-modal .s-button-primary-outline::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, #e8c574 0%, #d8aa42 50%, #b58827 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: -1 !important;
    border-radius: inherit !important;
}

custom-salla-product-card .s-button-primary-outline:hover::before,
.s-product-card-entry .s-button-primary-outline:hover::before,
#custom-qv-modal .s-button-primary-outline:hover::before {
    opacity: 1 !important;
}

custom-salla-product-card .s-button-primary-outline:hover,
.s-product-card-entry .s-button-primary-outline:hover,
#custom-qv-modal .s-button-primary-outline:hover {
    border-color: #d8aa42 !important;
    box-shadow: 0 4px 15px rgba(216, 170, 66, 0.3) !important;
}

custom-salla-product-card .s-button-primary-outline .s-button-text,
.s-product-card-entry .s-button-primary-outline .s-button-text,
#custom-qv-modal .s-button-primary-outline .s-button-text {
    transition: color 0.3s ease !important;
    position: relative !important;
    z-index: 2 !important;
}

custom-salla-product-card .s-button-primary-outline:hover .s-button-text,
.s-product-card-entry .s-button-primary-outline:hover .s-button-text,
#custom-qv-modal .s-button-primary-outline:hover .s-button-text {
    color: #ffffff !important;
}

.btn--delete,
.s-button-danger,
[data-testid="store-cart-delete-item"] {
    background-color: #ef4444 !important;
    color: #ffffff !important;
    border-color: transparent !important;
}


@media (max-width: 768px) {
    :root {
        --product-image-height: 11rem;
    }
}
@media (max-width: 480px) {
    :root {
        --product-image-height: 9.5rem;
    }
}


@media (max-width: 768px) {
    .s-product-card-quickview-btn {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        top: 60px !important;
        left: 18px !important;
    }
}

.s-product-card-quickview-btn {
    z-index: 5 !important;
}


@media (max-width: 768px) {
    #custom-qv-modal {
        align-items: center !important;
        justify-content: center !important;
        padding: 1rem !important;
    }

    #custom-qv-modal .s-modal-body {
        width: var(--swal2-width, 32em) !important;
        max-width: 92vw !important;
        max-height: 88vh !important;
        border-radius: var(--swal2-border-radius, 0.3125rem) !important;
        background: var(--swal2-background, #ffffff) !important;
        padding: 1.5rem 1.25rem 1.25rem !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    #custom-qv-modal .quickview-images-box {
        min-height: 220px !important;
        padding: 0.75rem !important;
    }

    #custom-qv-modal .quickview-images-box img {
        max-height: 200px !important;
    }

    #custom-qv-modal .angel-quick-view__title {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
    }

    #custom-qv-modal .s-product-card-sale-price h4,
    #custom-qv-modal .s-product-card-price h4,
    #custom-qv-modal .price h4 {
        font-size: 1.3rem !important;
    }

}


#custom-qv-modal .custom-qv-backdrop {
    background: rgba(0, 0, 0, 0) !important;
    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    transition: backdrop-filter 0.45s ease, -webkit-backdrop-filter 0.45s ease,
                background-color 0.45s ease !important;
}

#custom-qv-modal.is-open .custom-qv-backdrop {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}


html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}


salla-button.s-product-card-wishlist-btn {
    display: grid !important;
    place-items: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    overflow: visible !important;
    flex: 0 0 auto !important;
    transition: all 0.2s ease !important;
}

salla-button.s-product-card-wishlist-btn button.s-product-card-wishlist-btn {
    display: grid !important;
    place-items: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 50% !important;
    overflow: visible !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    opacity: 1 !important;
}

salla-button.s-product-card-wishlist-btn .s-button-text {
    display: grid !important;
    place-items: center !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

salla-button.s-product-card-wishlist-btn .sicon-heart {
    color: #231f1e !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

salla-button.s-product-card-wishlist-btn .sicon-heart {
    margin-top: 0px !important;
    margin-left: 0px !important;
}

salla-button.s-product-card-wishlist-btn:hover {
    border-color: #d8aa42 !important;
    background-color: #fdf6e8 !important;
}

salla-button.s-product-card-wishlist-btn:hover .sicon-heart {
    color: #d8aa42 !important;
}

salla-button.s-product-card-wishlist-btn.favorited,
salla-button.s-product-card-wishlist-btn.added {
    border-color: #f87e7e !important;
    background-color: #fef2f2 !important;
}

salla-button.s-product-card-wishlist-btn.favorited .sicon-heart,
salla-button.s-product-card-wishlist-btn.added .sicon-heart {
    color: #ef4444 !important;
}


custom-salla-product-card:not([horizontal]) .s-product-card-quickview-btn,
.s-product-card-entry:not([horizontal]) .s-product-card-quickview-btn {
    left: 18px !important;
}

custom-salla-product-card:not([horizontal]) salla-button.s-product-card-wishlist-btn,
.s-product-card-entry:not([horizontal]) salla-button.s-product-card-wishlist-btn {
    position: absolute !important;
    top: 14px !important;
    left: 18px !important;
    right: auto !important;
    z-index: 10 !important;
}

custom-salla-product-card[horizontal] .s-product-card-quickview-btn {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
}

custom-salla-product-card[horizontal] salla-button.s-product-card-wishlist-btn {
    position: absolute !important;
    top: 46px !important;
    left: 8px !important;
    right: auto !important;
    z-index: 10 !important;
}

salla-button.s-product-card-wishlist-btn {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-5px) scale(0.9) !important;
    transition: opacity 0.3s ease, transform 0.3s ease,
                background-color 0.3s ease, color 0.3s ease !important;
}

custom-salla-product-card:hover salla-button.s-product-card-wishlist-btn,
.s-product-card-entry:hover salla-button.s-product-card-wishlist-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

@media (max-width: 768px) {
    salla-button.s-product-card-wishlist-btn,
    .s-product-card-wishlist-btn {
        display: grid !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        z-index: 10 !important;
    }
}

#custom-qv-modal #qv-rating {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    direction: rtl !important;
    text-align: right !important;
    flex-wrap: nowrap !important;
}

#custom-qv-modal #qv-rating salla-rating-stars {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
    line-height: 1 !important;
}

#custom-qv-modal .s-rating-stars-reviews {
    display: block !important;
    flex: 1 0 100% !important;
    width: 100% !important;
    margin-top: 4px !important;
    color: #7c8082 !important;
    font-size: 0.8rem !important;
}

.s-rating-stars-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
}

.s-rating-stars-reviews {
    display: block !important;
    flex: 1 0 100% !important;
    width: 100% !important;
    margin-top: 4px !important;
}


#custom-qv-modal .angel-quick-view__add-to-cart {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

#custom-qv-modal #qv-cart-container {
    width: 100% !important;
    max-width: 320px !important;
    flex: 0 0 auto !important;
    order: 1 !important;
}

#custom-qv-modal #qv-quantity-container {
    order: 2 !important;
    flex: 0 0 auto !important;
}


.qv-image-actions {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 5 !important;
}

.qv-share-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 1px solid #e5e7eb !important;
    background-color: #ffffff !important;
    color: #7c8082 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
}

.qv-share-btn:hover {
    border-color: #d8aa42 !important;
    background-color: #fdf6e8 !important;
    color: #d8aa42 !important;
}

.qv-share-popup {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
}

.qv-share-popup.is-open {
    opacity: 1 !important;
    visibility: visible !important;
}

.qv-share-popup__backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0) !important;
    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    transition: backdrop-filter 0.35s ease, background-color 0.35s ease !important;
}

.qv-share-popup.is-open .qv-share-popup__backdrop {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

.qv-share-popup__body {
    position: relative !important;
    background: #ffffff !important;
    border-radius: 0.75rem !important;
    padding: 1.5rem !important;
    width: 100% !important;
    max-width: 320px !important;
    z-index: 2 !important;
    text-align: center !important;
    direction: rtl !important;
}

.qv-share-popup__close {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: #f5f7f9 !important;
    border: none !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 16px !important;
    line-height: 1 !important;
    color: #7c8082 !important;
}

.qv-share-popup__body h4 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    color: #231f1e !important;
}

.qv-share-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}

.qv-share-links a,
.qv-share-links button {
    display: block !important;
    padding: 10px !important;
    border-radius: 0.5rem !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    color: #231f1e !important;
    font-size: 0.85rem !important;
    font-family: inherit !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.qv-share-links a:hover,
.qv-share-links button:hover {
    border-color: #d8aa42 !important;
    color: #d8aa42 !important;
}


}

.s-shine-play .s-product-card-image::before,
.s-shine-play .s-product-card-image a::before {
    left: 100% !important;
}


.sc-1au8ryl-0.dkuywW {
    display: none !important;
}