:root {
    --gold-1: #b28e2f;
    --gold-2: #d4af37;
    --gold-3: #f5d889;
    --black-1: #0d0d0d;
    --black-2: #111;
    --white: #fff;
    --beige-bg: #fdf6e3;
    --card-radius: 18px;
    --card-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

body {
    background-color: var(--beige-bg);
}

custom-salla-product-card.product-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
    transition: .3s ease;
}

custom-salla-product-card.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

custom-salla-product-card .product-card__image {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #00D3B;
    padding: 12px;
}

custom-salla-product-card .product-card__image img {
    transition: .3s ease;
    object-fit: contain;
}

custom-salla-product-card .product-card__image:hover img {
    transform: scale(1.07);
    opacity: 0.95;
}

custom-salla-product-card .product-card__promotion {
    font-weight: 700;
    font-size: 12px;
    border-radius: 40px;
    padding: 6px 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    background-color: #ef4444;
    color: #fff;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

custom-salla-product-card .product-card__title a {
    color: var(--black-1);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.45;
    transition: .2s ease;
}

custom-salla-product-card .product-card__title a:hover {
    color: var(--gold-2);
}

custom-salla-product-card .product-card__subtitle {
    color: #555 !important;
    font-size: 13px;
}

custom-salla-product-card .total-price {
    color: var(--gold-2) !important;
    font-weight: 800 !important;
    font-size: 20px !important;
}

custom-salla-product-card .before-price {
    color: #aaa !important;
    text-decoration: line-through;
}

custom-salla-product-card .product-card__actions button,
custom-salla-product-card .product-card__buttons button {
    border-radius: 50% !important;
    border: 1px solid rgba(210, 175, 55, 0.35) !important;
    color: var(--gold-2) !important;
    background: transparent !important;
    transition: .25s ease;
}

custom-salla-product-card .product-card__actions button:hover,
custom-salla-product-card .product-card__buttons button:hover {
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3)) !important;
    color: var(--black-1) !important;
    transform: scale(1.12);
}

custom-salla-product-card .product-card__normal-cart__btn button,
custom-salla-product-card .product-card__enhnaced-mini-cart__btn button,
.product-card__enhanced-mini-cart button.s-button-element {
    background: conic-gradient(from 0deg,
            #d4a347,
            #f5d08b,
            #e8c16c,
            #d4a347) !important;
    color: var(--black-1) !important;
    border: none !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    padding: 12px 20px !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 18px rgba(210, 175, 55, 0.35);
    transition: .25s ease-in-out;
}

custom-salla-product-card .product-card__normal-cart__btn button:hover,
custom-salla-product-card .product-card__enhnaced-mini-cart__btn button:hover,
custom-salla-product-card .addToCart__btn button:hover,
custom-salla-product-card salla-add-product-button button.s-button-element:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 175, 55, 0.55);
    opacity: .95;
}

@media (max-width: 480px) {
    custom-salla-product-card .product-card__title a {
        font-size: 14px;
    }

    custom-salla-product-card .total-price {
        font-size: 18px !important;
    }
}

.s-block--enhanced-features__item {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    overflow: hidden;
    color: #000;
    font-family: inherit;
    /* background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%); */
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-block--enhanced-features__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.s-block--enhanced-features__item .feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-block--enhanced-features__item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.s-block--enhanced-features__item .feature-icon img {
    max-height: 70%;
    max-width: 70%;
    object-fit: contain;
}

.s-block--enhanced-features__item h2 {
    font-size: 1.5rem;
    font-weight: inherit;
    margin: 0.5rem 0 0.8rem;
    color: #000;
}

.s-block--enhanced-features__item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.s-block--enhanced-features__item div.absolute {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .s-block--enhanced-features__item {
        padding: 1.5rem 1rem;
    }

    .s-block--enhanced-features__item h2 {
        font-size: 1.3rem;
    }

    .s-block--enhanced-features__item p {
        font-size: 0.95rem;
    }

    .s-block--enhanced-features__item .feature-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .s-block--enhanced-features__item {
        padding: 1rem 0.8rem;
    }

    .s-block--enhanced-features__item h2 {
        font-size: 1.1rem;
    }

    .s-block--enhanced-features__item p {
        font-size: 0.9rem;
    }

    .s-block--enhanced-features__item .feature-icon {
        width: 60px;
        height: 60px;
    }
}

.s-block--enhanced-features__item {
    position: relative;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: .25s ease;
    border: 1px solid #f5f5f5;
}

.s-block--enhanced-features__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.11);
}

.s-block--enhanced-features__item .feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: .25s ease;
}

.s-block--enhanced-features__item:hover .feature-icon img {
    transform: scale(1.08);
}

.s-block--enhanced-features__item h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.s-block--enhanced-features__item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.s-block--enhanced-features__item>div.absolute {
    display: none !important;
}

.swiper-wrapper.s-slider-swiper-wrapper {
    /* justify-content: space-between; */
    padding-bottom: 15px;
}

feature-icon has-image {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.main-nav-container {
    min-height: 50px !important;
}

.feature-icon.has-image {
    position: relative;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    margin: 0 auto 15px;
    overflow: visible;
}

.feature-icon.has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            #d4a347,
            #f5d08b,
            #e8c16c,
            #d4a347);
    animation: rotateGold 6s linear infinite;
    z-index: 0;
}

.feature-icon.has-image::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

.feature-icon.has-image img {
    position: relative;
    z-index: 2;
    width: 70%;
    height: 70%;
    object-fit: contain;
}

@keyframes rotateGold {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.faq-btn .sicon-keyboard_arrow_down,
.faq-btn i {
    background: #000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: 2px solid #d4a037;
    box-shadow: 0 4px 10px rgba(212, 160, 55, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sicon-keyboard_arrow_down:before,
.sicon-keyboard_arrow_up:before {
    color: #e8c16c;
}

.product-card__enhanced-mini-cart button.s-button-element i {
    color: #000 !important;
}

.review .flex {
    background: linear-gradient(180deg, #ffffff, #fcfaf5);
    border-radius: 16px;
    padding: 1.6rem;
    border: 1px solid rgba(212, 188, 142, 0.35);
    /* حد ذهبي ناعم */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 12px rgba(212, 180, 85, 0.09);
    /* ظل ذهبي خفيف */
    transition: all 0.3s ease;
    position: relative;
}

.review .flex:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 0 16px rgba(212, 180, 85, 0.18);
    border-color: rgba(212, 180, 85, 0.55);
}

.review p {
    line-height: 1.8;
    font-size: 15px;
    color: #3a3a3a;
}

.review h4 {
    font-weight: 600;
    color: #1f1f1f;
}

.review img {
    border: 2px solid #e7d7a8;
    box-shadow: 0 0 6px rgba(212, 180, 85, 0.25);
}

.review .sicon-quote {
    color: #c5ab72 !important;
    font-size: 2.8rem;
}

.review .sicon-quote::before {
    background: linear-gradient(45deg, #f3d17a, #d4a637, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 6px rgba(212, 180, 90, 0.45);
}

.footer-description,
.footer-description p,
.footer-list a,
.s-trust-badges-label,
.s-trust-badges-number,
.store-footer h3,
.footer-description+p {
    color: #dfb45c;
}

.unicode {
    unicode-bidi: plaintext;
    color: #dfb45c;
}

.store-footer a {
    transition-duration: .15s;
    transition-property: opacity;
    transition-timing-function:
        cubic-bezier(.4, 0, .2, 1);
    border-color: #dfb45c;
    color: #dfb45c;
}

.text-gray-400 {
    color: #dfb45c;
    font-weight: bold;
}

.main-nav-container .inner {
    background: #000;
}

.inner.bg-inherit.w-full button,
.mm-spn.mm-spn--navbar:after,
.mm-spn.mm-spn--navbar:before,
.topnav-is-dark .top-navbar .topnav-link-item,
.inner.bg-inherit.w-full i,
.inner.bg-inherit.w-full p {
    color: #dfb45c;
}

.mm-spn.mm-spn--light {
    background: #000;
    color: #dfb45c;
}

/* 
body .bg-storeBG {
    background-image: url('https://i.postimg.cc/YSnjrHwL/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
} */

@media (min-width: 768px) {
    .main-nav-container {
        min-height: 60px;
    }
}

.home-slider:not(.photos-slider) .swiper-slide:not(.photos-slider):before {
    background: none;
}

custom-salla-product-card .product-card__image {
    background: #fff !important;
}

.product-card__addToCart.mobile .s-button-solid.s-button-primary.s-button-loader-center {
    background: linear-gradient(45deg, #f3d17a, #d4a637, #b8860b);

}
.reviews img {
    object-fit: fill;
}