:root {
    --brand: #2F4F2F;
    --brand-dark: #243d24;
    --brand-soft: #edf3ed;

    --bg: #F9F6F0;
    --bg-soft: #f3eee4;
    --surface: #ffffff;
    --surface-soft: #f8f4ec;

    --text: #2a2a26;
    --muted: #6f6a60;
    --border: #e5ddd0;

    --navy: #243764;
    --pill-bg: #dde4f1;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 34px;

    --container-width: 1440px;
    --shadow-soft: 0 10px 30px rgba(47, 79, 47, 0.08);

    --hero-panel-height: 760px;
    --hero-copy-left: 440px;
    --hero-copy-right: 520px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

body.ltr {
    direction: ltr;
    text-align: left;
}

body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container-width), 96%);
    margin-inline: auto;
}

main {
    min-height: 60vh;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.98;
    color: var(--brand);
    letter-spacing: -0.01em;
}

body.rtl h1,
body.rtl h2,
body.rtl h3 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(3rem, 4.1vw, 4.8rem);
}

h2 {
    font-size: clamp(2.9rem, 4vw, 4.7rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
}

p {
    color: var(--text);
}

/* Promo bar */
.promo-bar {
    background: var(--brand);
    color: #fff;
    text-align: center;
    padding-block: 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 42px;
}

.promo-bar-track {
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.promo-bar-slide {
    display: none;
    white-space: nowrap;
}

.promo-bar-slide.active {
    display: inline;
}

.promo-bar-arrow {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.promo-bar-arrow:hover {
    color: #fff;
}

/* Header */
.site-header {
    background: var(--bg);
    border-block-end: 1px solid var(--border);
}

.header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    min-height: 98px;
}

.header-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    height: 58px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}

.desktop-nav a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--brand);
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.desktop-search {
    display: flex;
    align-items: center;
}

.desktop-search input,
.mobile-search input {
    width: 170px;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #9c9c9c;
    padding: 0.35rem 0.2rem 0.5rem;
    outline: none;
    color: var(--text);
}

.desktop-search input::placeholder,
.mobile-search input::placeholder {
    color: #7f7f7f;
}

.tool-link {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tool-link:hover {
    color: var(--brand);
}

/* Cart count badge */
.cart-count-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: #c8860a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 9px;
    line-height: 1;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--brand);
    border-radius: 999px;
    overflow: hidden;
    background: var(--surface);
}

.language-switcher button {
    border: none;
    background: transparent;
    color: var(--brand);
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher button.active {
    background: var(--brand);
    color: white;
}

.mobile-menu-btn {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
}

.mobile-search-row,
.mobile-category-strip {
    display: none;
}

/* Mobile category chips */
.mobile-category-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-block: 1rem;
    scrollbar-width: none;
}

.mobile-category-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-chip {
    white-space: nowrap;
    background: var(--pill-bg);
    color: var(--navy);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Top hero */
.top-hero {
    padding: 0;
}

.top-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.promo-panel {
    min-height: var(--hero-panel-height);
    position: relative;
    overflow: hidden;
}

/* Left panel */
.promo-panel-light {
    background: #f4efe7;
    border-inline-end: 1px solid var(--bg);
}

.promo-panel-light .promo-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.promo-panel-light .promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-panel-light .promo-content {
    position: absolute;
    inset-block-start: 48px;
    inset-inline-start: 40px;
    z-index: 3;
    width: calc(100% - 80px);
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-panel-light .promo-copy-inner {
    width: 100%;
}

.promo-panel-light .promo-btn {
    margin-top: 1.8rem;
    background: var(--brand-dark);
    color: var(--bg);
    border: 1px solid var(--brand-dark);
}

.promo-panel-light .promo-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--bg);
}

/* Right panel */


.promo-panel-green {
    background: #14974f;
    position: relative;
    overflow: hidden;
}

.promo-panel-green .promo-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.promo-panel-green .promo-image-contain,
.promo-panel-green .promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-panel-green .promo-content {
    position: absolute;
    inset-block-start: 48px;
    inset-inline-start: 40px;
    z-index: 3;
    width: calc(100% - 80px);
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-panel-green h1,
.promo-panel-green h2,
.promo-panel-green h3,
.promo-panel-green p,
.promo-panel-green .promo-eyebrow {
    color: white;
}

.promo-panel-green .promo-btn {
    margin-top: 1.8rem;
    background: var(--bg);
    color: var(--brand-dark);
    border: 1px solid var(--bg);
}

.promo-panel-green .promo-btn:hover {
    background: #efe9dd;
    border-color: #efe9dd;
    color: var(--brand-dark);
}



.promo-media-product {
    padding: 0;
}

.promo-image-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

/* Shared promo text styling */
.promo-eyebrow {
    display: inline-block;
    margin-block-end: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand);
}

.promo-eyebrow-light {
    color: rgba(255, 255, 255, 0.95);
}

.promo-content h1,
.promo-content h2 {
    margin-block-end: 1rem;
    width: 100%;
    max-width: 100%;
}

.promo-panel-light h1 {
    font-size: clamp(3rem, 4.2vw, 4.9rem);
}

.promo-panel-green h2 {
    font-size: clamp(3rem, 4vw, 4.7rem);
}


.promo-content p {
    font-size: 1.02rem;
    line-height: 1.45;
    max-width: 34ch;
    margin-block-end: 0;
}

.promo-panel-green p {
    max-width: 30ch;
}


/* Promo buttons */
.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 64px;
    padding-inline: 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.promo-btn:hover {
    transform: translateY(-2px);
}


/* Hero carousel */
.hero-carousel-section {
    position: relative;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    background: #000;
}

.hero-carousel-track {
    position: relative;
    min-height: 760px;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.hero-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-carousel-media,
.hero-carousel-image {
    width: 100%;
    height: 100%;
}

.hero-carousel-image {
    object-fit: cover;
    object-position: center;
}

.hero-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.28) 45%,
        rgba(0, 0, 0, 0.36) 100%
    );
    z-index: 2;
}

.hero-carousel-content {
    position: absolute;
    z-index: 3;
    inset-inline-start: 48px;
    inset-block-start: 58px;
    max-width: 620px;
    color: #fff;
}

.hero-carousel-content h1,
.hero-carousel-content p,
.hero-carousel-content .hero-carousel-eyebrow {
    color: #fff;
}

.hero-carousel-content h1 {
    margin-bottom: 1rem;
    font-size: clamp(3.1rem, 4.4vw, 5.2rem);
}

.hero-carousel-content p {
    max-width: 30ch;
    font-size: 1.08rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-carousel-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-carousel-btn {
    background: var(--bg);
    color: var(--brand-dark);
    border: 1px solid var(--bg);
}

.hero-carousel-btn:hover {
    background: #efe9dd;
    border-color: #efe9dd;
    color: var(--brand-dark);
}

.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(6px);
}

.hero-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-carousel-prev {
    left: 20px;
}

.hero-carousel-next {
    right: 20px;
}

.hero-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-carousel-dot.active {
    background: #fff;
    transform: scale(1.12);
}

@media (max-width: 900px) {
    .hero-carousel,
    .hero-carousel-track {
        min-height: 620px;
    }

    .hero-carousel-content {
        inset-inline-start: 24px;
        inset-block-start: 34px;
        max-width: calc(100% - 48px);
    }

    .hero-carousel-content h1 {
        font-size: clamp(2.7rem, 8vw, 4rem);
        max-width: 8.6ch;
    }

    .hero-carousel-content p {
        max-width: 18ch;
        font-size: 1rem;
    }

    .hero-carousel-arrow {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 640px) {
    .hero-carousel,
    .hero-carousel-track {
        min-height: 540px;
    }

    .hero-carousel-content {
        inset-inline-start: 20px;
        inset-block-start: 28px;
        max-width: calc(100% - 40px);
    }

    .hero-carousel-content h1 {
        font-size: clamp(2.45rem, 9vw, 3.7rem);
        max-width: 8.2ch;
    }

    .hero-carousel-content p {
        max-width: 17ch;
    }

    .hero-carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .hero-carousel-prev {
        left: 12px;
    }

    .hero-carousel-next {
        right: 12px;
    }

    .hero-carousel-dots {
        bottom: 18px;
    }
}


/* Generic helpers */
.section {
    padding-block: 5rem;
}

.section-heading {
    max-width: 760px;
    margin-block-end: 2.5rem;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading-inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.text-link {
    color: var(--brand);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: opacity 0.2s ease;
}

.text-link:hover {
    opacity: 0.75;
}

/* Generic buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
    padding-inline: 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-secondary:hover {
    background: var(--brand-soft);
}

/* Footer */
.site-footer {
    background: var(--bg-soft);
    margin-block-start: 4rem;
    padding-block: 4rem;
    border-block-start: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.site-footer h4 {
    margin-block-end: 1rem;
    font-size: 1.1rem;
    color: var(--brand);
}

.site-footer ul {
    list-style: none;
}

.site-footer li + li {
    margin-block-start: 0.75rem;
}

.site-footer a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--brand);
}

/* Responsive */
@media (max-width: 1200px) {
    .desktop-nav {
        gap: 1.4rem;
    }

    .desktop-search input {
        width: 120px;
    }

    .promo-panel {
        min-height: 680px;
    }

	.promo-panel-light .promo-content,
	.promo-panel-green .promo-content {
		width: calc(100% - 64px);
		max-width: 620px;
		inset-block-start: 38px;
		inset-inline-start: 32px;
	}

    .promo-panel-green .promo-media {
        width: 76%;
        height: 44%;
        inset-inline-end: 18px;
    }

}

@media (max-width: 900px) {
    .header-row {
        grid-template-columns: auto 1fr auto;
        min-height: 86px;
        gap: 1rem;
    }

    .desktop-nav {
        display: none;
    }

    .desktop-search {
        display: none;
    }

    .tool-link span {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-block;
    }

    .mobile-search-row,
    .mobile-category-strip {
        display: block;
        border-top: 1px solid var(--border);
    }

    .mobile-search-inner {
        padding-block: 0.9rem;
    }

    .mobile-search input {
        width: 100%;
        max-width: 280px;
    }

    .top-hero-grid {
        grid-template-columns: 1fr;
    }

    .promo-panel {
        min-height: 580px;
    }

    .promo-panel-light .promo-content,
    .promo-panel-green .promo-content {
        position: absolute;
        inset-block-start: 32px;
        inset-inline-start: 24px;
        width: calc(100% - 48px);
        max-width: none;
    }

    .promo-panel-light h1,
    .promo-panel-green h2 {
        max-width: 8.8ch;
        font-size: clamp(2.7rem, 8vw, 4rem);
    }

    .promo-content p,
    .promo-panel-green p {
        max-width: 18ch;
        font-size: 1rem;
    }

    .promo-btn {
        min-width: 180px;
        min-height: 58px;
        margin-top: 1.35rem;
    }
	
	.promo-panel-green .promo-media {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}
	
    .site-logo {
        height: 46px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-row {
        min-height: 78px;
    }

    .site-logo {
        height: 42px;
    }

    .language-switcher {
        transform: scale(0.94);
        transform-origin: center;
    }

    .promo-panel {
        min-height: 540px;
    }

    .promo-panel-light .promo-content,
    .promo-panel-green .promo-content {
        inset-inline-start: 20px;
        inset-block-start: 28px;
        width: calc(100% - 40px);
    }

    .promo-panel-light h1,
    .promo-panel-green h2 {
        max-width: 8.4ch;
        font-size: clamp(2.45rem, 9vw, 3.7rem);
    }

    .promo-content p,
    .promo-panel-green p {
        max-width: 17ch;
    }

    .promo-btn {
        min-width: 168px;
        min-height: 54px;
    }
    .promo-panel-green .promo-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        inset-inline-end: auto;
    }

    .promo-panel-green .promo-image,
    .promo-panel-green .promo-image-contain {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .mobile-chip {
        padding: 0.75rem 1.25rem;
        font-size: 0.92rem;
    }

    .site-footer {
        padding-block: 3rem;
    }
}


/* Category slider section */
.category-slider-section {
    padding-block: 4.5rem;
    background: var(--bg);
}

.category-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-block-end: 1.5rem;
}

.category-slider-header h2 {
    color: var(--navy);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

.category-slider-arrows {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-arrow:hover {
    background: var(--brand-soft);
    color: var(--brand);
    border-color: var(--brand-soft);
}

.category-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 4 * 1.25rem) / 5);
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.category-slider-track::-webkit-scrollbar {
    display: none;
}

.category-slide {
    scroll-snap-align: start;
}

.category-slide-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    width: 100%;
    height: 340px;
    background: var(--surface-soft);
    box-shadow: var(--shadow-soft);
}

.category-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-slide-card:hover .category-slide-image {
    transform: scale(1.04);
}

.category-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 20, 20, 0.55) 0%,
        rgba(20, 20, 20, 0.14) 45%,
        rgba(20, 20, 20, 0.02) 100%
    );
}

.category-slide-content {
    position: absolute;
    inset-inline-start: 1.1rem;
    inset-inline-end: 1.1rem;
    inset-block-end: 1rem;
    z-index: 2;
}

.category-slide-content h3 {
    color: white;
    font-size: 1.55rem;
    line-height: 1.1;
    margin: 0;
}


/* Tablet */
@media (max-width: 1100px) {
    .category-slider-track {
        grid-auto-columns: calc((100% - 2 * 1rem) / 3);
        gap: 1rem;
    }

    .category-slide-card,
    .category-slide-image {
        min-height: 310px;
    }
}


/* Mobile */
@media (max-width: 700px) {
	body.rtl .category-slide-content h3 {
			font-size: 1.1rem;
			line-height: 1.2;
			font-weight: 700;
		}

    .category-slider-section {
        padding-block: 3.5rem;
    }

    .category-slider-header {
        margin-block-end: 1.2rem;
    }

    .category-slider-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .category-slider-arrows {
        display: none;
    }

    .category-slider-track {
        grid-auto-columns: calc((100% - 1rem) / 2.2);
        gap: 0.85rem;
    }

    .category-slide-card {
        height: 220px;
        min-height: 220px;
        border-radius: 20px;
    }

    .category-slide-image {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
    }

    .category-slide-content {
        inset-inline-start: 0.85rem;
        inset-inline-end: 0.85rem;
        inset-block-end: 0.8rem;
    }

    .category-slide-content h3 {
        font-size: 1.15rem;
        line-height: 1.15;
    }
}

/* Reviews / Social Proof slider */
.reviews-section {
    padding-block: 4.5rem;
    background: var(--bg-soft);
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(420px, 1fr);
    align-items: center;
    gap: 3rem;
}

.reviews-fixed {
    display: block;
}

.reviews-fixed-content {
    max-width: 360px;
}

.reviews-fixed-content h2 {
    color: var(--navy);
    font-size: clamp(2.6rem, 4vw, 4.6rem);
    line-height: 0.98;
    margin-bottom: 2rem;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 70px;
    padding-inline: 1.8rem;
    border-radius: 24px;
    background: var(--navy);
    color: white;
    font-weight: 700;
    transition: all 0.2s ease;
}

.reviews-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.reviews-slider-wrap {
    position: relative;
    min-height: 360px;
    overflow: visible;
    padding-inline: 56px;
}

.reviews-slider {
    position: relative;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
}

.review-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.7s ease;
}

.review-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

.review-slide.enter-from-right {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(100%);
    z-index: 3;
}

.review-slide.enter-from-left {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-100%);
    z-index: 3;
}

.review-slide.exit-to-left {
    opacity: 1;
    pointer-events: none;
    transform: translateX(-100%);
    z-index: 2;
}

.review-slide.exit-to-right {
    opacity: 1;
    pointer-events: none;
    transform: translateX(100%);
    z-index: 2;
}

.review-card-large {
    background: var(--surface);
    border-radius: 28px;
    padding: 3rem;
    min-height: 320px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card-large h3 {
    color: var(--navy);
    font-size: clamp(2rem, 2.4vw, 3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.review-card-large p {
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 30ch;
    margin-bottom: 1.2rem;
}

.review-stars {
    color: #d8a05f;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}

.review-card-large strong {
    color: var(--navy);
    font-size: 1.05rem;
}

.review-nav {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1.5px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-nav:hover {
    background: var(--navy);
    color: white;
}

.reviews-arrow-left,
.reviews-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.reviews-arrow-left {
    left: 8px;
}

.reviews-arrow-right {
    right: 8px;
}

/* Tablet */
@media (max-width: 1100px) {
    .reviews-layout {
        grid-template-columns: minmax(250px, 320px) minmax(320px, 1fr);
        gap: 2rem;
    }

    .reviews-slider-wrap {
        padding-inline: 56px;
    }

    .review-card-large {
        padding: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .reviews-section {
        padding-block: 3.5rem;
    }

    .reviews-layout {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
    }

    .reviews-fixed {
        display: block;
    }

    .reviews-fixed-content {
        max-width: none;
        text-align: center;
        margin-bottom: 0;
    }

    .reviews-fixed-content h2 {
        margin-bottom: 1.1rem;
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.05;
    }

    .reviews-cta {
        min-width: 200px;
        min-height: 56px;
    }

    .reviews-slider-wrap {
        position: relative;
        min-height: 320px;
        padding-inline: 0;
        overflow: visible;
    }

    .reviews-slider {
        position: relative;
        min-height: 320px;
        overflow: hidden;
        width: 100%;
    }

    .review-slide {
        position: absolute;
        inset: 0;
        width: 100%;
    }

    .review-card-large {
        padding: 1.4rem;
        min-height: 300px;
        border-radius: 20px;
        width: 100%;
    }

    .review-card-large h3 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.85rem;
    }

    .review-card-large p {
        max-width: none;
        font-size: 1rem;
        line-height: 1.6;
    }

    .review-stars {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .review-nav {
        position: absolute;
        top: auto;
        bottom: -22px;
        transform: none;
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
        z-index: 6;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 8px 20px rgba(36, 55, 100, 0.08);
    }

    .reviews-arrow-left,
    .reviews-arrow-right {
        position: absolute;
        top: auto;
        bottom: -22px;
        transform: none;
        z-index: 6;
    }

    body.ltr .reviews-arrow-left {
        left: 100px;
        right: auto;
    }

    body.ltr .reviews-arrow-right {
        right: 100px;
        left: auto;
    }

    body.rtl .reviews-arrow-left {
        right: 12px;
        left: auto;
    }

    body.rtl .reviews-arrow-right {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding-block: 3rem;
    }

    .reviews-fixed-content h2 {
        font-size: 2.4rem;
    }

    .reviews-cta {
        min-width: 185px;
        min-height: 52px;
        padding-inline: 1.25rem;
        border-radius: 20px;
    }

    .reviews-slider-wrap,
    .reviews-slider {
        min-height: 340px;
    }

    .review-card-large {
        padding: 1.2rem;
        min-height: 320px;
        border-radius: 18px;
    }

    .review-card-large h3 {
        font-size: 1.55rem;
    }

    .review-card-large p {
        font-size: 0.95rem;
    }

    .review-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        bottom: -20px;
    }

    body.ltr .reviews-arrow-left {
        left: 15px;
        right: auto;
        bottom: -20px;
    }

    body.ltr .reviews-arrow-right {
        right: 50px;
        left: auto;
        bottom: -20px;
    }

    body.rtl .reviews-arrow-left {
        right: 50px;
        left: auto;
        bottom: -20px;
    }

    body.rtl .reviews-arrow-right {
        left: 20px;
        right: auto;
        bottom: -20px;
    }
}


/* Best Sellers */
.best-sellers-section {
    padding-block: 5rem;
    background: var(--bg);
}

.best-sellers-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-block-end: 2rem;
}

.best-sellers-copy {
    max-width: 760px;
}

.best-sellers-copy h2 {
    margin-bottom: 1rem;
    color: var(--brand);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.best-sellers-copy p {
    color: var(--muted);
    max-width: 60ch;
    font-size: 1.02rem;
}

.best-sellers-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: end;
}

.best-sellers-tabs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.best-tab {
    min-height: 48px;
    padding-inline: 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.best-tab.active,
.best-tab:hover {
    background: var(--brand);
    color: var(--bg);
    border-color: var(--brand);
}

.best-sellers-arrows {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.best-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--brand);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.best-arrow:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
    border-color: var(--brand-soft);
}

.best-sellers-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2.2 * 1.2rem) / 3.2);
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.best-sellers-track::-webkit-scrollbar {
    display: none;
}

.best-slide {
    scroll-snap-align: start;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(47, 79, 47, 0.12);
}

.product-card-link {
    display: block;
    height: 100%;
}

.product-card-image-wrap {
    background: var(--surface-soft);
    height: 285px;
    overflow: hidden;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.03);
}

.product-card-body {
    padding: 1rem 1.1rem 1.2rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding-inline: 0.75rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.product-card-body h3 {
    color: var(--brand);
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.product-card-body p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
    min-height: 72px;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-price {
    color: var(--brand-dark);
    font-size: 1.05rem;
    font-weight: 700;
}

.product-link-text {
    color: var(--brand);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Responsive best sellers */
@media (max-width: 1200px) {
    .best-sellers-track {
        grid-auto-columns: calc((100% - 1.2rem) / 2.2);
    }

    .product-card-image-wrap {
        height: 265px;
    }
}

@media (max-width: 850px) {
    .best-sellers-header {
        flex-direction: column;
        align-items: start;
    }

    .best-sellers-controls {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 700px) {
    .best-sellers-section {
        padding-block: 4rem;
    }

    .best-sellers-track {
        grid-auto-columns: calc((100% - 0.85rem) / 1.2);
        gap: 0.85rem;
    }

    .product-card-image-wrap {
        height: 255px;
    }

    .product-card-body p {
        min-height: auto;
    }

    .best-sellers-copy h2 {
        font-size: clamp(2.1rem, 8vw, 3.2rem);
    }

    .best-sellers-arrows {
        display: none;
    }
}

/* =========================================
   Dynamic Tag Product Sections
========================================= */
.tag-products-section {
    padding: 56px 0 40px;
    background: #fbfaf8;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-title {
    margin: 0;
    color: #2d3d6b;
    font-size: clamp(2.1rem, 3.1vw, 3.8rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.section-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tag-arrow {
    width: 56px;
    height: 56px;
    border: none;
    background: transparent;
    color: #c6cad4;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.tag-arrow:hover {
    color: #2d3d6b;
    transform: scale(1.05);
}

.products-slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.products-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.products-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
}

/* =========================================
   Product Card
========================================= */
.product-card {
    min-width: 0;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #ece7df;
    border-radius: 26px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

/* Image area */
.product-media-wrap {
    position: relative;
    width: 100%;
    height: 560px;
    background: #f7f4ef;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Green discount circle */
.product-sale-circle {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #0e9c52;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Content */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 22px 18px;
    background: #ffffff;
    flex-grow: 1;
}

.product-value-label {
    margin: 0;
    color: #5d8e39;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
}

.product-title {
    margin: 0;
    color: #2d3d6b;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 700;
    min-height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.4;
}

.from-label {
    color: #445179;
    font-size: 0.95rem;
    font-weight: 500;
}

.old-price {
    color: #8c8c8c;
    font-size: 0.95rem;
    text-decoration: line-through;
}

.current-price {
    color: #2d3d6b;
    font-size: 1.05rem;
    font-weight: 800;
}

.discount-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 8px;
    background: #edf5e9;
    color: #5c8d3c;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
}

.product-short-text {
    margin: 2px 0 0;
    color: #697180;
    font-size: 0.98rem;
    line-height: 1.5;
    min-height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* RTL support */
html[dir="rtl"] .product-sale-circle {
    right: auto;
    left: 22px;
}

html[dir="rtl"] .product-info {
    text-align: right;
}

html[dir="rtl"] .product-price-row {
    justify-content: flex-start;
}

/* Tablet */
@media (max-width: 1200px) {
    .products-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .product-media-wrap {
        height: 480px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .tag-products-section {
        padding: 42px 0 28px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .tag-arrow {
        width: 42px;
        height: 42px;
        font-size: 2.2rem;
    }

    .products-track {
        grid-auto-columns: 86%;
        gap: 16px;
    }

    .product-card-link {
        border-radius: 20px;
    }

    .product-media-wrap {
        height: 360px;
    }

    .product-sale-circle {
        width: 82px;
        height: 82px;
        top: 14px;
        right: 14px;
        font-size: 0.82rem;
    }

    html[dir="rtl"] .product-sale-circle {
        right: auto;
        left: 14px;
    }

    .product-info {
        padding: 18px 16px 18px;
    }

    .product-title {
        min-height: auto;
        font-size: 1rem;
    }

    .product-short-text {
        min-height: auto;
        font-size: 0.92rem;
    }
}

.product-swatches {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 2px;
}

.product-swatches-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-swatch {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1.5px solid #d7d8dc;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-swatch:hover {
    transform: translateY(-1px);
    border-color: #2d3d6b;
}

.product-swatch.active {
    border-color: #2d3d6b;
    box-shadow: 0 0 0 2px rgba(45, 61, 107, 0.12);
}

.product-swatch-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    line-height: 1.1;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #445179;
    padding: 3px;
}

.product-available-sizes {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 28px;
}

.sizes-label {
    color: #5f6675;
    font-size: 0.9rem;
    font-weight: 600;
}

.sizes-values {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.size-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f2f4f7;
    color: #445179;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1;
}

html[dir="rtl"] .product-swatches-row,
html[dir="rtl"] .sizes-values,
html[dir="rtl"] .product-available-sizes {
    direction: rtl;
}



:root {
    --support-primary: #1f5f43;
    --support-primary-dark: #203820;
    --support-primary-soft: #456B45;

    --support-cream: #F9F6F0;
    --support-cream-dark: #EFE8DC;
    --support-cream-border: #E4DACB;

    --support-accent: #37DF5A;
    --support-text: #203820;
    --support-muted: #6F746C;

    --scroll-green: #0F7C5A;
    --scroll-green-dark: #075E45;
    --scroll-track: #E2E7E1;

    --support-white: #ffffff;
    --support-panel-bg: #F9F6F0;
    --support-border: #E4DACB;

    --support-shadow: 0 24px 70px rgba(47, 79, 47, 0.22);
    --support-transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Back To Top */
.back-to-top {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 68px;
    height: 68px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    z-index: 9998;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(16px) scale(0.94);
    pointer-events: none;
    transition: opacity var(--support-transition), transform var(--support-transition);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.03);
}

.back-to-top svg {
    position: absolute;
    inset: 0;
    width: 68px;
    height: 68px;
    transform: rotate(-90deg);
    filter: drop-shadow(0 12px 24px rgba(15, 124, 90, 0.16));
}

.back-to-top .progress-track {
    fill: var(--support-white);
    stroke: var(--scroll-track);
    stroke-width: 3.5;
}

.back-to-top .progress-fill {
    fill: none;
    stroke: var(--scroll-green);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 188.5;
    stroke-dashoffset: 188.5;
    transition: stroke-dashoffset 0.12s linear;
}

.back-to-top .arrow-shell {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--scroll-green-dark);
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.76)),
        linear-gradient(145deg, #ffffff, #f5fbf7);
    box-shadow:
        inset 0 0 0 1px rgba(15, 124, 90, 0.06),
        0 10px 24px rgba(15, 124, 90, 0.12);
}

.back-to-top .arrow-shell::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: rgba(15, 124, 90, 0.06);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity var(--support-transition), transform var(--support-transition);
}

.back-to-top:hover .arrow-shell::after {
    opacity: 1;
    transform: scale(1);
}

.back-to-top .arrow-icon {
    position: relative;
    z-index: 3;
    width: 25px;
    height: 25px;
    transition: transform var(--support-transition);
}

.back-to-top:hover .arrow-icon {
    transform: translateY(-2px);
}

/* Support Widget */
.support-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

.support-button {
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: grid;
    place-items: center;
    transition: transform var(--support-transition);
}

.support-button:hover {
    transform: scale(1.04);
}

.agent-bounce-wrapper {
    width: 92px;
    height: 92px;
    position: relative;
    border-radius: 50%;
    animation: supportBounce 2s infinite;
    transform-origin: center bottom;
    filter: drop-shadow(0 16px 26px rgba(47, 79, 47, 0.28));
    transition: opacity var(--support-transition), transform var(--support-transition);
}

@keyframes supportBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    15% { transform: translateY(-6px) scale(1.03); }
    30% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-3px) scale(1.015); }
    60% { transform: translateY(0) scale(1); }
}

.agent-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--support-cream), #ffffff);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(47, 79, 47, 0.16), inset 0 0 0 4px rgba(47, 79, 47, 0.08);
}

.agent-circle img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 2;
}

.agent-ring {
    position: absolute;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    z-index: 3;
    pointer-events: none;
}

.agent-ring circle.ring-main {
    fill: none;
    stroke: var(--support-primary);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 12 8;
    opacity: 0.95;
    animation: ringRotate 8s linear infinite;
    transform-origin: 50% 50%;
}

.agent-ring circle.ring-glow {
    fill: none;
    stroke: rgba(47, 79, 47, 0.22);
    stroke-width: 8;
    opacity: 0.9;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.availability-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--support-white);
    border: 3px solid #dff7e5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(47, 79, 47, 0.18);
    z-index: 5;
    animation: badgePulse 1.6s infinite;
}

.availability-badge::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(55, 223, 90, 0.28);
    animation: pulseRing 1.6s infinite;
}

.availability-badge svg {
    width: 15px;
    height: 15px;
    color: var(--support-primary);
    display: block;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    40% { transform: scale(1.08); }
}

@keyframes pulseRing {
    0% { opacity: 0.75; transform: scale(0.9); }
    70% { opacity: 0; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(1.5); }
}

.support-button-tooltip {
    position: absolute;
    right: 108px;
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(32, 56, 32, 0.95);
    color: var(--support-cream);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(47, 79, 47, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--support-transition), transform var(--support-transition);
}

.support-button-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(32, 56, 32, 0.95);
}

.support-widget:not(.active) .support-button:hover .support-button-tooltip {
    opacity: 1;
    transform: translateY(50%) translateX(-4px);
}

.icon-close {
    position: absolute;
    width: 58px;
    height: 58px;
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
    transition: transform var(--support-transition), opacity var(--support-transition);
    color: var(--support-cream);
    z-index: 10;
    background: linear-gradient(145deg, var(--support-primary), var(--support-primary-dark));
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 28px rgba(47, 79, 47, 0.28), inset 0 2px 8px rgba(255, 255, 255, 0.12);
}

.icon-close svg {
    width: 26px;
    height: 26px;
    display: block;
}

.support-widget.active .agent-bounce-wrapper {
    opacity: 0;
    transform: scale(0.4) rotate(90deg);
    animation: none;
    pointer-events: none;
}

.support-widget.active .icon-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.support-panel {
    width: 440px;
    max-height: calc(100vh - 120px);
    position: absolute;
    right: 0;
    bottom: 108px;
    border-radius: 24px;
    background: var(--support-panel-bg);
    overflow: hidden;
    box-shadow: var(--support-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(28px) scale(0.94);
    transition: opacity var(--support-transition), transform var(--support-transition);
}

.support-widget.active .support-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.support-header {
    background: radial-gradient(circle at 18% 0%, rgba(249, 246, 240, 0.12), transparent 28%), linear-gradient(145deg, var(--support-primary), var(--support-primary-dark));
    color: var(--support-cream);
    padding: 22px 22px 32px;
}

.brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--support-cream);
    color: var(--support-primary);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-family: Georgia, serif;
    box-shadow: 0 8px 18px rgba(32, 56, 32, 0.14);
}

.brand-name {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.mini-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(249, 246, 240, 0.14);
    color: var(--support-cream);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background var(--support-transition), transform var(--support-transition);
}

.mini-btn:hover {
    background: rgba(249, 246, 240, 0.24);
    transform: scale(1.05);
}

.support-title {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.8px;
    color: var(--support-cream);
}

.wave {
    animation: wave 1.8s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(18deg); }
    40% { transform: rotate(-8deg); }
    60% { transform: rotate(12deg); }
    80% { transform: rotate(-4deg); }
}

.support-body {
    padding: 0 20px 18px;
    margin-top: -20px;
    max-height: calc(100vh - 290px);
    overflow-y: auto;
}

.support-body::-webkit-scrollbar {
    width: 8px;
}
.support-body::-webkit-scrollbar-track {
    background: transparent;
}
.support-body::-webkit-scrollbar-thumb {
    background: rgba(47, 79, 47, 0.22);
    border-radius: 999px;
}

.chat-card {
    background: var(--support-white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 18px 35px rgba(47, 79, 47, 0.11);
    margin-bottom: 20px;
    border: 1px solid rgba(228, 218, 203, 0.7);
}

.agent-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.agent-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(47, 79, 47, 0.15);
    border: 2px solid rgba(47, 79, 47, 0.12);
    background: var(--support-cream);
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.online-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 8px;
    background: #eaffef;
    color: #19bf3e;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--support-accent);
    box-shadow: 0 0 0 5px rgba(55, 223, 90, 0.13);
}

.chat-card p {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--support-text);
}

.start-chat {
    width: 100%;
    border: 0;
    background: var(--support-primary);
    color: var(--support-cream);
    border-radius: 10px;
    padding: 16px 58px 16px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    transition: background var(--support-transition), transform var(--support-transition);
}

.start-chat:hover {
    background: var(--support-primary-dark);
    transform: translateY(-1px);
}

.send-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(249, 246, 240, 0.15);
    display: grid;
    place-items: center;
}

.support-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 900;
    margin: 22px 0 14px;
    color: var(--support-text);
}

.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--support-cream-dark);
    color: var(--support-primary);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(47, 79, 47, 0.06);
}

.channels {
    display: grid;
    gap: 10px;
}

.channel {
    width: 100%;
    border: 1px solid var(--support-border);
    background: var(--support-white);
    border-radius: 14px;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    color: var(--support-text);
    text-decoration: none;
    transition: transform var(--support-transition), box-shadow var(--support-transition), border-color var(--support-transition);
}

.channel:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 79, 47, 0.26);
    box-shadow: 0 12px 25px rgba(47, 79, 47, 0.1);
}

.channel-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    color: var(--support-white);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 35px;
    line-height: 1;
}

.channel-icon svg {
    width: 35px;
    height: 35px;
    display: block;
}


.channel-content {
    flex: 1;
    text-align: left;
}

.channel-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.channel-content span {
    font-size: 13px;
    color: var(--support-muted);
}

.arrow {
    color: var(--support-primary);
    font-size: 22px;
    line-height: 1;
}

.whatsapp { background: #31d366; }
.facebook { background: #1877f2; }
.instagram { background: radial-gradient(circle at 30% 110%, #feda75, #fa7e1e 25%, #d62976 52%, #962fbf 75%, #4f5bd5); }
.tiktok { background: #111; }
.telegram { background: #2aabee; }
.email { background: #c8963e; }
.form { background: var(--support-primary); }
.phone { background: var(--support-primary-soft); }

.form-view {
    display: none;
    background: var(--support-white);
    border-radius: 18px;
    padding: 18px;
    margin-top: 16px;
    box-shadow: 0 14px 30px rgba(47, 79, 47, 0.09);
    border: 1px solid rgba(228, 218, 203, 0.75);
}

.form-view.active {
    display: block;
    animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.form-header h3 {
    color: var(--support-text);
    font-size: 18px;
}

.close-form {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--support-cream-dark);
    color: var(--support-primary);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.support-form {
    display: grid;
    gap: 10px;
}

.support-form input,
.support-form textarea {
    width: 100%;
    border: 1px solid var(--support-border);
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    outline: none;
    background: #fffdf9;
    color: var(--support-text);
    transition: border-color var(--support-transition), box-shadow var(--support-transition);
}

.support-form input::placeholder,
.support-form textarea::placeholder {
    color: rgba(111, 116, 108, 0.78);
}

.support-form input:focus,
.support-form textarea:focus {
    border-color: var(--support-primary);
    box-shadow: 0 0 0 4px rgba(47, 79, 47, 0.09);
}

.support-form textarea {
    min-height: 95px;
    resize: vertical;
}

.submit-form {
    border: 0;
    border-radius: 12px;
    background: var(--support-primary);
    color: var(--support-cream);
    padding: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background var(--support-transition), transform var(--support-transition);
}

.submit-form:hover {
    background: var(--support-primary-dark);
    transform: translateY(-1px);
}

.powered {
    text-align: center;
    color: rgba(111, 116, 108, 0.64);
    font-size: 12px;
    margin-top: 14px;
}

.powered strong {
    color: var(--support-primary);
}

.toast {
    position: fixed;
    right: 24px;
    bottom: 120px;
    background: var(--support-primary-dark);
    color: var(--support-cream);
    padding: 13px 16px;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(47, 79, 47, 0.28);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity var(--support-transition), transform var(--support-transition);
    z-index: 10000;
    font-size: 14px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .support-widget { right: 18px; bottom: 18px; }
    .back-to-top {
		left: max(18px, env(safe-area-inset-left));
		bottom: 18px;
		width: 62px;
		height: 62px;
	}
	
    .back-to-top svg { width: 62px; height: 62px; }
    .back-to-top .arrow-shell { width: 48px; height: 48px; }
    .support-panel { width: min(420px, calc(100vw - 36px)); bottom: 104px; }
    .support-title { font-size: 29px; }
    .support-body { max-height: calc(100vh - 270px); }
    .support-button { width: 84px; height: 84px; }
    .agent-bounce-wrapper, .agent-circle { width: 84px; height: 84px; }
    .agent-circle img { width: 76px; height: 76px; }
    .support-button-tooltip { display: none; }
}

@media (max-width: 480px) {

	.support-widget { right: 14px; bottom: 14px; }
	.back-to-top {
		left: max(14px, env(safe-area-inset-left));
		bottom: 14px;
		width: 58px;
		height: 58px;
	}
    .back-to-top svg { width: 58px; height: 58px; }
    .back-to-top .arrow-shell { width: 44px; height: 44px; }
    .back-to-top .arrow-icon { width: 22px; height: 22px; }
    .support-button { width: 74px; height: 74px; }
    .agent-bounce-wrapper, .agent-circle { width: 74px; height: 74px; }
    .agent-circle img { width: 68px; height: 68px; }
    .availability-badge { min-width: 28px; height: 28px; }
    .availability-badge svg { width: 14px; height: 14px; }
    .icon-close { width: 52px; height: 52px; }
    .icon-close svg { width: 23px; height: 23px; }
    .support-panel {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 86px;
        width: auto;
        max-height: calc(100vh - 95px);
        border-radius: 22px;
    }
    .support-header { padding: 18px 18px 28px; }
    .support-title { font-size: 26px; }
    .support-body { padding: 0 14px 16px; max-height: calc(100vh - 245px); }
    .chat-card { padding: 16px; }
    .channel { padding: 13px 14px; }
    .channel-icon { width: 42px; height: 42px; min-width: 42px; }
	.channel-icon svg {
		width: 35px;
		height: 35px;
	}
    .channel-content strong { font-size: 15px; }
    .channel-content span { font-size: 12px; }
    .toast { right: 14px; left: 14px; bottom: 96px; }
}

@media (max-width: 360px) {
    .support-title { font-size: 23px; }
    .brand-name { display: none; }
    .channel-content span { display: none; }
    .channel { gap: 10px; }
}

html[dir="rtl"] .support-panel {
    direction: rtl;
}

html[dir="rtl"] .channel-content,
html[dir="rtl"] .start-chat,
html[dir="rtl"] .support-title,
html[dir="rtl"] .chat-card p {
    text-align: right;
}

html[dir="rtl"] .support-button-tooltip {
    right: auto;
    left: 108px;
}

html[dir="rtl"] .support-button-tooltip::after {
    right: auto;
    left: -6px;
}

html[dir="rtl"] .send-icon {
    right: auto;
    left: 10px;
}

html[dir="rtl"] .arrow {
    transform: scaleX(-1);
}


@media (max-width: 700px) {
    .category-slider-section {
        padding-bottom: 5.5rem;
    }

    .reviews-section,
    .tag-products-section,
    .best-sellers-section {
        padding-bottom: 5.5rem;
    }

    .support-widget {
        right: 16px;
        bottom: 16px;
    }

    .back-to-top {
        left: 16px;
        bottom: 16px;
    }
}

/* ── Reviews stat ── */
.reviews-stat {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.65;
    margin-block-end: 0.6rem;
}

/* ── Product badge variants ── */
.product-value-label-sale {
    color: #c0392b;
}

/* ── Footer top row ── */
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    padding-block-end: 2.5rem;
    border-block-end: 1px solid var(--border);
    margin-block-end: 2.5rem;
}

.footer-newsletter h4,
.footer-social h4 {
    margin-block-end: 0.75rem;
    font-size: 0.95rem;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-block-end: 1rem;
}

.footer-email-form {
    display: flex;
    gap: 0;
    max-width: 360px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.footer-email-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    background: var(--surface);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    min-width: 0;
}

.footer-email-form input::placeholder {
    color: var(--muted);
}

.footer-email-form button {
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 0.65rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.footer-email-form button:hover {
    background: var(--brand-dark);
}

/* ── Footer social icons ── */
.footer-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social-link svg {
    width: 17px;
    height: 17px;
}

.footer-social-link:hover {
    color: var(--brand);
    border-color: var(--brand);
    background: var(--brand-soft);
}

/* ── Footer bottom ── */
.footer-bottom {
    margin-block-start: 2rem;
    padding-block-start: 1.25rem;
    border-block-start: 1px solid var(--border);
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── Footer responsive ── */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-email-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .category-slider-section {
        padding-bottom: 6.2rem;
    }

    .reviews-section,
    .tag-products-section,
    .best-sellers-section {
        padding-bottom: 6.2rem;
    }

    .support-widget {
        right: 14px;
        bottom: 14px;
    }

    .back-to-top {
        left: 14px;
        bottom: 14px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding-block: 3rem;
    }

    .reviews-fixed-content h2 {
        font-size: 2.4rem;
    }

    .reviews-cta {
        min-width: 185px;
        min-height: 52px;
        padding-inline: 1.25rem;
        border-radius: 20px;
    }

    .reviews-slider-wrap,
    .reviews-slider {
        min-height: 340px;
    }

    .review-card-large {
        padding: 1.2rem;
        min-height: 320px;
        border-radius: 18px;
    }

    .review-card-large h3 {
        font-size: 1.55rem;
    }

    .review-card-large p {
        font-size: 0.95rem;
    }

    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .reviews-arrow-left {
        left: 10px;
    }

    .reviews-arrow-right {
        right: 150px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding-bottom: 4.5rem;
    }
}


/* Mobile only: reverse review arrows direction in Arabic */
@media (max-width: 800px) {
    body.rtl .reviews-arrow-left,
    body.rtl .reviews-arrow-right {
        transform: scaleX(-1);
    }
}

/* Mobile only: reverse review arrows direction in Arabic */
@media (max-width: 480px) {
    body.rtl .reviews-arrow-left,
    body.rtl .reviews-arrow-right {
        transform: scaleX(-1);
    }
}


/* Prevent mobile tap flash on swatches and product cards */
.product-card,
.product-card-link,
.product-swatch,
.product-swatch img,
.wishlist-btn {
    -webkit-tap-highlight-color: transparent;
}

.product-swatch,
.wishlist-btn {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

.product-card-link:focus,
.product-card-link:active,
.product-swatch:focus,
.product-swatch:active {
    outline: none;
    box-shadow: none;
}


/* Hero carousel mobile layout polish */
@media (max-width: 640px) {
    .hero-carousel-content {
        inset-inline-start: 20px;
        inset-inline-end: 20px;
        inset-block-start: 26px;
        max-width: none;
        width: auto;
    }

    .hero-carousel-content h1 {
        max-width: none;
        width: 100%;
        font-size: clamp(2.4rem, 8.6vw, 3.5rem);
        line-height: 1.08;
        margin-bottom: 0.8rem;
    }

    .hero-carousel-content p {
        max-width: none;
        width: 100%;
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 1.15rem;
    }

    .hero-carousel-eyebrow {
        margin-bottom: 0.8rem;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .hero-carousel-btn {
        min-width: 170px;
        min-height: 54px;
        padding-inline: 1.35rem;
    }

    .hero-carousel-dots {
        bottom: 88px;
    }
}


@media (max-width: 640px) {
    body.rtl .hero-carousel-content {
        text-align: right;
    }

    body.rtl .hero-carousel-content h1,
    body.rtl .hero-carousel-content p,
    body.rtl .hero-carousel-content .hero-carousel-eyebrow {
        max-width: none;
        width: 100%;
    }

    body.rtl .hero-carousel-btn {
        align-self: flex-start;
    }
}

/* ── Value strip ── */
.value-strip {
    background: var(--brand-dark);
    color: #fff;
    padding-block: 1rem;
}

.value-strip-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    list-style: none;
    flex-wrap: wrap;
}

.value-strip-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.5rem 2.5rem;
    border-inline-end: 1px solid rgba(255,255,255,0.18);
}

.value-strip-item:last-child {
    border-inline-end: none;
}

.value-strip-item svg {
    flex-shrink: 0;
    opacity: 0.85;
}

@media (max-width: 860px) {
    .value-strip-item {
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 600px) {
    .value-strip-list {
        flex-direction: column;
        gap: 0.6rem;
        padding-block: 0.4rem;
    }
    .value-strip-item {
        border-inline-end: none;
        width: 100%;
        justify-content: center;
    }
}

/* ── Why Jocka section ── */
.why-jocka-section {
    padding-block: 3rem;
    background: var(--surface-soft);
}

.why-jocka-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-block-end: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.why-jocka-sub {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    margin-block-end: 3.5rem;
    font-style: italic;
}

.why-jocka-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-jocka-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.why-jocka-card:hover {
    box-shadow: var(--shadow-soft);
}

.why-jocka-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--brand);
}

.why-jocka-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-block-end: 0.75rem;
}

.why-jocka-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .why-jocka-section {
        padding-block: 2rem;
    }
    .why-jocka-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .why-jocka-card {
        padding: 2rem 1.5rem;
    }
}

body.rtl .why-jocka-heading {
    font-family: 'Cairo', sans-serif;
    text-align: center;
}

body.rtl .why-jocka-sub,
body.rtl .why-jocka-card {
    text-align: center;
}
