*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --maroon-dark: #3F0505;
    --maroon-mid: #5a1a1a;
    --maroon-light: #701414;
    --gold: #d4a853;
    --orange-cta: #f5a623;
    --orange-cta-hover: #e6991a;
    --white: #ffffff;
    --off-white: #f5f0e8;
    --timer-bg: rgba(255, 255, 255, 0.14);
    --timer-card: #3a3a4a;
    --social-bg: rgba(217, 217, 217, 0.27);
}

body {
    background-color: white;
}

#mainnav {
    background-color: #faf2de;
}

.navbar-brand img {
    max-height: 5rem;
}

.main-nav-container.fixed-pinned .navbar-brand img {
    max-height: 68px;
}

.main-menu li>a {
    padding: .5rem;
}

/* start of icons */
.header-btn__icon {
    border: none;
}

.sicon-user-circle:before {
    content: "\f078";
}

.s-cart-summary-content {
    display: none;
}

/* end of icons */


#mainnav custom-main-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (min-width: 1024px) {
    .main-menu {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}

.swiper-wrapper {
    padding-block: 8px;
}

/** start of hero section **/
#hero-root {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.hero {
    max-width: 1250px;
    margin-inline: auto;
    margin-block: 8px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 580px;
    padding: 40px 60px;
    background-color: var(--maroon-dark);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.hero-content {
    flex: 0 0 55%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    gap: 20px;
    animation: heroContentIn 0.8s ease-out 0.2s both;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--maroon-dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow: 0 4px 30px rgba(245, 166, 35, 0.3);
    }
}

.hero-badge-fire {
    font-size: 22px;
    animation: fireFlicker 0.6s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    from {
        transform: scale(1) rotate(-5deg);
    }

    to {
        transform: scale(1.15) rotate(5deg);
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    max-width: 500px;
    color: var(--white);
    margin-top: -8px;
    line-height: 2;
}

.hero-price-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    gap: 16px;
}

.hero-price-current {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hero-price-currency {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.hero-price-old {
    display: flex;
    gap: 2px;
}

.hero-price-old-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-price-old-value {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 80, 80, 0.8);
    text-decoration-thickness: 2px;
}

.countdown {
    display: flex;
    gap: 10px;
    direction: ltr;
}

.countdown-unit {
    background: var(--timer-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 72px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.countdown-unit:hover {
    transform: translateY(-2px);
}

.countdown-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
    min-height: 38px;
}

.countdown-value.tick {
    animation: tickBounce 0.4s ease;
}

@keyframes tickBounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.countdown-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffc247 0%, var(--orange-cta) 50%, #e8921a 100%);
    color: black;
    font-family: 'Tajawal', sans-serif;
    font-size: 26px;
    font-weight: 800;
    padding: 18px 80px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(245, 166, 35, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {

    0%,
    100% {
        left: -60%;
    }

    50% {
        left: 120%;
    }
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-cta:active {
    transform: translateY(0) scale(0.98);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--social-bg);
    padding: 10px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-social-avatars {
    display: flex;
    direction: ltr;
}

.hero-social-avatars img {
    width: 100%;
    max-width: 160px;
    height: auto;
}

.hero-social-text {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-social-count {
    font-weight: 800;
    color: var(--orange-cta);
    font-size: 16px;
    direction: ltr;
}

@media (max-width: 1024px) {
    .hero {
        align-items: flex-start;
        padding: 20px 12px;
        background-position: -50vw center;
        background-size: 100%;
        min-height: 45px;
    }

    .hero::before {
        opacity: 0.9;
    }

    .hero-content {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .hero-badge {
        padding: 6px 18px;
        font-size: 16px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
        text-align: start;
        max-width: 300px;
    }

    .hero-price-current {
        font-size: 22px;
    }

    .hero-price-old {
        font-size: 12px;
    }

    .countdown-unit {
        padding: 5px;
        min-width: 40px;
        border-radius: 8px;
        width: 45px;
        height: 45px;
    }

    .countdown-value {
        min-height: 12px;
        font-size: 16px;
        padding: 0;
    }

    .countdown-value.tick {
        font-size: 14px;
        padding: 0;
    }

    .hero-cta {
        padding: 8px 50px;
        font-size: 16px;
    }

    .hero-social-proof {
        border-radius: 50px;
        gap: 4px;
    }

    .hero-social-proof img {
        max-width: 80px;
    }
}

/** end of hero section **/

/** start of features section **/
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: featureIn 0.6s ease-out both;
}

.feature-item:nth-child(1) {
    animation-delay: 0s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes featureIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, var(--maroon-light) 0%, var(--maroon-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.08);
}

.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.feature-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--maroon-dark);
    text-align: center;
    line-height: 1.5;
    max-width: 140px;
}

@media (max-width: 1024px) {
    .features {
        gap: 8px;
        padding: 16px 8px;
    }

    .feature-item {

        gap: 12px;

    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }


    .feature-icon img {
        width: 35px;
        height: 35px;
    }

    .feature-label {
        font-size: 13px;
        max-width: 100px;
    }
}

/** end of features section **/


/** start of categories section **/

.categories {
    padding: 40px 20px;
    max-width: 1250px;
    margin: 0 auto;
}

.categories-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--maroon-dark);
    text-align: right;
    margin-bottom: 24px;
}

.categories-title span {
    position: relative;
}

/* .categories-title span::before {
    position: absolute;
    z-index: -1;
    content: "";
    background-color: #faf2de;
    width: 95%;
    height: 85%;
} */

#categories-slider .swiper-slide {
    height: auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #f5f0e8;
    border-radius: 16px;
    padding: 24px 16px 20px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    border-color: var(--maroon-dark);
    transform: translateY(-4px);
}

.category-card-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.category-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--maroon-dark);
}

.category-card-count {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .categories {
        padding: 24px 8px;
    }

    .categories-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    #categories-slider .swiper-slide {
        max-width: 160px;
    }

    .category-card {
        padding: 16px 10px 14px;
        gap: 8px;
        border-radius: 12px;
    }

    .category-card-image {
        width: 56px;
        height: 56px;
    }

    .category-card-name {
        font-size: 13px;
    }

    .category-card-count {
        font-size: 11px;
    }
}

/** end of categories section **/
/** start of weekly-offer section **/
.weekly-offer {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 60px;
    margin: 40px auto;
    max-width: 1250px;
    border-radius: 24px;
    background-color: var(--maroon-dark);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.weekly-offer .hero-content {
    animation: weeklyContentIn 0.8s ease-out both;
}

.weekly-offer .hero-title,
.weekly-offer .hero-subtitle,
.weekly-offer span {
    color: var(--maroon-dark) !important;

}

@keyframes weeklyContentIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.weekly-offer-badge {
    background: var(--maroon-dark);
    color: var(--white);
    box-shadow: none;
    animation: none;
}

.weekly-offer-badge span {
    color: var(--white) !important;
}

.weekly-offer-timer .countdown-unit {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
    .weekly-offer {
        align-items: flex-start;
        background-image: url(https://i.ibb.co/HTG8tNjY/weekly-offer-bg-mobile.png) !important;
        min-height: 475px;
        padding: 20px;
        border-radius: 0;
        margin: 24px auto;
        background-position: center center;
    }


    .weekly-offer .hero-content {
        max-width: 100%;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
}

/** end of weekly-offer section **/

/** start of special-banner section **/
.special-banner {
    background-size: cover;
    background-position: center;
    min-height: 460px;
    max-width: 1250px;
    margin: 0 auto;
}

.special-banner .hero-content {
    flex: 0 0 auto;
    gap: 20px;
}

.special-banner .hero-title {
    color: var(--maroon-dark);
    font-size: 36px;
}

.special-banner .hero-title span {
    background: var(--maroon-dark);
    color: var(--white);
    padding: 2px 12px;
    display: inline-block;
}


.special-banner .hero-subtitle {
    color: var(--maroon-dark);
    font-size: 32px;
    font-weight: 700;
}


.special-banner .hero-social-text {
    color: #3a2a1a;
}

.special-banner .hero-social-count {
    color: var(--maroon-dark);
}

@media (max-width: 1024px) {
    .special-banner {
        border-radius: 0;
        background-image: url(https://i.ibb.co/wFy2ZVpc/special-banner-mobile.png) !important;
        min-height: 220px;
        padding: 20px 12px;
        justify-content: flex-start;
        background-position: left center;
        min-height: 300px;
    }

    .special-banner .hero-content {
        gap: 6px;
    }

    .special-banner .hero-cta {
        padding: 4px 40px;
        font-size: 16px;
    }

    .special-banner .hero-title {
        font-size: 18px;
    }

    .special-banner .hero-subtitle {
        font-size: 16px;
    }

    .special-banner .hero-social-proof {
        border-radius: 30px;
        padding: 10px;
        backdrop-filter: blur(2px);
    }

    .special-banner .hero-social-proof img {
        max-width: 60px;
    }
}

/** end of special-banner section **/
/** start of double-banners section **/
.double-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1250px;
    margin: 24px auto;
    padding: 0 4px;
}

.double-banner-card {
    border-radius: 20px;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 36px;
    background-color: rgba(230, 209, 179, 1);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.double-banner-card:hover {
    transform: translateY(-3px);
}

.double-banner-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 1;
    text-align: right;
    animation: heroContentIn 0.8s ease-out both;
}

.double-banner-card-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--maroon-dark);
    line-height: 1.4;
}

.double-banner-card-title span {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    background: var(--maroon-dark);
    color: var(--white);
}

.double-banner-card-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #5a4a3a;
}

.double-banner-card .hero-cta {
    padding: 12px 40px;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .double-banners {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 4px;
        margin: 16px auto;
    }

    .double-banner-card {
        min-height: 180px;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .double-banner-card-title {
        font-size: 18px;
    }

    .double-banner-card-subtitle {
        font-size: 13px;
    }

    .double-banner-card .hero-cta {
        padding: 8px 28px;
        font-size: 14px;
    }
}

/** end of double-banners section **/
/** start of reviews section **/
.reviews-section {
    padding: 40px 20px;
    padding-bottom: 0;
    max-width: 1250px;
    margin: 0 auto;
}

.reviews-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--maroon-dark);
    text-align: center;
    margin-bottom: 32px;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
}

.review-wrapper {
    flex-shrink: 0;
}

.review-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    animation: reviewIn 0.6s ease-out both;
}

.review-wrapper:nth-child(1) {
    max-width: 280px;
}

.review-wrapper:nth-child(1) img {
    animation-delay: 0s;
}

.review-wrapper:nth-child(2) {
    max-width: 360px;
}

.review-wrapper:nth-child(2) img {
    animation-delay: 0.1s;
}

.review-wrapper:nth-child(3) {
    max-width: 280px;
}

.review-wrapper:nth-child(3) img {
    animation-delay: 0.2s;
}

@keyframes reviewIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-wrapper img:hover {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .reviews-section {
        padding: 24px 8px;
        padding-bottom: 0;
    }

    .reviews-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .reviews-grid {
        gap: 8px;
    }

    .review-wrapper:nth-child(1),
    .review-wrapper:nth-child(3) {
        max-width: 130px;
    }

    .review-wrapper:nth-child(2) {
        max-width: 180px;
    }

    .review-wrapper img {
        border-radius: 16px;
    }
}

/** end of reviews section **/
/** start of payment-banner section **/
.payment-banner {
    max-width: 1250px;
    margin: 24px auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.payment-banner-top {
    background-color: var(--white);
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 60px;
}

.payment-banner-top-image {
    max-width: 500px;
    width: 100%;
    position: absolute;
    bottom: -90px;
    left: 0;
}

.payment-banner-top-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.payment-banner-top-text {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-banner-title {
    font-size: 90px;
    font-weight: 900;
    color: var(--maroon-dark);
    line-height: 1.3;
}

.payment-banner-subtitle {
    font-size: 60px;
    font-weight: 700;
    color: var(--maroon-dark);
}

.payment-banner-bottom {
    background-color: var(--maroon-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 24px 60px;
    border-radius: 24px;
}

.payment-banner-bottom-image {
    max-width: 200px;
    width: 100%;
    flex-shrink: 0;
}

.payment-banner-bottom-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.payment-banner-methods {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.payment-banner-methods img {
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .payment-banner {
        margin: 16px 4px;
        border-radius: 16px;
    }

    .payment-banner-top {
        flex-direction: column;
        padding: 24px 16px;
        gap: 16px;
    }

    .payment-banner-top-image {
        max-width: 220px;
        position: absolute;
        bottom: -30px;
        left: -20px;
    }

    .payment-banner-top-text {
        text-align: center;
    }

    .payment-banner-title {
        font-size: 28px;
    }

    .payment-banner-subtitle {
        font-size: 20px;
    }

    .payment-banner-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 16px;
        border-radius: 0;
    }

    .payment-banner-bottom-image {
        max-width: 140px;
    }

    .payment-banner-methods img {
        max-height: 36px;
    }
}

/** end of payment-banner section **/
/** start of testimonials section **/
.testimonials-section {
    max-width: 1250px;
    margin: 40px auto;
    padding: 40px 20px;
    overflow: hidden;
}

.testimonials-section .swiper-wrapper {
    padding-block: 20px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--maroon-dark);
    text-align: right;
    margin-bottom: 32px;
}

#testimonials-slider {
    --slide-gap: 24px;
}

.testimonial-card {
    background: #F5F5F5;
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    box-shadow: 0px 3.96px 24.67px -1.98px #00000030;
    width: 100%;
    border: 2px solid #3F050500;
}

.swiper-slide-active .testimonial-card {
    border: 1px solid #701414;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.testimonial-header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(230, 209, 179, 1);
}

.testimonial-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--maroon-dark);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    direction: ltr;
}

.testimonial-stars img {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 14px;
    font-weight: 500;
    color: #5a4a3a;
    line-height: 1.6;
}

.testimonial-product {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #666666;
    width: 100%;
    justify-content: center;
}

.testimonial-product-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-align: right;
}

.testimonial-product-name {
    font-size: 12px;
    font-weight: 600;
    color: #767676;
}

.testimonial-product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    direction: ltr;
}

.testimonial-product-price-current {
    font-size: 16px;
    font-weight: 800;
    color: #767676;
}

.testimonial-product-price-old {
    font-size: 12px;
    font-weight: 500;
    color: #767676;
    text-decoration: line-through;
}

.testimonial-card .hero-cta {
    margin-inline: auto;
    padding: 12px 36px;
    font-size: 16px;
    margin-top: 12px;
    max-width: 250px;
    width: 100%;
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 24px 0;
        margin: 24px auto;
    }

    .testimonials-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding: 0 16px;
    }

    #testimonials-slider {
        --slide-gap: 12px;
    }

    .testimonial-card {
        border-radius: 16px;
        padding: 20px 16px;
        gap: 10px;
    }

    .testimonial-header {
        gap: 10px;
    }

    .testimonial-header-info {
        gap: 2px;
    }

    .testimonial-avatar {
        width: 56px;
        height: 56px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-stars img {
        width: 18px;
        height: 18px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-product {
        gap: 10px;
        padding-top: 12px;
    }

    .testimonial-product-image {
        width: 40px;
        height: 40px;
    }

    .testimonial-product-name {
        font-size: 11px;
    }

    .testimonial-product-price-current {
        font-size: 14px;
    }

    .testimonial-product-price-old {
        font-size: 11px;
    }

    .testimonial-card .hero-cta {
        padding: 10px 28px;
        font-size: 14px;
        max-width: 200px;
    }
}

/** end of testimonials section **/
/** start of contact section **/
.contact-section {
    display: flex;
    direction: rtl;
    min-height: 500px;
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    margin-top: 24px;
}

.contact-info-side {
    flex: 1;
    background: linear-gradient(140.82deg, #3F0505 -18.77%, #701414 59.01%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.contact-info-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.contact-info-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 8px;
    position: relative;
    text-align: start;
}

.contact-info-title span {
    display: block;
    font-family: "Georgia", serif;
    font-size: 52px;
    letter-spacing: 2px;
    margin-top: 4px;
}

.contact-info-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    position: relative;
}

.contact-info-divider {
    width: 70%;
    max-width: 380px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.contact-info-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    position: relative;
}

.contact-info-icons {
    display: flex;
    gap: 16px;
    position: relative;
}

.contact-info-icon-link {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.contact-info-icon-link:hover {
    transform: translateY(-2px);
}

.contact-info-icon-link img {
    object-fit: contain;
}

.contact-form-side {
    flex: 1;
    background: linear-gradient(222.39deg, #F2F2F2 -5.96%, #FFDFBF 103.08%);
    padding: 50px 50px 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #3d2b1f;
    margin-bottom: 10px;
    text-align: right;
}

.contact-form-input-wrapper {
    position: relative;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 56px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-input-wrapper:focus-within {
    border-color: #8b4c4c;
    box-shadow: 0 0 0 3px rgba(139, 76, 76, 0.1);
}

.contact-form-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 20px;
    height: 100%;
    font-size: 15px;
    color: #333;
    direction: rtl;
    text-align: right;
    font-family: inherit;
}

.contact-form-input::placeholder {
    color: #aaa;
    font-size: 14px;
}

.contact-form-input-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-left: 0;
    margin-right: 18px;
    opacity: 0.5;
    flex-shrink: 0;
}

.contact-phone-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 100%;
}

.contact-phone-wrapper .contact-form-input {
    flex: 1;
}

.contact-country-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 100%;
    cursor: pointer;
    border: none;
    background: transparent;
    flex-shrink: 0;
}

.contact-country-selector img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 3px;
}

.contact-country-chevron {
    font-size: 12px;
    color: #999;
    margin: 0 4px;
}

.contact-phone-divider {
    width: 1px;
    height: 30px;
    background: #e0d8d0;
    flex-shrink: 0;
}

.contact-form-textarea-wrapper {
    height: auto;
    border-radius: 20px;
    align-items: flex-start;
    padding: 8px 0;
}

.contact-form-textarea {
    resize: none;
    min-height: 75px;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.6;
}

.contact-form-textarea-wrapper .contact-form-input-icon {
    margin-top: 14px;
}

.contact-form-side .hero-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    border: none;
    font-family: inherit;
}

.contact-form-input-wrapper.input-error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.contact-form-error {
    font-size: 13px;
    color: #e74c3c;
    margin-top: 6px;
    text-align: right;
}

.contact-form-error.visible {
    display: block;
}

.contact-success-msg {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    animation: successFade 0.4s ease;
}

@keyframes successFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-info-side {
        padding: 40px 24px;
        align-items: center;
    }

    .contact-info-title {
        font-size: 36px;
        text-align: center;
    }

    .contact-info-title span {
        font-size: 40px;
    }

    .contact-form-side {
        padding: 32px 24px;
    }
}

/** end of contact section **/
/** start of whatsapp section **/
.whatsapp-section {
    margin-block-start: 160px !important;
    display: flex;
    direction: rtl;
    align-items: center;
    background: linear-gradient(80.7deg, #701414 0.82%, #FFAF60 107.94%);
    box-shadow: 0px 4.53px 28.22px -2.27px #00000030;
    border-radius: 16px 16px 0px 0px;
    margin-top: 24px;
    min-height: 420px;
    position: relative;
}

.whatsapp-info-side {
    flex: 1;
    padding: 50px 50px 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 1;
}

.whatsapp-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
}

.whatsapp-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-questions-label {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.whatsapp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.whatsapp-pill {
    background: rgba(109, 109, 109, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-pill:hover {
    background: rgba(109, 109, 109, 0.1);
    transform: translateY(-2px);
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #333;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-cta img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}

.whatsapp-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 540px) {
    .whatsapp-badges {
        max-width: 290px;
    }
}

.whatsapp-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.whatsapp-badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.whatsapp-mobile-side {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 40px;
    z-index: 0;
}

.whatsapp-mobile-img {
    width: 100%;
    max-width: 680px;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .whatsapp-section {
        margin-block-start: 24px !important;
        flex-direction: row;
    }

    .whatsapp-info-side {
        padding: 16px;
        align-items: flex-start;
        text-align: right;
        gap: 8px;

    }

    .whatsapp-title {
        font-size: 24px;
    }

    .whatsapp-subtitle {
        font-size: 14px;
    }

    .whatsapp-questions-label {
        font-size: 13px;
    }

    .whatsapp-pills {
        flex-direction: column;
        gap: 8px;
    }

    .whatsapp-pill {
        font-size: 12px;
        padding: 4px 6px;
    }

    .whatsapp-cta {
        font-size: 14px;
        padding: 8px;
    }

    .whatsapp-cta img {
        width: 22px;
        height: 22px;
    }

    .whatsapp-badges {
        gap: 6px;
    }

    .whatsapp-badge {
        font-size: 11px;
        padding: 6px;
    }

    .whatsapp-mobile-side {
        left: 0;
        padding: 0 10px;
    }

    .whatsapp-mobile-img {
        max-width: 220px;
        ;
    }
}

/** end of whatsapp section **/
/** start of best offers products section **/
.best-offers-1-wrapper {
    background: linear-gradient(120.6deg, #FFE49F -16.7%, #FF9327 124.4%);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 40px calc(50vw - 50%);
    padding-bottom: 0;
    border-radius: 0;
}

/** end of best offers products section **/
/** start of product card enhancements **/
@media (max-width: 1024px) {
    .s-products-slider-card {
        max-width: 300px;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .s-products-slider-card {
        width: 33%;
    }
}

.s-product-card-entry {
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.s-product-card-entry,
.s-product-card-image {
    background-color: white;
}

.s-product-card-entry>.s-product-card-promotion-title {
    position: absolute;
    top: 18px;
    right: 8px;
    z-index: 2;
    background: #701414;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .s-product-card-entry>.s-product-card-promotion-title {
        font-size: 10px;
        padding: 3px 8px;
        top: 12px;
        right: 6px;
    }
}

/** start of product card wishlist btn **/
.s-product-card-entry>.s-product-card-wishlist-btn {
    position: absolute;
    top: 6px;
    left: 8px;
    right: auto;
    z-index: 2;
}

@media (max-width: 1024px) {
    .s-product-card-entry>.s-product-card-wishlist-btn {
        top: 3px;
        left: 6px;
        right: auto;
        z-index: 2;
    }
}

/** end of product card wishlist btn **/
.s-product-card-content-sub {
    margin-bottom: 0;
    justify-content: space-between;
}

.s-product-card-image {
    margin-block-start: 50px;
    margin-inline: auto;
    max-height: 260px;
    max-width: 260px;
}

@media (max-width: 1024px) {
    .s-product-card-image {
        margin-block-start: 30px;
        max-height: 200px;
        max-width: 200px;
    }
}

.product-card-qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 8px;
    width: 100%;
}

.product-card-qty {
    display: flex;
    align-items: center;
    background: #E5E5E5;
    border-radius: 50px;
    overflow: hidden;
    flex-shrink: 0;
    height: 40px;
}

.product-card-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--maroon-dark);
    font-size: 18px;
    font-weight: 700;
    transition: background 0.2s ease;
    padding: 0;
    line-height: 1;
}

.product-card-qty-btn:hover {
    background: rgba(122, 16, 32, 0.08);
}

.product-card-qty-btn:active {
    background: rgba(122, 16, 32, 0.15);
}

.product-card-qty-value {
    width: 32px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--maroon-dark);
    height: 32px;
    border-radius: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.s-button-primary-outline {
    background-color: var(--maroon-dark);
    color: white;
    border-radius: 50px;
}

.s-button-primary-outline:hover {
    background-color: var(--maroon-light);
    color: white;
}

.product-card-payment-img {
    width: 100%;
    display: block;
    margin: 12px auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .product-card-qty {
        height: 36px;
    }

    .product-card-qty-btn {
        width: 28px;
        font-size: 16px;
    }

    .product-card-qty-value {
        font-size: 13px;
    }
}

/** start of product card rating enhanced **/
.s-product-card-rating.rating-enhanced {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    direction: ltr;
}

.product-card-star-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.product-card-rating-text {
    font-size: 12px;
    font-weight: 600;
    color: #888;
}

@media (max-width: 1024px) {
    .product-card-star-img {
        width: 13px;
        height: 13px;
    }

    .product-card-rating-text {
        font-size: 10px;
    }

    .s-product-card-rating.rating-enhanced {
        gap: 4px;
    }
}

/** end of product card rating enhanced **/
/** start of offers-1 card overrides **/
.best-offers-1-wrapper .s-product-card-content-sub {
    justify-content: center;
}

.best-offers-1-wrapper .s-product-card-content-title {
    text-align: center;
}

.product-card-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #FFAF60 0%, #FFE49F 100%);
    color: #5a2d00;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    line-height: 1.3;
    white-space: nowrap;
    text-decoration: none !important;

}

.offers1-card-rating {
    position: absolute;
    top: 310px;
    left: 12px;
    right: auto;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #e4e4e4;
    padding: 4px 16px;
    border-radius: 50px;
}

@media (max-width: 1024px) {
    .offers1-card-rating {
        top: 230px;
        height: fit-content;
    }
}

.offers1-card-rating-star {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.offers1-card-rating-num {
    font-size: 16px;
    font-weight: 700;
    color: #A1A1A1;
}

@media (max-width: 1024px) {
    .product-card-discount-badge {
        font-size: 14px;
        padding: 2px 8px;
    }

    .offers1-card-rating {
        bottom: 6px;
        left: 6px;
        padding: 3px 12px;
        gap: 3px;
    }

    .offers1-card-rating-star {
        width: 14px;
        height: 14px;
    }

    .offers1-card-rating-num {
        font-size: 14px;
    }
}

/** end of offers-1 card overrides **/
/** end of product card enhancements **/

/** start of banner cta loader **/
.cta-loading {
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 40px;
}

.cta-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #701414;
    border-top-color: transparent;
    border-radius: 50%;
    animation: ctaSpin 1s linear infinite;
}

@keyframes ctaSpin {
    to {
        transform: rotate(360deg);
    }
}

/** end of banner cta loader **/
/* start of footer section */
.store-footer {
    margin-top: 0;
}

footer,
.store-footer__inner {
    background-color: #611717 !important;
    border-style: solid;
    border-bottom-color: transparent !important
}

footer .container {
    flex-wrap: wrap;
}

.store-footer {
    --text-color: white;
    --hover-opacity: 0.8;
    background-color: #270303 !important;

    & *,
    p {
        color: var(--text-color);
    }

    & svg {
        & * {
            fill: var(--text-color);
            stroke: var(--text-color);
        }
    }

    & a {
        color: var(--text-color);

        &:hover {
            opacity: var(--hover-opacity);
        }
    }

}

/** end of footer section **/

/** start of product page */
.product-single {
    .s-comments-product {
        background-color: white;
    }

    .s-slider-container,
    .swiper-slide::after {
        border: 0;
        box-shadow: 5px 5px 9px #fafafa,
            -5px -5px 9px #ffffff;
    }

    .s-add-product-button-main .s-button-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #ffc247 0%, var(--orange-cta) 50%, #e8921a 100%);
        color: black;
        font-size: 18px;
        font-weight: 800;
        padding: 20px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        box-shadow: 0 6px 30px rgba(245, 166, 35, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    @media (max-width: 1024px) {
        .s-add-product-button-main .s-button-primary {
            font-size: 14px;
            padding: 15px 5px;
        }
    }

    .s-add-product-button-main .s-button-primary::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 40%;
        height: 200%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transform: skewX(-20deg);
        animation: ctaShine 3s ease-in-out infinite;
    }

    @keyframes ctaShine {

        0%,
        100% {
            left: -60%;
        }

        50% {
            left: 120%;
        }
    }

    .s-add-product-button-main .s-button-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 40px rgba(245, 166, 35, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .s-add-product-button-main .s-button-primary:active {
        transform: translateY(0) scale(0.98);
    }

    .product-desc-accordion {
        margin-top: 20px;
        direction: rtl;
    }

    .product-desc-accordion__header {
        margin-inline: auto;
        display: flex;
        align-items: center;
        border-radius: 12px;
        justify-content: space-between;
        width: 97%;
        padding: 16px;
        background: #F5F5F5;
        box-shadow: 0px 0.63px 2.52px 0px rgba(0, 0, 0, 0.25);
        border: none;
        cursor: pointer;
        font-family: inherit;
    }

    .product-desc-accordion__title {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .product-desc-accordion__icon::after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-left: 2px solid #1a1a1a;
        border-bottom: 2px solid #1a1a1a;
        transform: rotate(-45deg);
        transition: transform 0.3s ease;
    }

    .product-desc-accordion.is-open .product-desc-accordion__icon::after {
        transform: rotate(135deg);
    }

    .product-desc-accordion__body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0;
    }

    .product-desc-accordion.is-open .product-desc-accordion__body {
        padding-bottom: 20px;
    }

    /** start of boxes-offer section **/
    .boxes-offer {
        padding: 24px;
        margin: 24px 0;
    }

    .boxes-offer-title {
        font-size: 18px;
        font-weight: 800;
        color: var(--maroon-dark);
        text-align: center;
        margin-bottom: 20px;
    }

    .boxes-offer-content {
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-direction: row-reverse;
        gap: 16px;
    }

    .boxes-offer-price-box {
        background: var(--maroon-dark);
        border-radius: 12px;
        padding: 20px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 120px;
    }

    .boxes-offer-price-old {
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: line-through;
        direction: ltr;
    }

    .boxes-offer-price-current {
        font-size: 28px;
        font-weight: 900;
        color: var(--white);
        direction: ltr;
    }

    .boxes-offer-equals {
        font-size: 24px;
        font-weight: 800;
        color: var(--maroon-dark);
        align-self: center;
    }

    .boxes-offer-products {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .boxes-offer-plus {
        font-size: 24px;
        font-weight: 800;
        color: var(--maroon-dark);
    }

    .boxes-offer-product {
        position: relative;
        background: var(--white);
        border-radius: 12px;
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        min-width: 120px;
        border: 1px solid #E5E5E5;
    }

    .boxes-offer-product:last-child {
        background-color: rgba(255, 175, 96, 1);
    }

    .boxes-offer-product-image {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

    .boxes-offer-product-name {
        font-size: 11px;
        font-weight: 600;
        color: #333;
        text-align: center;
        line-height: 1.4;
    }

    .boxes-offer-product-price-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        direction: ltr;
    }

    .boxes-offer-product-price {
        font-size: 14px;
        font-weight: 800;
        color: var(--maroon-dark);
        direction: ltr;
    }

    .boxes-offer-product-old-price {
        font-size: 12px;
        font-weight: 500;
        color: #999;
        text-decoration: line-through;
    }

    .boxes-offer-cta {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .boxes-offer-cta .hero-cta {
        padding: 14px 60px;
        font-size: 18px;
    }

    .boxes-offer-hidden-btn {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .boxes-offer-shipping {
        display: block;
        width: 100%;
        max-height: 23px;
        object-fit: contain;
        margin: 0 auto 16px;
    }

    @media (max-width: 1024px) {
        .boxes-offer {
            padding: 16px;
        }


        .boxes-offer-title {
            font-size: 16px;
            margin-bottom: 16px;
        }

        .boxes-offer-content {
            flex-wrap: wrap;
            gap: 12px;
            flex-direction: column-reverse;
            justify-content: center;
            align-items: center;
        }

        .boxes-offer-price-box {
            padding: 16px 20px;
            min-width: 100px;
            order: 1;
        }

        .boxes-offer-price-old {
            font-size: 14px;
        }

        .boxes-offer-price-current {
            font-size: 22px;
        }

        .boxes-offer-equals {
            font-size: 20px;
            order: 2;
        }

        .boxes-offer-products {
            gap: 8px;
            order: 3;
        }

        .boxes-offer-plus {
            font-size: 20px;
        }

        .boxes-offer-product {
            padding: 10px;
            min-width: 100px;
        }

        .boxes-offer-product-image {
            width: 60px;
            height: 60px;
        }

        .boxes-offer-product-name {
            font-size: 14px;
        }

        .boxes-offer-product-price-wrapper {
            flex-direction: column;
            gap: 2px;
        }

        .boxes-offer-product-price {
            font-size: 16px;
        }

        .boxes-offer-product-old-price {
            font-size: 14px;
        }

        .boxes-offer-cta .hero-cta {
            padding: 12px 40px;
            font-size: 16px;
            width: 100%;
            max-width: 300px;
        }
    }

    /** end of boxes-offer section **/
    .s-comments-item {
        background-color: #F5F5F5;
        border-radius: 19px;
        padding: 16px;
        box-shadow: 0px 0.63px 2.52px 0px #00000040;
    }
}

@media (max-width: 1024px) {

    .product-index .s-product-card-vertical .sicon-shopping-bag,
    .product-index-offers .s-product-card-vertical .sicon-shopping-bag {
        display: none;
    }

    .product-index .s-product-card-vertical .s-button-btn,
    .product-index-offers .s-product-card-vertical .s-button-btn {
        padding: .5rem;
    }

    .product-index .product-card-qty-value,
    .product-index-offers .product-card-qty-value {
        width: 28px;
        height: 28px;
    }

    .product-index .product-card-qty-btn,
    .product-index-offers .product-card-qty-btn {
        width: 28px;
    }

    .product-index .s-product-card-rating.rating-enhanced,
    .product-index-offers .s-product-card-rating.rating-enhanced {
        flex-direction: column;
    }
}

@media (max-width: 410px) {

    .product-index .product-card-qty-wrapper,
    .product-index-offers .product-card-qty-wrapper {
        flex-direction: column-reverse;
    }

    .product-index .s-product-card-vertical .s-button-btn,
    .product-index-offers .s-product-card-vertical .s-button-btn {
        padding: .5rem 1rem;
    }
}

/** end of product page */