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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Microsoft YaHei",
        Arial,
        sans-serif;

    background: #f7f5ef;
    color: #2f2a22;
    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================
   Header
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    min-height: 76px;

    z-index: 1000;

    display: flex;
    align-items: center;

    padding: 14px 6%;

    background: rgba(47, 42, 34, 0.96);

    color: #fff;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo {
    flex-shrink: 0;

    color: #fff;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: 2px;

    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
    margin-right: 30px;
}

.nav a {
    position: relative;

    color: #fff;

    font-size: 14px;

    opacity: 0.9;

    white-space: nowrap;
}

.nav a:hover {
    opacity: 1;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: #c4a979;

    transition: width 0.25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-button {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 10px 24px;

    border-radius: 30px;

    background: #25d366;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}

.header-button:hover {
    background: #128c7e;
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    border-radius: 8px;

    background: transparent;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    cursor: pointer;
}

.menu-toggle span {
    width: 23px;
    height: 2px;

    background: #fff;

    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================
   Hero
========================= */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        url("images/hero.jpg")
        center center / cover
        no-repeat;

    color: #fff;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.64),
            rgba(0, 0, 0, 0.34),
            rgba(0, 0, 0, 0.12)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 760px;

    margin-left: 8%;
    margin-right: 8%;

    padding-top: 76px;
}

.eyebrow {
    margin-bottom: 18px;

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 600;
}

.hero h1 {
    margin-bottom: 24px;

    font-size:
        clamp(42px, 5vw, 72px);

    line-height: 1.2;

    letter-spacing: 2px;
}

.hero-description {
    max-width: 560px;

    font-size: 18px;

    line-height: 2;

    opacity: 0.95;
}


/* =========================
   Features
========================= */

.features {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: #fff;

    border-bottom:
        1px solid #e5e1d8;
}

.feature {
    padding: 45px 30px;

    text-align: center;

    border-right:
        1px solid #e5e1d8;
}

.feature:last-child {
    border-right: 0;
}

.feature-number {
    display: block;

    margin-bottom: 12px;

    font-size: 13px;

    letter-spacing: 2px;

    color: #8b7655;
}

.feature h3 {
    margin-bottom: 8px;

    font-size: 19px;
}

.feature p {
    color: #777064;

    font-size: 14px;
}


/* =========================
   Common
========================= */

.section-heading {
    max-width: 760px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 20px;

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.3;
}

.section-heading p {
    color: #716b61;

    font-size: 16px;
}


/* =========================
   Trees
========================= */

.trees-section {
    padding: 100px 7%;

    background: #f7f5ef;
}

.tree-slider {
    position: relative;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 14px;

    background: #e8e3d8;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.1);

    touch-action: pan-y;
}

.tree-track {
    display: flex;

    width: 100%;

    transform:
        translate3d(0, 0, 0);

    will-change: transform;

    transition:
        transform 0.45s ease;
}

.tree-slide {
    position: relative;

    flex: 0 0 100%;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #e8e3d8;
}

.tree-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    cursor: zoom-in;
}

.tree-slide-empty {
    display: flex;

    align-items: center;
    justify-content: center;
}

.empty-slide {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #e8e3d8,
            #dcd5c7
        );

    color: #807666;

    font-size: 15px;

    text-align: center;
}

.slider-button,
.review-button {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 20;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(47, 42, 34, 0.82);

    color: #fff;

    font-size: 34px;

    line-height: 1;

    cursor: pointer;
}

.slider-button:hover,
.review-button:hover {
    background: #c4a979;

    color: #28241e;
}

.slider-prev {
    left: 18px;
}

.slider-next {
    right: 18px;
}

.slider-dots,
.review-dots {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 25px;
}

.slider-dot,
.review-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cfc7b8;

    cursor: pointer;
}

.slider-dot.active,
.review-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #8b7655;
}


/* =========================
   Video
========================= */

.video-section {
    padding: 100px 7%;

    background: #28241e;

    color: #fff;

    text-align: center;
}

.video-content {
    max-width: 700px;

    margin:
        0 auto 40px;
}

.video-eyebrow,
.contact-eyebrow,
.shipping-eyebrow {
    margin-bottom: 12px;

    color: #c4a979;

    font-size: 12px;

    letter-spacing: 3px;
}

.video-content h2 {
    margin-bottom: 18px;

    font-size:
        clamp(32px, 4vw, 48px);
}

.video-content p:last-child {
    color:
        rgba(255, 255, 255, 0.72);

    font-size: 15px;
}

.video-placeholder {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 14px;

    background: #000;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}

.video-placeholder video {
    display: block;

    width: 100%;
    max-height: 600px;

    background: #000;
}


/* =========================
   Products
========================= */

.products-section {
    padding: 100px 7%;

    background: #fff;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;

    max-width: 1000px;

    margin: 0 auto;
}

.product-card {
    overflow: hidden;

    background: #f8f6f1;

    border:
        1px solid #e6e0d5;

    border-radius: 14px;
}

.product-image {
    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    cursor: zoom-in;

    transition:
        transform 0.5s ease;
}

.product-card:hover
.product-image img {
    transform:
        scale(1.04);
}

.section-cta {
    display: flex;

    justify-content: center;

    margin-top: 42px;
}

.secondary-cta,
.shipping-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 14px 30px;

    border-radius: 30px;

    background: #25d366;

    color: #fff;

    font-size: 16px;

    font-weight: 700;
}

.secondary-cta:hover,
.shipping-button:hover {
    background: #128c7e;
}


/* =========================
   Shipping
========================= */

.shipping-section {
    padding: 100px 7%;

    background: #f7f5ef;
}

.shipping-content {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 40px;

    max-width: 1100px;

    margin: 0 auto;
}

.shipping-info {
    display: grid;

    gap: 20px;
}

.shipping-item {
    padding: 28px;

    background: #fff;

    border:
        1px solid #e5e1d8;

    border-radius: 14px;
}

.shipping-number {
    display: block;

    margin-bottom: 8px;

    color: #8b7655;

    font-size: 13px;

    letter-spacing: 2px;
}

.shipping-item h3 {
    margin-bottom: 8px;

    font-size: 20px;
}

.shipping-item p {
    color: #716b61;

    font-size: 14px;
}

.shipping-promotion {
    overflow: hidden;

    background: #fff;

    border:
        1px solid #e5e1d8;

    border-radius: 14px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06);
}

.shipping-promotion-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;
}

.shipping-promotion-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    cursor: zoom-in;
}

.shipping-image-empty {
    display: flex;

    align-items: center;
    justify-content: center;
}

.empty-promotion {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #e8e3d8,
            #dcd5c7
        );

    color: #807666;

    font-size: 15px;

    text-align: center;
}

.shipping-promotion-text {
    padding: 30px;
}

.shipping-promotion-text h3 {
    margin-bottom: 12px;

    font-size: 24px;
}

.shipping-promotion-text p {
    margin-bottom: 24px;

    color: #716b61;
}


/* =========================
   Reviews
========================= */

.reviews-section {
    padding: 100px 7%;

    background: #f7f5ef;
}

.review-slider {
    position: relative;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);

    touch-action: pan-y;
}

.review-track {
    display: flex;

    width: 100%;

    transform:
        translate3d(0, 0, 0);

    will-change: transform;

    transition:
        transform 0.45s ease;
}

.review-slide {
    flex: 0 0 100%;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;
}

.review-slide img {
    width: 100%;
    max-height: 700px;

    object-fit: contain;

    cursor: zoom-in;
}

.review-prev {
    left: 15px;
}

.review-next {
    right: 15px;
}


/* =========================
   Contact
========================= */

.contact-section {
    padding: 110px 7%;

    background: #28241e;

    color: #fff;

    text-align: center;
}

.contact-content {
    max-width: 650px;

    margin: 0 auto;
}

.contact-content h2 {
    margin-bottom: 20px;

    font-size:
        clamp(34px, 4vw, 52px);
}

.contact-content p {
    margin-bottom: 35px;

    color:
        rgba(255, 255, 255, 0.75);
}

.whatsapp-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 270px;
    min-height: 66px;

    padding: 18px 40px;

    border-radius: 36px;

    background: #25d366;

    color: #fff;

    font-size: 19px;

    font-weight: 700;

    box-shadow:
        0 10px 30px
        rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #128c7e;
}


/* =========================
   Footer
========================= */

.footer {
    padding: 35px 7%;

    background: #1d1a16;

    color:
        rgba(255, 255, 255, 0.7);

    text-align: center;
}

.footer-logo {
    margin-bottom: 18px;

    color: #fff;

    font-size: 20px;

    font-weight: 700;
}

.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-bottom: 15px;
}

.footer-links a {
    font-size: 13px;
}

.footer-links a:hover {
    color: #c4a979;
}

.footer p {
    font-size: 12px;

    color:
        rgba(255, 255, 255, 0.45);
}


/* =========================
   Image Lightbox
========================= */

.image-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(0, 0, 0, 0.94);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.image-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.lightbox-image-wrap {
    width: min(92vw, 1200px);

    height: min(88vh, 900px);

    display: flex;

    align-items: center;
    justify-content: center;
}

.lightbox-image-wrap img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 4px;

    user-select: none;

    -webkit-user-drag: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    z-index: 10000;

    border: 0;

    color: #fff;

    background:
        rgba(0, 0, 0, 0.45);

    cursor: pointer;
}

.lightbox-close {
    top: 18px;
    right: 22px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    font-size: 34px;

    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;

    transform:
        translateY(-50%);

    width: 54px;
    height: 70px;

    font-size: 46px;

    line-height: 1;
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #c4a979;

    color: #28241e;
}


/* =========================
   Tablet
========================= */

@media (max-width: 1000px) {

    .header {
        padding: 14px 4%;
    }

    .nav {
        gap: 18px;

        margin-right: 18px;
    }

    .nav a {
        font-size: 13px;
    }

    .header-button {
        padding: 9px 18px;

        font-size: 13px;
    }

    .features {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .feature:nth-child(2) {
        border-right: 0;
    }

    .shipping-content {
        grid-template-columns: 1fr;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 700px) {

    html {
        scroll-padding-top: 64px;
    }

    body {
        width: 100%;
        overflow-x: hidden;
    }


    /* Header */

    .header {
        min-height: 64px;

        width: 100%;

        padding:
            10px 4%;

        display: flex;

        align-items: center;
    }

    .logo {
        font-size: 17px;

        letter-spacing: 1px;
    }

    .header-button {
        min-height: 40px;

        margin-left: auto;

        padding:
            8px 15px;

        font-size: 12px;
    }

    .menu-toggle {
        display: flex;

        flex-shrink: 0;

        margin-left: 8px;
    }


    /* Mobile Navigation */

    .nav {
        position: absolute;

        top: 64px;
        left: 0;

        width: 100%;

        margin: 0;

        padding: 8px 0;

        display: flex;

        flex-direction: column;

        gap: 0;

        background:
            rgba(47, 42, 34, 0.98);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-8px);

        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;
    }

    .nav.mobile-open {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }

    .nav a {
        width: 100%;

        padding:
            14px 6%;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.07);

        font-size: 15px;
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .nav a::after {
        display: none;
    }


    /* Hero */

    .hero {
        min-height: 100svh;

        background-position:
            center center;
    }

    .hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.68),
                rgba(0, 0, 0, 0.38)
            );
    }

    .hero-content {
        width: 100%;

        margin: 0;

        padding:
            80px 6% 40px;
    }

    .eyebrow {
        margin-bottom: 14px;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero h1 {
        margin-bottom: 20px;

        font-size: 38px;

        line-height: 1.25;

        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 15px;

        line-height: 1.8;
    }


    /* Features */

    .features {
        grid-template-columns:
            1fr 1fr;
    }

    .feature {
        padding:
            28px 12px;
    }

    .feature:nth-child(3),
    .feature:nth-child(4) {
        border-top:
            1px solid #e5e1d8;
    }

    .feature:nth-child(3) {
        border-right:
            1px solid #e5e1d8;
    }

    .feature h3 {
        font-size: 16px;
    }

    .feature p {
        font-size: 12px;

        line-height: 1.6;
    }


    /* Sections */

    .trees-section,
    .products-section,
    .reviews-section,
    .shipping-section {
        padding:
            70px 5%;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 14px;

        line-height: 1.8;
    }


    /* Tree Slider */

    .tree-slider {
        width: 100%;

        border-radius: 10px;
    }

    .tree-track {
        width: 100%;
    }

    .tree-slide {
        flex: 0 0 100%;

        width: 100%;

        aspect-ratio: 1 / 1;
    }

    .slider-button,
    .review-button {
        width: 40px;
        height: 40px;

        font-size: 28px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }


    /* Video */

    .video-section {
        padding:
            70px 5%;
    }

    .video-content {
        margin-bottom: 30px;
    }

    .video-content h2 {
        font-size: 32px;
    }

    .video-content p:last-child {
        font-size: 14px;

        line-height: 1.8;
    }

    .video-placeholder {
        border-radius: 10px;
    }


    /* Products */

    .product-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 12px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-card:hover
    .product-image img {
        transform: none;
    }

    .section-cta {
        margin-top: 30px;
    }

    .secondary-cta {
        width: 100%;
    }


    /* Shipping */

    .shipping-content {
        gap: 20px;
    }

    .shipping-item {
        padding: 22px;
    }

    .shipping-promotion-text {
        padding: 24px;
    }


    /* Reviews */

    .review-slider {
        border-radius: 10px;
    }

    .review-prev {
        left: 8px;
    }

    .review-next {
        right: 8px;
    }


    /* Contact */

    .contact-section {
        padding:
            80px 5%;
    }

    .contact-content h2 {
        font-size: 36px;
    }

    .contact-content p {
        font-size: 14px;

        line-height: 1.8;
    }

    .whatsapp-button {
        width: 100%;

        min-width: 0;

        min-height: 64px;

        padding:
            17px 25px;

        font-size: 18px;
    }


    /* Footer */

    .footer {
        padding:
            30px 5%;
    }

    .footer-links {
        gap:
            12px 18px;
    }

    .footer-links a {
        font-size: 12px;
    }


    /* Lightbox */

    .image-lightbox {
        padding: 15px;
    }

    .lightbox-image-wrap {
        width: 94vw;

        height: 82vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;

        width: 44px;
        height: 44px;

        font-size: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 38px;
        height: 56px;

        font-size: 34px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

}


/* =========================
   Small Mobile
========================= */

@media (max-width: 380px) {

    .logo {
        font-size: 15px;
    }

    .header-button {
        padding:
            7px 12px;

        font-size: 11px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
    }

    .feature {
        padding:
            25px 8px;
    }

    .feature h3 {
        font-size: 15px;
    }

    .feature p {
        font-size: 11px;
    }

    .product-grid {
        gap: 8px;
    }

}


/* =========================
   Reduced Motion
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}/* =========================
   Arabic RTL Support
========================= */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}


/* =========================
   Header RTL
========================= */

html[dir="rtl"] .header {
    direction: rtl;
}

html[dir="rtl"] .nav {
    margin-left: 30px;
    margin-right: auto;
}

html[dir="rtl"] .nav a::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .header-button {
    margin-left: 0;
}

html[dir="rtl"] .menu-toggle {
    margin-left: 0;
}


/* =========================
   Hero RTL
========================= */

html[dir="rtl"] .hero {
    direction: rtl;
}

html[dir="rtl"] .hero::before {
    background:
        linear-gradient(
            270deg,
            rgba(0, 0, 0, 0.64),
            rgba(0, 0, 0, 0.34),
            rgba(0, 0, 0, 0.12)
        );
}

html[dir="rtl"] .hero-content {
    margin-left: 8%;
    margin-right: 8%;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .hero-description {
    text-align: right;
}


/* =========================
   Features RTL
========================= */

html[dir="rtl"] .feature {
    border-right: 0;
    border-left: 1px solid #e5e1d8;
}

html[dir="rtl"] .feature:last-child {
    border-left: 0;
}


/* =========================
   Section Heading RTL
========================= */

html[dir="rtl"] .section-heading {
    direction: rtl;
}


/* =========================
   Tree Slider RTL
========================= */

html[dir="rtl"] .tree-slider {
    direction: ltr;
}

html[dir="rtl"] .tree-track {
    direction: ltr;
}

html[dir="rtl"] .slider-prev {
    left: auto;
    right: 18px;
}

html[dir="rtl"] .slider-next {
    right: auto;
    left: 18px;
}


/* =========================
   Products RTL
========================= */

html[dir="rtl"] .product-grid {
    direction: rtl;
}

html[dir="rtl"] .product-card {
    direction: rtl;
}


/* =========================
   Shipping RTL
========================= */

html[dir="rtl"] .shipping-content {
    direction: rtl;
}

html[dir="rtl"] .shipping-info {
    direction: rtl;
}

html[dir="rtl"] .shipping-item {
    text-align: right;
}

html[dir="rtl"] .shipping-promotion {
    direction: rtl;
}

html[dir="rtl"] .shipping-promotion-text {
    text-align: right;
}


/* =========================
   Reviews RTL
========================= */

html[dir="rtl"] .review-slider {
    direction: ltr;
}

html[dir="rtl"] .review-track {
    direction: ltr;
}

html[dir="rtl"] .review-prev {
    left: auto;
    right: 15px;
}

html[dir="rtl"] .review-next {
    right: auto;
    left: 15px;
}


/* =========================
   Contact RTL
========================= */

html[dir="rtl"] .contact-section {
    direction: rtl;
}

html[dir="rtl"] .contact-content {
    direction: rtl;
}


/* =========================
   Footer RTL
========================= */

html[dir="rtl"] .footer {
    direction: rtl;
}

html[dir="rtl"] .footer-links {
    direction: rtl;
}


/* =========================
   Lightbox RTL
========================= */

html[dir="rtl"] .lightbox-prev {
    left: auto;
    right: 18px;
}

html[dir="rtl"] .lightbox-next {
    right: auto;
    left: 18px;
}


/* =========================
   Arabic Font
========================= */

html[dir="rtl"] body {
    font-family:
        "Tahoma",
        "Arial",
        "Segoe UI",
        sans-serif;
}


/* =========================
   Arabic Mobile
========================= */

@media (max-width: 700px) {

    html[dir="rtl"] {
        scroll-padding-top: 64px;
    }

    html[dir="rtl"] body {
        width: 100%;
        overflow-x: hidden;
    }


    /* Header */

    html[dir="rtl"] .header {
        direction: rtl;
        padding: 10px 4%;
    }

    html[dir="rtl"] .logo {
        text-align: right;
    }

    html[dir="rtl"] .header-button {
        margin-right: auto;
        margin-left: 0;
    }

    html[dir="rtl"] .menu-toggle {
        margin-right: 8px;
        margin-left: 0;
    }


    /* Mobile Navigation */

    html[dir="rtl"] .nav {
        top: 64px;
        left: 0;
        right: 0;

        width: 100%;

        margin: 0;

        direction: rtl;

        text-align: right;
    }

    html[dir="rtl"] .nav a {
        padding:
            14px 6%;

        text-align: right;
    }


    /* Hero */

    html[dir="rtl"] .hero {
        direction: rtl;
        background-position: center center;
    }

    html[dir="rtl"] .hero::before {
        background:
            linear-gradient(
                270deg,
                rgba(0, 0, 0, 0.68),
                rgba(0, 0, 0, 0.38)
            );
    }

    html[dir="rtl"] .hero-content {
        margin: 0;

        padding:
            80px 6% 40px;

        text-align: right;
    }

    html[dir="rtl"] .eyebrow {
        text-align: right;
    }

    html[dir="rtl"] .hero h1 {
        text-align: right;

        line-height: 1.5;

        letter-spacing: 0;
    }

    html[dir="rtl"] .hero-description {
        text-align: right;

        line-height: 2;
    }


    /* Features */

    html[dir="rtl"] .features {
        direction: rtl;
    }

    html[dir="rtl"] .feature {
        border-left:
            1px solid #e5e1d8;

        border-right: 0;
    }

    html[dir="rtl"] .feature:nth-child(2) {
        border-left: 0;
    }

    html[dir="rtl"] .feature:nth-child(3) {
        border-left:
            1px solid #e5e1d8;

        border-right: 0;
    }

    html[dir="rtl"] .feature:nth-child(3),
    html[dir="rtl"] .feature:nth-child(4) {
        border-top:
            1px solid #e5e1d8;
    }


    /* Sections */

    html[dir="rtl"] .section-heading {
        text-align: center;
    }


    /* Tree Slider */

    html[dir="rtl"] .tree-slider {
        direction: ltr;
    }

    html[dir="rtl"] .slider-prev {
        left: auto;
        right: 10px;
    }

    html[dir="rtl"] .slider-next {
        right: auto;
        left: 10px;
    }


    /* Products */

    html[dir="rtl"] .product-grid {
        direction: rtl;
    }


    /* Shipping */

    html[dir="rtl"] .shipping-content {
        direction: rtl;
    }

    html[dir="rtl"] .shipping-item {
        text-align: right;
    }

    html[dir="rtl"] .shipping-promotion-text {
        text-align: right;
    }


    /* Reviews */

    html[dir="rtl"] .review-slider {
        direction: ltr;
    }

    html[dir="rtl"] .review-prev {
        left: auto;
        right: 8px;
    }

    html[dir="rtl"] .review-next {
        right: auto;
        left: 8px;
    }


    /* Contact */

    html[dir="rtl"] .contact-content {
        text-align: center;
    }


    /* Footer */

    html[dir="rtl"] .footer {
        direction: rtl;
        text-align: center;
    }

    html[dir="rtl"] .footer-links {
        direction: rtl;
    }


    /* Lightbox */

    html[dir="rtl"] .lightbox-prev {
        left: auto;
        right: 5px;
    }

    html[dir="rtl"] .lightbox-next {
        right: auto;
        left: 5px;
    }
}


/* =========================
   Small Arabic Mobile
========================= */

@media (max-width: 380px) {

    html[dir="rtl"] .hero h1 {
        font-size: 33px;
        line-height: 1.5;
    }

    html[dir="rtl"] .hero-description {
        font-size: 14px;
        line-height: 2;
    }

    html[dir="rtl"] .logo {
        font-size: 15px;
    }

}