/* -------------------------------------------------------------------------- */
/*                           خانواده فونت ایران‌سنس                               */
/* -------------------------------------------------------------------------- */

/* 1. Ultra Light (وزن 200) */
/* 2. Light (وزن 300) */
/* 3. Normal / Regular (وزن 400 - عادی) */
/* 4. Medium (وزن 500) */
/* 5. Bold (وزن 700) */
/* 6. Black (وزن 900) */
/* -------------------------------------------------------------------------- */
/*                 خانواده فونت ایران‌سنس اعداد فارسی (FaNum)                        */
/* -------------------------------------------------------------------------- */

/* 1. Ultra Light FaNum (وزن 200) */
/* 2. Light FaNum (وزن 300) */
/* 3. Normal / Regular FaNum (وزن 400 - عادی) */
/* 4. Medium FaNum (وزن 500) */
/* 5. Bold FaNum (وزن 700) */
/* 6. Black FaNum (وزن 900) */
/* -------------------------------------------------------------------------- */
/*                       متغیرهای عمومی (CSS Variables)                         */
/* -------------------------------------------------------------------------- */

:root {
    --color-Green: #79a206;
    --color-Green-75: #78a206bf;
    --color-Green-50: #78a20680;
    --color-Green-25: #78a20640;
    --color-black: #202020;
    --color-white: #f6f6f6;

    --font-main: "IranSans", system-ui, -apple-system, sans-serif;
    --font-fanum: "IranSansFaNum", system-ui, -apple-system, sans-serif;

    --transition-fast: all 0.25s ease-in-out;
}

/* -------------------------------------------------------------------------- */
/*                  تنظیمات پایه و ریست تکمیلی (Base & Reset)                     */
/* -------------------------------------------------------------------------- */

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

body {
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* -------------------------------------------------------------------------- */
/*                  تایپوگرافی و المان‌های عمومی (Typography)                        */
/* -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
    padding-right: 0;
}

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

/* -------------------------------------------------------------------------- */
/*                       کلاس‌های کمکی (Utility Classes)                        */
/* -------------------------------------------------------------------------- */

.fa-num {
    font-family: var(--font-fanum) !important;
}

/* -------------------------------------------------------------------------- */
/*                       نوار اعلان بالای سایت (Top Bar)                           */
/* -------------------------------------------------------------------------- */

.top-bar {
    height: 3rem;
    width: 100%;
    background-color: var(--color-Green-75);
    font-size: .875rem;
    font-weight: 500;
}

.top-bar-link {
    transition: var(--transition-fast);
    opacity: 1;
    text-shadow: 0 4px 12px #00000020;
}

.top-bar-link:hover {
    opacity: 0.75;
    text-shadow: 0 0 5px #ffffff80;
}

.top-bar-divider {
    width: 3px;
    height: 50%;
    border-radius: 30px;
    background: linear-gradient(to bottom, var(--color-white), #f6f6f6c0);
    box-shadow: 0 3px 10px #f6f6f660;
}

.topographic {
    height: 100%;
    max-height: 100%;
    pointer-events: none;
    filter: brightness(3);
}

.topographic-1 {
    mix-blend-mode: color-dodge;
    background-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/Topographic-2-1.webp");
    aspect-ratio: 3.33 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.topographic-2 {
    mix-blend-mode: color-dodge;
    background-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/Topographic-1-1.webp");
    aspect-ratio: 3.33 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.top-bar-text-container {
    height: 3rem;
    color: var(--color-white);
    overflow: hidden;
}

/* -------------------------------------------------------------------------- */
/*                                   NavBar                                   */
/* -------------------------------------------------------------------------- */

.navbar-main {
    z-index: 100;
    padding: 0 2.5rem;
}

.nav-links {
    gap: 2rem;
    transition:
        opacity 0.5s ease,
        filter 0.5s ease;
}

.navbar-main.search-active .nav-links {
    opacity: 0;
    pointer-events: none;
    filter: blur(4px);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--color-black);
    font-weight: 500;
    padding-bottom: 0.5rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:focus {
    color: var(--color-Green);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--color-Green);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-Green);
    transform: translateY(-5px);
}

.nav-link:hover::after {
    width: 60%;
    transform: translateY(5px) translateX(-50%);
}

.dropdown-menu-custom {
    position: absolute;
    top: 150%;
    right: 0;
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: top right;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.6rem 0;
}

.nav-item.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: translateY(10px) scale(1);
}

.nav-item.dropdown:hover .nav-link::after {
    width: 60%;
    transform: translateY(5px) translateX(-50%);
}

.nav-item.dropdown:hover .nav-link {
    color: var(--color-Green);
    transform: translateY(-5px);
}

.dropdown-menu-custom li {
    margin: 0.3rem 0.6rem;
}

.dropdown-menu-custom li:last-child {
    border-bottom: none;
}

.dropdown-menu-custom a {
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem;
    color: var(--color-black);
    text-decoration: none;
    font-size: .825rem;
    font-weight: 500;
    border-radius: 10px;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.dropdown-menu-custom a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background-color: var(--color-Green);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
}

.dropdown-menu-custom a:hover {
    background-color: var(--color-white);
    color: var(--color-Green);
    transform: translateX(-6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.dropdown-menu-custom a:hover::before {
    height: 60%;
    opacity: 1;
}

.action-icons {
    position: relative;
    padding: 0.4rem 1.3rem;
    gap: 0;
    transform: translateX(10px);
    border-radius: 50px;
    width: 170px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    background-color: var(--color-white);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.action-icons::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1.5px;
    background: linear-gradient(
        to right,
        #ffffff -30%,
        var(--color-Green) 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.4s ease 0.3s;
    opacity: 1;
}

.navbar-main.search-active .action-icons::before {
    opacity: 0;
    transition: opacity 0.1s ease 0s;
}

.navbar-main.search-active .action-icons {
    width: 500px;
    transform: translateX(calc(50vw - 20rem));
    padding-left: 1rem;
    background-color: var(--color-white);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link img,
.icon-link svg {
    transition: transform 0.25s ease-in-out;
}

.icon-link:hover img,
.icon-link:hover svg {
    transform: scale(1.15);
}

.hide-on-search {
    margin-right: 1.2rem;
    width: 22px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-main.search-active .hide-on-search {
    opacity: 0;
    width: 0;
    margin-right: 0;
    transform: translateX(-30px) scale(0.5);
    pointer-events: none;
}

.search-content {
    display: flex;
    align-items: center;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

.navbar-main.search-active .search-content {
    width: 100%;
    opacity: 1;
    transition:
        width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease 0.2s;
}

.search-divider {
    width: 0;
    height: 22px;
    background-color: var(--color-Green-50);
    margin: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.navbar-main.search-active .search-divider {
    opacity: 1;
    width: 2px;
    margin: 0 15px;
    border-radius: 10px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: .825rem;
    color: var(--color-black);
    font-family: inherit;
    width: 100%;
}

.search-input::placeholder {
    color: #a0a0a0;
    font-size: .725rem;
}

.recent-searches {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-Green-50);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar-main.show-recent .recent-searches {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 20;
}

.recent-header {
    font-size: .725rem;
    color: var(--color-Green);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recent-header::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-Green);
    border-radius: 50%;
}

.recent-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
}

.recent-list li a {
    color: var(--color-black);
    font-size: .775rem;
    opacity: 0.8;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.recent-list li a::before {
    content: "⟲";
    margin-left: 10px;
    font-size: .975rem;
    opacity: 0.5;
}

.recent-list li a:hover {
    color: var(--color-Green);
    opacity: 1;
    transform: translateX(-5px);
}

.login-btn {
    display: inline-block;
    position: relative;
    z-index: 22;
    margin-right: -2.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background-color: var(--color-Green-75);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    color: var(--color-white);
    font-weight: 400;
    box-shadow:
        0 0px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 16.6px 1px rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.login-btn:hover {
    background-color: var(--color-Green);
    color: var(--color-white);
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------- */
/*                                Hero Section                                */
/* -------------------------------------------------------------------------- */

.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 600px;
    background-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/bg-hero-1.webp");
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.hero-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 3rem 0 5rem;
    position: relative;
    z-index: 10;
    height: 600px;
    top: -2rem;
}

/* -------------------------------------------------------------------------- */
.hero-content {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title-image img {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: block;
}

.hero-subtitle {
    font-size: 1.475rem;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.6;
}

.hero-description {
    font-size: .975rem;
    color: var(--color-black);
    text-align: justify;
    font-weight: 400;
    line-height: 1.6;
    opacity: 70%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.hero-buttons {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.btn {
    width: 190px;
    height: 49px;
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: var(--transition-fast);
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-primaryy {
    background-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/btn-bg-2-1.webp");
    color: var(--color-white);
    padding: 0 0 0 12px;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0));
}

.btn-primaryy:hover {
    color: var(--color-white);
    transform: translateY(-5px);
    background-color: transparent;
    filter: drop-shadow(0 8px 10px var(--color-Green-25));
}

.btn-secondaryy {
    background-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/btn-bg-1-1.webp");
    color: var(--color-Green);
    padding: 0 10px 0 0;
    filter: brightness(1);
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0));
}

.btn-secondaryy:hover {
    color: var(--color-Green);
    transform: translateY(-5px);
    background-color: transparent;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.08));
}

/* -------------------------------------------------------------------------- */
.hero-visual {
    width: 35%;
    position: relative;
    height: 100%;
    transform: scale(0.9);
}

.layer-leaves {
    position: absolute;
    z-index: 1;
    width: 533px;
    height: 533px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 3rem)) scale(0.95);
    filter: brightness(1.03);
}

.layer-circle {
    position: absolute;
    z-index: 2;
    width: 320px;
    height: 320px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 30px));
}

.layer-plant {
    position: absolute;
    z-index: 3;
    width: 550px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 4rem));
}

/* -------------------------------------------------------------------------- */
.hero-info-cards {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.info-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-card {
    width: 325px;
    height: 175px;
    right: 3rem;
    position: relative;
}

.bottom-card {
    width: 350px;
    height: 220px;
    left: 3rem;
    position: relative;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: fill;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.05));
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    top: 0.2rem;
}

.card-content-bottom {
    margin-bottom: 1rem;
}

.card-icon {
    position: relative;
    flex-shrink: 0;
    bottom: 10px;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.card-text h3 {
    color: var(--color-Green);
    font-size: .925rem;
    font-weight: 700;
    margin: 0;
}

.card-text p {
    font-size: .725rem;
    color: var(--color-black);
    line-height: 1.6;
    margin: 0;
    opacity: 85%;
}

/* -------------------------------------------------------------------------- */
.hero-connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dashed-line {
    fill: none;
    stroke: var(--color-Green-50);
    stroke-width: 2px;
    stroke-dasharray: 5, 8;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.connection-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--color-Green);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 25;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* -------------------------------------------------------------------------- */
.hero-pagination {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
    align-items: center;
}

.dot {
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--color-Green-50);
    box-sizing: border-box;
    transition:
        width 0.4s ease,
        height 0.4s ease,
        border-color 0.4s ease;
}

.dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-color: var(--color-Green);
    border-radius: 50%;
    box-sizing: border-box;
    opacity: 0;
    transition:
        width 0.4s ease,
        height 0.4s ease,
        opacity 0.4s ease;
}

.dot.active {
    width: 26px;
    height: 26px;
    border-color: var(--color-Green);
}

.dot.active::before {
    width: 26px;
    height: 26px;
    border-color: var(--color-Green);
}

.dot.active::after {
    width: 12px;
    height: 12px;
    opacity: 1;
}

.dot.active .inner-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-Green);
    border-radius: 50%;
}

.dot.active.outer-dot {
    border: 3px solid var(--color-Green);
}

/* ------------------------ مخصوص انیمیشن های اسلایدر ----------------------- */
.layer-plant img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 470px;
    max-width: none;
    height: auto;
    transform: translate(-50%, calc(-50%)) scale(1);
    opacity: 1;
    transition: all 1.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.layer-plant img.exit-up {
    transform: translate(-50%, calc(-50% - 25rem)) scale(0.2);
    opacity: 0;
    pointer-events: none;
}

.layer-plant img.enter-bottom {
    transform: translate(-50%, calc(-50% + 15rem)) scale(0.2);
    opacity: 0;
}

.layer-leaves img {
    position: absolute;
    width: 533px;
    height: 533px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50%)) scale(1);
    opacity: 1;
    transition: all 1s cubic-bezier(0.65, 0, 0.2, 1);
}

.layer-leaves img.shrink-hidden {
    transform: translate(-50%, calc(-50% + 3rem)) scale(0.3);
    opacity: 0;
}

.content-wrapper,
.card-icon {
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.card-animating .content-wrapper,
.card-animating .card-icon {
    opacity: 0;
    transform: translateY(-15px);
}

/* -------------------------------------------------------------------------- */
/*                      Landing Sections - چرا ما ؟                             */
/* -------------------------------------------------------------------------- */

.why-us-section {
    position: relative;
    width: 100%;
    /* margin-top: 1rem; */
}
.why-us-section .container {
    padding: 0 7rem;
}

.why-us-wrapper {
    padding: 3rem 0 0 0;
}

.why-card {
    position: relative;
    width: 170px;
    height: 170px;
    z-index: 10;
}

@media (min-width: 992px) {
    .card-up {
        margin-bottom: 80px;
    }
    .card-down {
        margin-top: 80px;
    }
}

.glass-box {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--color-Green-75) 0%,
        var(--color-Green-50) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.2),
        inset 0 0 50px -25px var(--color-white);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    padding: 1rem;
}

.stats-number {
    font-size: 2.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stats-text {
    font-size: 1.175rem;
    font-weight: 400;
    opacity: 1;
    text-align: center;
}

.why-icon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    max-width: none;
}

.icon-1 {
    width: 228px;
    bottom: -80px;
    left: -120px;
}

.icon-2 {
    width: 292px;
    top: -122px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-3 {
    width: 285px;
    top: -155px;
    right: -100px;
}

.icon-4 {
    width: 180px;
    top: -45px;
    right: -100px;
}

/* -------------------------------------------------------------------------- */
/*                                  دسته بندی                                  */
/* -------------------------------------------------------------------------- */
.category-section {
    position: relative;
    overflow: hidden;
}

.category-title-container {
    display: flex;
    justify-content: center;
}

.category-title-img {
    width: 225px;
    max-width: 100%;
    height: auto;
}

.category-card {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    border: none;
    text-decoration: none;
    color: inherit;
    width: 100%;
    min-height: 180px;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: inherit;
}

.card-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem;
    flex: 1;
}

.card-title {
    color: var(--color-Green);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.card-desc {
    color: rgba(32, 32, 32, 0.65);
    font-size: 1.075rem;
    line-height: 1.6;
    margin: 0;
}

.card-img-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .row1-card {
        height: 240px;
    }

    .row2-card {
        height: 420px;
    }

    .col-lg-custom-55 {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .col-lg-custom-45 {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .col-lg-custom-50 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-custom-15 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-lg-custom-35 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .vertical-card {
        flex-direction: column;
    }

    .vertical-card .card-img-wrapper {
        flex: 0 0 50%;
        max-width: 100%;
        width: 100%;
    }

    .vertical-card .card-text-wrapper {
        flex: 1;
        padding: 1.5rem;
    }

    .horizontal-card .card-text-wrapper {
        padding: 2.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                  درباره ما                                    */
/* -------------------------------------------------------------------------- */
.about-section {
    overflow: hidden;
}

.about-title-container {
    display: flex;
    justify-content: center;
}

.about-title-img {
    width: 225px;
    max-width: 100%;
    height: auto;
}

.about-flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    top: -1rem;
    gap: 3rem;
    padding: 0 2rem;
}

.about-text-content {
    flex: 0 0 40%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.about-heading {
    font-size: 1.675rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.highlight-green {
    color: var(--color-Green);
}

.about-description {
    font-size: 1.025rem;
    line-height: 1.85;
    color: var(--color-black);
    opacity: 0.8;
    margin-bottom: 2.2rem;
    text-align: justify;
}

.about-btn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(
        to left,
        var(--color-Green),
        var(--color-Green-75)
    );
    color: var(--color-white);
    font-size: 1.075rem;
    font-weight: 500;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.about-btn i {
    font-size: 1.075rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    -webkit-text-stroke: 0.75px var(--color-white);
    line-height: 0;
    position: relative;
}

.about-btn:hover {
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(121, 162, 6, 0.35);
}

.about-btn:hover i {
    transform: translateX(-5px);
}

.about-image-content {
    flex: 0 0 45%;
    max-width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    width: 650px;
    aspect-ratio: 1 / 1;
    background-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/about-img-bg-1.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-main-img {
    width: 60%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 40px;
    transform: translateX(-6px);
}

@media (max-width: 991px) {
    .about-flex-container {
        flex-direction: column;
        gap: 0rem;
    }

    .about-text-content,
    .about-image-content {
        flex: 0 0 100%;

        max-width: 100%;
    }

    .about-text-content {
        text-align: center;
        padding-top: 4rem;
    }

    .about-text-content .about-heading {
        font-size: 1.975rem;
    }

    .about-description {
        text-align: center;
    }

    .about-img-wrapper {
        width: 100%;

        max-width: 550px; /* سایز بزرگتر برای تبلت طبق درخواست شما */
    }
}

@media (max-width: 767px) {
    .about-flex-container {
        gap: 0rem;
    }

    .about-title-container {
        margin-bottom: 1.5rem;
    }

    .about-heading {
        font-size: 1.375rem;
    }

    .about-description {
        font-size: .925rem;

        margin-bottom: 1.8rem;
    }

    .about-img-wrapper {
        max-width: 500px;
    }
}

/* -------------------------------------------------------------------------- */
/*                               محصولات پرفروش                                */
/* -------------------------------------------------------------------------- */

.most-popular-title-container {
    display: flex;
    justify-content: center;
}

.most-popular-title-img {
    width: 320px;
    max-width: 100%;
    height: auto;
}

/* -------------------------------------------------------------------------- */
.products-slider-section {
    margin-top: -2rem;
    position: relative;
}

.slider-main-container {
    position: relative;
    width: 100%;
    height: 38rem;
    display: flex;
    align-items: center;
    top: -1.5rem;
}

.slider-bg {
    position: absolute;
    top: 5rem;
    bottom: 5rem;
    left: 0;
    right: 0;
    background-color: #eee;
    border-radius: 2rem;
    z-index: 0;
}

/* -------------------------------------------------------------------------- */
.slider-track {
    display: flex;
    gap: 1.6rem;
    position: relative;
    top: 6rem;
    padding: 1rem 3rem;
    height: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 1;
    width: 100%;
    align-items: flex-start;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track.dragging {
    scroll-behavior: auto;
    cursor: grab;
}

.slider-track.dragging:active {
    cursor: grabbing;
}

/* -------------------------------------------------------------------------- */
.product-card {
    flex: 0 0 16rem;

    background-color: rgba(255, 255, 255, 0.2);

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

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;

    padding: 1rem;
    display: flex;
    flex-direction: column;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);

    min-height: 24rem;
}

.product-card:hover {
    background-color: var(--color-Green-75);
    min-height: 28rem;
    box-shadow: 0 15px 35px rgba(156, 189, 85, 0.7);
    transform: none;
    margin-top: 0;
}

.product-img-box {
    background-color: #fff;
    border-radius: 1rem;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: all 0.4s ease;
}

.product-card:hover .product-img-box {
    padding: 0.5rem;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img-actions {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-icon {
    width: 2rem;
    padding: 0;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background-color: rgba(156, 189, 85, 0.2);
    color: var(--color-Green, #9cbd55);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 0;
}

.action-icon:hover {
    background-color: var(--color-Green, #9cbd55);
    color: var(--color-white);
}

.card-divider {
    width: 100%;
    height: 2px;
    background-color: var(--color-Green-25);
    margin: 1.2rem 0 1rem 0;
    transition: background-color 0.4s ease;
    border-radius: 5px;
}

.product-card:hover .card-divider {
    background-color: rgba(255, 255, 255, 0.4);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.title-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.product-title {
    font-size: .975rem;
    font-weight: 600;
    color: var(--color-black, #222);
    margin: 0;
    transition: color 0.4s ease;
}

.product-card:hover .product-title {
    color: var(--color-white);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: .975rem;
    color: var(--color-Green, #9cbd55);
    font-weight: 500;
    transition: color 0.4s ease;
}

.product-rating span {
    line-height: 1;
}

.product-card:hover .product-rating {
    color: var(--color-white);
}

/* -------------------------------------------------------------------------- */
.product-desc {
    font-size: .725rem;
    line-height: 1.6;
    height: 2.75rem;
    color: var(--color-black);
    margin: 0 0 0.8rem 0;
    text-align: justify;
    opacity: 75%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition:
        height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s ease;
}

.product-card:hover .product-desc {
    color: rgba(255, 255, 255, 0.9);
    height: 4.1rem;
    -webkit-line-clamp: 3;
}

/* -------------------------------------------------------------------------- */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition:
        height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        margin-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease;
}

.product-card:hover .product-price-row {
    opacity: 1;
    height: 2.2rem;
    margin-bottom: 1rem;
    transition:
        height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        margin-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease 0.1s;
}

.price-number {
    font-size: 1.275rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2rem;
}

.currency-stacked {
    display: flex;
    flex-direction: column;
    font-size: .675rem;
    line-height: 1;
    color: #fff;
    margin-right: 0.5rem;
    font-weight: 500;
    opacity: 80%;
}

/* -------------------------------------------------------------------------- */
.card-actions-row {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.details-btn {
    flex: 1;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: .825rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-cart-btn {
    width: 3rem;
    height: 2.8rem;
    background-color: var(--color-Green-75, #9cbd55);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.075rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-svg-icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: currentColor;

    -webkit-mask-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/cart_add_icon.svg");
    mask-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/cart_add_icon.svg");

    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;

    transition: transform 0.3s ease;
}

.product-card:hover .details-btn {
    background-color: #fff;
}

.product-card:hover .add-cart-btn {
    background-color: rgba(255, 255, 255, 0.2);
}

.details-btn:hover {
    background-color: #efefef !important;
    transform: translateY(-4px);
}
.add-cart-btn:hover {
    background-color: #fff !important;
    color: var(--color-Green, #9cbd55) !important;
    transform: translateY(-4px);
}

.view-all-card {
    flex: 0 0 16rem;
    min-height: 24rem;
    background: linear-gradient(145deg, var(--color-black, #222), #3a4722);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    top: 5%;
}

.view-all-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.modern-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
}
.blob-1 {
    width: 120px;
    height: 120px;
    background: rgba(156, 189, 85, 0.5);
    top: -20px;
    right: -30px;
}
.blob-2 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -40px;
    left: -20px;
}
.blob-3 {
    width: 80px;
    height: 80px;
    background: rgba(156, 189, 85, 0.3);
    top: 40%;
    left: 30%;
}

.view-all-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.view-all-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.075rem;
    color: var(--color-Green, #9cbd55);
    transition: all 0.4s ease;
    line-height: 0;
}

.view-all-text {
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.view-all-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--color-Green, #9cbd55);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.075rem;
    /* margin-top: 1rem; */
    transition: all 0.4s ease;
    line-height: 0;
}

.view-all-arrow i {
    font-weight: bold;
    -webkit-text-stroke: 1px #fff;
}

.view-all-card:hover .view-all-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.9);
}
.view-all-card:hover .view-all-arrow {
    transform: translateX(-10px);
}

/* -------------------------------------------------------------------------- */
.glass-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 5.5rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.575rem;
    color: var(--color-Green, #9cbd55);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 0;
}

.glass-nav-btn i {
    font-weight: bold;
    -webkit-text-stroke: 1.3px var(--color-Green);
}

.prev-btn {
    right: -1.6rem;
}

.prev-btn i {
    transform: translateX(2px);
}

.next-btn {
    left: -1.6rem;
}

.next-btn i {
    transform: translateX(-2px);
}

.glass-nav-btn:hover.prev-btn {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-50%) translateX(0.6rem) scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.glass-nav-btn:hover.next-btn {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-50%) translateX(-0.6rem) scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* ================= ریسپانسیو ================= */
@media (max-width: 1199px) {
    .glass-nav-btn {
        width: 3rem;
        height: 4.5rem;
    }
}

@media (max-width: 991px) {
    .slider-track {
        gap: 1.5rem;
        padding: 1.5rem 1.5rem 3rem 1.5rem;
    }
    .product-card {
        flex: 0 0 15rem;
        min-height: 23rem;
    }
    .product-card:hover {
        min-height: 27rem;
    }
    .view-all-card {
        flex: 0 0 15rem;
        min-height: 23rem;
    }
    .slider-gray-bg {
        top: 10%;
        bottom: 10%;
    }
    .glass-nav-btn {
        display: none;
    }
}

@media (max-width: 575px) {
    .slider-track {
        gap: 1rem;
        padding: 1.5rem 1rem 2.5rem 1rem;
    }
    .product-card {
        flex: 0 0 14rem;
    }
    .view-all-card {
        flex: 0 0 14rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                 محصولات ما                                 */
/* -------------------------------------------------------------------------- */
.products-section {
    position: relative;
    padding: 4rem 0 2rem 0;
}

.products-section-title-container {
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
}

.products-section-title-container img {
    width: 230px;
    max-width: 100%;
    height: auto;
}

.products-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.products-filter-tabs {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}
.products-filter-tabs::-webkit-scrollbar {
    display: none;
}

.products-tab-btn {
    background-color: #efefef;
    color: #444;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.products-tab-btn:hover {
    background-color: #ddd;
    color: var(--color-black, #222);
}
.products-tab-btn.active {
    background-color: var(--color-Green, #9cbd55);
    color: #fff;
    box-shadow: 0 4px 10px rgba(156, 189, 85, 0.3);
}

.products-view-all-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(
        90deg,
        var(--color-Green-50, #b8d285),
        var(--color-Green-75, #9cbd55),
        var(--color-Green, #7a9c3c)
    );
    background-size: 200% auto;
    background-position: 0 center;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 1rem;
    font-weight: 500;
    font-size: .875rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(156, 189, 85, 0.25);
    transition: all 0.3s ease;
}

.products-view-all-btn:hover {
    background-position: 100% center;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(156, 189, 85, 0.4);
    color: #fff;
}

.products-view-all-btn i {
    line-height: 0;
    font-weight: bold;
    -webkit-text-stroke: 1px #fff;
    transition: all 0.3s ease;
}

.products-view-all-btn:hover i {
    transform: translateX(-4px);
}

/* -------------------------------------------------------------------------- */
.products-slider-wrapper {
    background-color: #efefef;
    padding: 0 1rem;
    border-radius: 1.2rem;
}

.products-slider-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1rem 0.5rem; /* فضای کافی برای شادو کارت‌ها */
}
.products-slider-track::-webkit-scrollbar {
    display: none;
}
.products-slider-track.dragging {
    scroll-behavior: auto;
    cursor: grab;
}
.products-slider-track.dragging:active {
    cursor: grabbing;
}

/* ================= طراحی کارت (Solid Design) ================= */
.products-product-card {
    flex: 0 0 16rem;
    background-color: var(--color-white);
    border-radius: 1.5rem;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    /* border: 1px solid #eee; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}
.products-product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    /* border-color: #e5ecd3; */
}

.products-img-wrapper {
    background-color: #ededed;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.products-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.products-product-card:hover .products-img {
    transform: scale(1.15);
}

/* -------------------------------------------------------------------------- */
.products-zoom-btn {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-Green, #9cbd55);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .975rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 0;
}
.products-product-card:hover .products-zoom-btn {
    opacity: 1;
    transform: translateY(0);
}
.products-zoom-btn:hover {
    background-color: var(--color-Green-75, #9cbd55);
    color: #fff;
}

/* -------------------------------------------------------------------------- */
.products-info-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 1.6rem;
}

.products-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.products-title {
    font-size: .925rem;
    font-weight: 700;
    color: var(--color-black, #222);
    margin: 0;
}

.products-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: .775rem;
    color: var(--color-Green, #9cbd55);
    font-weight: 600;
}
.products-rating i {
    line-height: 0;
    position: relative;
}

/* -------------------------------------------------------------------------- */
.products-desc {
    font-size: .725rem;
    line-height: 1.6;
    height: 4.8em;
    color: #777;
    margin: 0 0 1rem 0;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding-top: 0.7rem;
    border-top: 1px dashed #ccc;
    gap: 0.3rem;
}

.products-price-val {
    font-size: 1.675rem;
    font-weight: 700;
    color: var(--color-black, #222);
    letter-spacing: 1px;
}

.products-currency {
    display: flex;
    flex-direction: column;
    font-size: .675rem;
    line-height: 1.1;
    color: #888;
    margin-right: 0.4rem;
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
.products-actions-row {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin-top: auto;
}
.products-btn-details {
    flex: 1;
    background-color: #e6e6e6;
    color: #444;
    border-radius: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: .775rem;
    font-weight: 600;
    height: 2.8rem;
    transition: all 0.3s ease;
}
.products-btn-details:hover {
    background-color: #e4e6e9;
    color: var(--color-black, #222);
    transform: translateY(-2px);
}

.products-btn-icon {
    width: 2.8rem;
    height: 2.8rem;
    background-color: var(--color-Green-75);
    color: var(--color-white);
    border: none;
    border-radius: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.075rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.products-btn-icon:hover {
    background-color: var(--color-Green, #9cbd55);
    color: #fff;
    transform: translateY(-2px);
}

.products-fav i {
    -webkit-text-stroke: 0.5px currentColor;
    line-height: 0;
    position: relative;
    top: 1px;
}

.products-cart-svg {
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    background-color: currentColor;
    -webkit-mask-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/cart_add_icon.svg");
    mask-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/cart_add_icon.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: transform 0.3s ease;
}

/* -------------------------------------------------------------------------- */
.products-nav-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------- */
.products-nav-btn {
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0.8rem;

    background: linear-gradient(
        90deg,
        var(--color-Green-50, #b8d285),
        var(--color-Green-75, #9cbd55),
        var(--color-Green, #7a9c3c)
    );
    background-size: 200% auto;
    background-position: 0 center;

    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(156, 189, 85, 0.25);
    transition: all 0.3s ease;
}

.products-nav-btn:hover {
    background-position: 100% center;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(156, 189, 85, 0.4);
    color: #fff;
}

.products-nav-btn:active {
    transform: translateY(-1px);
}

.products-nav-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    font-size: .975rem;
    font-weight: bold;
    -webkit-text-stroke: 1px #fff;
    transition: transform 0.3s ease;
}

.products-next:hover i {
    transform: translateX(3px);
}

.products-prev:hover i {
    transform: translateX(-3px);
}

.products-next i {
    transform: translateX(2px);
}

.products-prev i {
    transform: translateX(-2px);
}

.products-header-left-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.products-nav-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* -------------------------------- ریسپانسیو ------------------------------- */

/* -------------------------------- ریسپانسیو ------------------------------- */

/* لپ‌تاپ‌های کوچک و تبلت‌های افقی */
@media (max-width: 991px) {
    .products-filter-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .products-filter-tabs {
        width: 100%;
        padding-bottom: 0.8rem;
    }

    .products-header-left-actions {
        width: 100%;
        justify-content: space-between;
    }

    .products-slider-wrapper {
        padding: 1.5rem 0.8rem;
        border-radius: 1.5rem;
    }

    .products-slider-track {
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .products-product-card {
        flex: 0 0 15rem;
    }
}

/* تبلت‌های عمودی و موبایل‌ها */
@media (max-width: 767px) {
    /* مخفی کردن دکمه‌های چپ و راست در دستگاه‌های لمسی */
    .products-nav-group {
        display: none;
    }

    /* تراز کردن دکمه "مشاهده همه" پس از حذف دکمه‌های ناوبری */
    .products-header-left-actions {
        justify-content: flex-end;
    }
    
    .products-product-card {
        flex: 0 0 14.5rem;
    }
}

/* موبایل‌های کوچک */
@media (max-width: 575px) {
    .products-view-all-btn {
        padding: 0.6rem 1.2rem;
        font-size: .775rem;
    }

    .products-slider-wrapper {
        padding: 1rem 0.5rem;
        border-radius: 1.2rem;
    }

    .products-slider-track {
        gap: 0.8rem;
    }

    .products-product-card {
        flex: 0 0 14rem;
        padding: 0.8rem;
    }

    .products-img-wrapper {
        padding: 1rem;
    }

    .products-price-val {
        font-size: 1.075rem;
    }

    .products-btn-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: .975rem;
    }

    .products-btn-details {
        font-size: .725rem;
        height: 2.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                   مارچوبه                                    */
/* -------------------------------------------------------------------------- */
.asparagus-section {
    padding: 14rem 0 18rem 0;
    font-family: inherit;
}

.asparagus-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.asparagus-content-box {
    flex: 0 0 55%;
    background-color: rgba(246, 246, 246, 0.5);
    border: 2px solid var(--color-Green, #9cbd55);
    border-radius: 2rem;
    padding: 3rem;
    z-index: 5;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.asparagus-title {
    font-size: 1.475rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.asparagus-highlight {
    color: var(--color-Green, #9cbd55);
}

.asparagus-main-desc {
    font-size: .825rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.asparagus-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
}

.asparagus-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.asparagus-feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #e5ecd3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.075rem;
    color: var(--color-black);
}

.asparagus-feature-icon i {
    line-height: 0;
    /* -webkit-text-stroke: 0.25px #333; */
}

.asparagus-feature-text h4 {
    font-size: .925rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 0.5rem 0;
}

.asparagus-feature-text p {
    font-size: .675rem;
    line-height: 1.6;
    color: hsla(0, 0%, 0%, 0.75);
    margin: 0;
    text-align: justify;
}

/* -------------------------------------------------------------------------- */
.asparagus-images-box {
    flex: 0 0 50%;
    position: relative;
    margin-right: -8%;
    z-index: 1;
    min-height: 500px;
}

.asparagus-img-main {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 65%;
    height: 130%;
    object-fit: cover;
    border-radius: 3rem;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.asparagus-img-top {
    position: absolute;
    top: -10rem;
    left: 0;
    width: 48%;
    height: 80%;
    object-fit: cover;
    border: 16px solid var(--color-white);
    border-radius: 3rem;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
    z-index: 2;
}

.asparagus-img-bottom {
    position: absolute;
    top: 60%;
    left: 8%;
    width: 52%;
    height: 85%;
    object-fit: cover;
    border: 16px solid var(--color-white);
    border-radius: 3rem;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
    z-index: 3;
}

/* -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .asparagus-section {
        padding: 6rem 0 8rem 0;
    }

    .asparagus-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .asparagus-content-box {
        flex: 0 0 100%;
        width: 100%;
    }

    .asparagus-images-box {
        flex: 0 0 100%;
        width: 100%;
        margin-right: 0;
        margin-top: -3rem;
        min-height: 520px;
        z-index: 1;
    }

    .asparagus-img-main {
        width: 70%;
        height: 85%;
        right: 15%;
        top: 7.5%;
        transform: none;
    }

    .asparagus-img-top {
        top: -3rem;
        left: 0;
        width: 45%;
        height: 55%;
        border-width: 10px;
    }

    .asparagus-img-bottom {
        top: auto;
        bottom: -3rem;
        left: auto;
        right: 0;
        width: 45%;
        height: 55%;
        border-width: 10px;
    }
}

@media (max-width: 767px) {
    .asparagus-section {
        padding: 4rem 0 6rem 0;
    }

    .asparagus-content-box {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .asparagus-title {
        font-size: 1.175rem;
    }

    .asparagus-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .asparagus-images-box {
        min-height: 420px;
        margin-top: -2.2rem;
    }

    .asparagus-img-main {
        width: 76%;
        right: 12%;
        height: 80%;
        top: 10%;
    }

    .asparagus-img-top,
    .asparagus-img-bottom {
        border-width: 6px;
        border-radius: 1.5rem;
    }

    .asparagus-img-top {
        width: 50%;
        height: 50%;
        top: -1.5rem;
    }

    .asparagus-img-bottom {
        width: 50%;
        height: 50%;
        bottom: -1.5rem;
    }
}

@media (max-width: 575px) {
    .asparagus-images-box {
        min-height: 350px;
        margin-top: -1.8rem;
    }

    .asparagus-img-top {
        left: -1rem;
    }

    .asparagus-img-bottom {
        right: -1rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                 انواع مارچوبه                                  */
/* -------------------------------------------------------------------------- */
.seedling-section {
    background-color: #eee;
    padding: 4rem 0;
    border-radius: 3rem;
    margin-bottom: 5rem;
}

.seedling-header {
    text-align: center;
    margin-bottom: 3rem;
}

.seedling-title {
    font-size: 1.675rem;
    font-weight: 600;
    color: var(--color-black, #222);
    margin-bottom: 1.2rem;
}

.seedling-highlight {
    color: var(--color-Green, #9cbd55);
}

.seedling-desc {
    font-size: .925rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    text-align-last: center;
}

/* -------------------------------------------------------------------------- */
.seedling-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

/* -------------------------------------------------------------------------- */
.seedling-card {
    background: linear-gradient(
        110deg,
        var(--color-Green-50, #9cbd55),
        var(--color-Green, #7a9c3c)
    );
    border-radius: 1.2rem;
    padding: 1.5rem 0.8rem 0.8rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 160px;
    box-shadow: 0 5px 15px rgba(156, 189, 85, 0.5);
    transition: all 0.3s ease;
}

.seedling-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.seedling-icon {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transform: scale(1.3);
}

.seedling-card-title {
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: .875rem;
    font-weight: 300;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
    border-radius: 50px;
}

.seedling-btn-wrapper {
    display: flex;
    justify-content: center;
}

.seedling-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #fff;
    color: var(--color-black, #222);
    font-size: 1.075rem;
    font-weight: 500;
    padding: 0.6rem 2rem;
    border-radius: 1rem;
    /* border: 1.5px solid #e0e2e6; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.seedling-btn:hover {
    border-color: var(--color-Green, #9cbd55);
    color: var(--color-Green, #9cbd55);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 189, 85, 0.5);
}

.seedling-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    font-size: .875rem;
    font-weight: bold;
    position: relative;
    -webkit-text-stroke: 0.8px currentColor;
    transition: all 0.3s ease;
}

.seedling-btn:hover i {
    transform: translateX(-4px);
}

/* ================= ریسپانسیو (Responsive) ================= */

@media (max-width: 1199px) {
    .seedling-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .seedling-section {
        padding: 3rem 0 4rem 0;
    }

    .seedling-desc {
        text-align-last: center;
        text-align: center;
        padding: 0 1rem;
    }
}

@media (max-width: 767px) {
    .seedling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .seedling-title {
        font-size: 1.175rem;
    }

    .seedling-desc {
        font-size: .725rem;
    }

    .seedling-card {
        min-height: 140px;
    }

    .seedling-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.8rem;
        transform: scale(1.8);
    }

    .seedling-card-title {
        font-size: .625rem;
    }
}

@media (max-width: 400px) {
    .seedling-grid {
        gap: 0.6rem;
    }
    .seedling-card {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                 هوش مصنوعی                                 */
/* -------------------------------------------------------------------------- */

.ai-section {
    padding-bottom: 6rem;
}

.ai-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
}

/* -------------------------------------------------------------------------- */
.ai-content-col {
    flex: 0 0 40%;
    text-align: center;
}

.ai-illustration-col {
    flex: 0 0 40%;
    text-align: center;
}

.ai-illustration-img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

/* -------------------------------------------------------------------------- */
.ai-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.ai-highlight {
    color: var(--color-Green, #9cbd55);
}

.ai-desc {
    font-size: .875rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.2rem;
    width: 80%;
}

/* -------------------------------------------------------------------------- */
.ai-upload-wrapper {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(156, 189, 85, 0.2);
}

.ai-upload-inner {
    background-color: rgba(156, 189, 85, 0.15);
    border: 1px solid var(--color-Green-50, #b8d285);
    border-radius: 1.6rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-folder-img {
    width: 5.5rem;
    margin-bottom: 1.2rem;
}

.ai-upload-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.ai-divider {
    display: flex;
    align-items: center;
    width: 60%;
    margin: 1.2rem 0;
    color: var(--color-black);
    font-size: 1.075rem;
    opacity: 0.8;
    border-radius: 5px;
}

.ai-divider::before,
.ai-divider::after {
    content: "";
    flex: 1;
    height: 1.8px;
    background-color: var(--color-black);
    margin: 0 15px;
    opacity: 0.25;
}

.ai-btn-upload {
    background-color: var(--color-Green, #9cbd55);
    color: #fff;
    font-family: inherit;
    border: none;
    padding: 0.45rem 2rem;
    border-radius: 0.5rem;
    font-size: .975rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(0.95);
}

.ai-btn-upload:hover {
    background-color: var(--color-Green-75, #85a845);
}

/* -------------------------------------------------------------------------- */
.ai-chat-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 3rem;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.ai-chat-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: .825rem;
    padding: 0.5rem 0;
    color: #333;
}

.ai-chat-input::placeholder {
    color: #999;
    font-size: .875rem;
}

.ai-chat-box:focus-within {
    transform: translateY(-6px);
    border: 1px solid var(--color-Green-50, #b8d285);
}

.ai-chat-separator {
    width: 2px;
    height: 1.5rem;
    background-color: #ccc;
    margin: 0 1.2rem 0 1rem;
    border-radius: 5px;
}

.ai-btn-send {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50px;
}

.ai-btn-send:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.ai-btn-send img {
    width: 1.5rem;
    height: 1.5rem;
}

/* ================= ریسپانسیو (Responsive) ================= */

@media (max-width: 1199px) {
    .ai-content-col {
        flex: 0 0 50%;
    }

    .ai-illustration-col {
        flex: 0 0 45%;
    }
}

@media (max-width: 991px) {
    .ai-wrapper {
        flex-direction: column;
        gap: 4rem;
    }

    .ai-content-col,
    .ai-illustration-col {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ai-desc {
        width: 90%;
        margin: 0 auto 1.2rem auto;
        text-align: center;
    }

    .ai-upload-wrapper,
    .ai-chat-box {
        width: 100%;
        max-width: 550px;
    }

    .ai-illustration-img {
        max-width: 450px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 767px) {
    .ai-section {
        padding-bottom: 3rem;
    }

    .ai-title {
        font-size: 1.375rem;
    }

    .ai-desc {
        width: 100%;
        font-size: .825rem;
    }

    .ai-divider {
        width: 80%;
    }

    .ai-chat-box {
        padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 575px) {
    .ai-divider {
        width: 100%;
    }

    .ai-btn-upload {
        width: 100%;
    }
}

/* -------------------------------------------------------------------------- */
/*                                    نظرات                                   */
/* -------------------------------------------------------------------------- */
.comments-section {
    padding-bottom: 5rem;
    background-color: transparent;
}

.comments-section-title-container {
    display: flex;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.comments-section-title-container img {
    width: 260px;
    max-width: 100%;
    height: auto;
}

/* -------------------------------------------------------------------------- */
.comments-nav-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comments-nav-btn {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.075rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comments-nav-btn i {
    -webkit-text-stroke: 0.8px currentColor;
}

.comments-next {
    background-color: var(--color-white);
    color: var(--color-Green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comments-next i {
    line-height: 0;
    margin-right: -2px;
}

.comments-next:hover {
    background-color: #fff;
    transform: scale(0.9);
}

.comments-prev {
    background-color: var(--color-Green, #9cbd55);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comments-prev i {
    line-height: 0;
    margin-right: 2px;
}

.comments-prev:hover {
    background-color: var(--color-Green-75, #85a845);
    transform: scale(0.9);
}

/* -------------------------------------------------------------------------- */
.comments-slider-wrapper {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-top: 3rem;
    padding-bottom: 2rem;
    padding-inline: 0.5rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.comments-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.comments-card {
    flex: 0 0 350px;
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

.comments-avatar {
    position: absolute;
    top: -2rem;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background-color: #fff;
}

.comments-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comments-text {
    text-align: center;
    font-size: .825rem;
    color: #555;
    line-height: 1.9;
    margin-top: 0.9rem;
    flex-grow: 1;
}

.comments-divider {
    height: 1.2px;
    background-color: #eeeeee;
    width: 100%;
    margin: 0.4rem 0 1.2rem 0;
    border-radius: 5px;
}

.comments-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.comments-user-info {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.comments-name {
    font-size: .825rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 0.3rem 0;
}

.comments-role {
    font-size: .775rem;
    color: #888;
}

.comments-stars {
    display: flex;
    gap: 0.2rem;
    font-size: .825rem;
    direction: ltr;
}

.comments-stars .active {
    color: var(--color-Green, #9cbd55);
}

.comments-stars .inactive {
    color: rgba(156, 189, 85, 0.3);
}

/* ================= ریسپانسیو (Responsive) ================= */

@media (max-width: 1199px) {
    .comments-slider-area {
        padding: 0 3.5rem;
    }
}

@media (max-width: 991px) {
    .comments-nav-btn {
        display: none;
    }

    .comments-section-title-container {
        padding-bottom: 0.8rem;
    }

    .comments-slider-wrapper {
        padding-top: 2.8rem;
    }

    .comments-slider-area {
        padding: 0 1.5rem;
    }

    .comments-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 767px) {
    .comments-slider-area {
        padding: 0 1rem;
    }

    .comments-card {
        flex: 0 0 280px;
        padding: 2.5rem 1.2rem 1.2rem 1.2rem;
    }
}

@media (max-width: 575px) {
    .comments-slider-area {
        padding: 0 0.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                سوالات متداول                               */
/* -------------------------------------------------------------------------- */

.faq-section-title-container {
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
}

.faq-section-title-container img {
    width: 160px;
    max-width: 100%;
    height: auto;
}

.faq-section {
    padding: 0rem 0 5rem 0;
}

.faq-container {
    max-width: 45%;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.faq-item {
    background-color: var(--color-Green-50);
    border-radius: 3rem;
    transition: all 0.3s ease;
}

.faq-item.active {
    background-color: #eee;
    border-radius: 1.4rem;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
}

.faq-title {
    font-size: 1.075rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
    padding-left: 1rem;
}

.faq-item.active .faq-header {
    padding: 1.2rem 1.2rem 0.5rem 1.2rem;
}

.faq-item.active .faq-title {
    color: var(--color-black);
    opacity: 85%;
    font-weight: 600;
}

.faq-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background-color: #8fae4f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.375rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.faq-icon i {
    line-height: 0;
}

.faq-icon .bi-x {
    display: none;
}

.faq-item.active .faq-icon .bi-plus {
    display: none;
}

.faq-item.active .faq-icon .bi-x {
    display: block;
}

.faq-body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-body-wrapper {
    grid-template-rows: 1fr;
}

.faq-body-inner {
    overflow: hidden;
}

.faq-body-inner p {
    margin: 0;
    padding: 0 1.5rem 1.5rem 2.5rem;
    color: #666;
    font-size: .925rem;
    line-height: 1.8;
    text-align: right;
    max-width: 92%;
    font-weight: 400;
}

.faq-action {
    display: flex;
    justify-content: center;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(
        90deg,
        var(--color-Green-50, #b8d285),
        var(--color-Green-75, #9cbd55),
        var(--color-Green, #7a9c3c)
    );
    background-size: 200% auto;
    background-position: 0 center;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    font-weight: 500;
    font-size: .975rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(156, 189, 85, 0.25);
    transition: all 0.3s ease;
}

.faq-btn:hover {
    background-position: 100% center;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(156, 189, 85, 0.4);
    color: #fff;
}

.faq-btn i {
    line-height: 0;
    font-size: 1.075rem;
    font-weight: bold;
    -webkit-text-stroke: 1px #fff;
    position: relative;
    top: 1px;
    transition: all 0.3s ease;
}

.faq-btn:hover i {
    transform: translateX(-4px);
}

/* ================= ریسپانسیو (Responsive) ================= */
@media (max-width: 1199px) {
    .faq-container {
        max-width: 65%;
    }
}

@media (max-width: 991px) {
    .faq-container {
        max-width: 85%;
    }
    .faq-section {
        padding: 0rem 0 4rem 0;
    }
}

@media (max-width: 767px) {
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .faq-section {
        padding: 0rem 0 3rem 0;
    }

    .faq-section-title-container {
        padding-bottom: 2rem;
    }

    .faq-header {
        padding: 0.8rem 1rem;
    }

    .faq-item.active .faq-header {
        padding: 1rem 1rem 0.5rem 1rem;
    }

    .faq-title {
        font-size: .925rem;
        padding-left: 0.5rem;
    }

    .faq-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.175rem;
    }

    .faq-body-inner p {
        padding: 0 1rem 1.2rem 3.5rem;
        font-size: .825rem;
        max-width: 100%;
    }

    .faq-btn {
        font-size: .875rem;
        padding: 0.6rem 2rem;
    }
}

@media (max-width: 575px) {
    .faq-title {
        font-size: .825rem;
        line-height: 1.6;
    }

    .faq-icon {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.075rem;
    }

    .faq-body-inner p {
        padding: 0 1rem 1.2rem 3rem;
        font-size: .775rem;
    }

    .faq-btn {
        justify-content: center;
    }
}

/* -------------------------------------------------------------------------- */
/*                                    بلاگ                                    */
/* -------------------------------------------------------------------------- */

.blogs-section-title-container {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.blogs-section-title-container img {
    width: 160px;
    max-width: 100%;
    height: auto;
}

.blog-section {
    padding: 2rem 0 7rem 0;
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 1.2rem;
    display: flex;
    align-items: stretch;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.blog-featured {
    min-height: 320px;
}

.blog-featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.blog-featured-image {
    flex: 1;
}

.blog-featured .blog-title {
    font-size: 1.175rem;
    font-weight: 700;
    color: #222;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.blog-featured .blog-desc {
    font-size: .825rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.blog-author img {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
}

.blog-author-name {
    font-size: .825rem;
    color: #777;
    font-weight: 500;
}

.blog-date {
    font-size: .775rem;
    color: #888;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.blog-secondary {
    gap: 1.5rem;
}

.blog-secondary-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1rem 1rem 0;
}

.blog-secondary-image {
    flex: 1;
}

.blog-secondary .blog-title {
    font-size: .925rem;
    font-weight: 700;
    color: #222;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-secondary .blog-desc {
    font-size: .725rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(
        90deg,
        var(--color-Green-50, #b8d285),
        var(--color-Green-75, #9cbd55),
        var(--color-Green, #7a9c3c)
    );
    background-size: 200% auto;
    background-position: 0 center;
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 1rem;
    font-weight: 500;
    font-size: .975rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(156, 189, 85, 0.25);
    transition: all 0.3s ease;
}

.blog-btn:hover {
    background-position: 100% center;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(156, 189, 85, 0.4);
    color: #fff;
}

.blog-btn i {
    line-height: 0;
    font-size: 1.075rem;
    font-weight: bold;
    -webkit-text-stroke: 1px #fff;
    position: relative;
    top: 1px;
    transition: all 0.3s ease;
}

.blog-btn:hover i {
    transform: translateX(-4px);
}

/* ================= ریسپانسیو (Responsive) ================= */
@media (max-width: 1199px) {
    .blog-container {
        max-width: 95%;
    }
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .blog-section {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/*                                    فوتر                                    */
/* -------------------------------------------------------------------------- */

.main-footer {
    background-image: url("https://roshdsabz.com/wp-content/uploads/2026/08/footer-bg-1.webp");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 1.5rem;
    font-family: inherit;
}

.scroll-to-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 3.8rem;
    height: 3.8rem;
    background-color: #fff;
    color: #8fae4f;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-to-top i {
    font-size: 1.275rem;
    line-height: 0;
    font-weight: bold;
    -webkit-text-stroke: 1.5px;
    position: relative;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: var(--color-Green);
    color: #fff;
    transform: translateX(-50%) translateY(-5px);
}

/* -------------------------------------------------------------------------- */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
}

/* -------------------------------------------------------------------------- */
.brand-col {
    align-self: center;
    flex: 1.2;
}
.contact-col {
    flex: 1.4;
}
.links-col {
    flex: 1.1;
}
.symbols-col {
    flex: 0.6;
}

/* -------------------------------------------------------------------------- */
.footer-title {
    position: relative;
    font-size: 1.275rem;
    font-weight: 600;
    color: var(--color-Green);
    margin-bottom: 2rem;
    z-index: 1;
    display: inline-block;
}

.footer-title::before {
    content: "";
    position: absolute;
    width: 75px;
    height: 30px;
    background: linear-gradient(
        90deg,
        rgba(156, 189, 85, 0.05),
        rgba(156, 189, 85, 0.25)
    );
    border-radius: 50%;
    top: -10px;
    right: -30px;
    z-index: -1;
    transform: rotate(-10deg);
}

/* -------------------------------------------------------------------------- */
.brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    min-width: 200px;
    margin-bottom: 1rem;
    max-width: 220px;
}

.footer-desc {
    font-size: .825rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
}

.social-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #e5ebe5, #b4c4b4);
    color: #333;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.225rem;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    filter: brightness(0.9);
}

.social-icon i {
    line-height: 0;
}

/* -------------------------------------------------------------------------- */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.1rem;
}

.contact-label {
    color: var(--color-black);
    font-size: .925rem;
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

.contact-value {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--color-black);
    font-size: .925rem;
    text-align: right;
    line-height: 1.5;
    max-width: 100%;
    flex: 1;
}

.contact-value i {
    color: #8fae4f;
    font-size: .975rem;
    position: relative;
    top: 2px;
    flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
.links-wrapper {
    display: flex;
    gap: 2.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

/* -------------------------------------------------------------------------- */
.footer-links a {
    display: inline-flex;
    align-items: center;
    color: var(--color-black);
    text-decoration: none;
    font-size: .925rem;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1.1rem; 
    background-color: #8fae4f;
    transition: all 0.3s ease;
    margin-left: 0; 
    opacity: 0;
    border-radius: 3px;
}

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

.footer-links a:hover::before {
    width: 3px;
    margin-left: 8px; 
    opacity: 1;
}

/* -------------------------------------------------------------------------- */
.symbols-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.symbols-wrapper img {
    width: 90px;
    height: auto;
    background-color: #fff;
    border-radius: 0.8rem;
    padding: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.symbols-wrapper img:hover{
    transform: translateX(-10px);
}

/* -------------------------------------------------------------------------- */
.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    height: 2px;
    background-color: #aec385;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    opacity: 65%;
}

.footer-copyright {
    text-align: center;
    color: var(--color-black);
    font-size: .775rem;
    margin: 0;
}

/* ================= ریسپانسیو (Responsive) ================= */

@media (max-width: 1199px) {
    .footer-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4rem 2%;
    }
    
    .brand-col,
    .contact-col,
    .links-col,
    .symbols-col {
        flex: 0 0 48%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-col .contact-list {
        width: 100%;
        max-width: 380px;
    }
    
    .links-wrapper {
        width: 100%;
        max-width: 320px;
        justify-content: space-between;
    }
    
    .symbols-wrapper {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .footer-row {
        gap: 4rem 0;
    }
    
    .brand-col,
    .contact-col,
    .links-col,
    .symbols-col {
        flex: 0 0 85%;
    }
}

@media (max-width: 767px) {
    .main-footer {
        padding-top: 6rem;
    }
    
    .footer-row {
        gap: 3.5rem 0;
    }
    
    .brand-col,
    .contact-col,
    .links-col,
    .symbols-col {
        flex: 0 0 100%;
    }
    
    .contact-col .contact-list {
        max-width: 100%;
    }
    
    .links-wrapper {
        max-width: 100%;
        justify-content: space-around;
    }
    
    .symbols-wrapper img {
        width: 100px;
    }
    
    .footer-copyright {
        font-size: .725rem;
    }
}
/* Roshd Sabz 0.5.1: independent typed top-bar slogans */
.top-bar-text-container{
    padding-inline:1.25rem;
}
.rs-topbar-desktop{
    justify-content:space-between;
    gap:0;
}
.rs-topbar-rotator{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:1 1 0;
    min-width:0;
    height:100%;
    overflow:hidden;
}
.rs-topbar-rotator .top-bar-link{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-width:0;
    height:100%;
    padding-inline:.75rem;
    color:var(--color-white,#fff);
    white-space:nowrap;
    overflow:hidden;
}
.rs-topbar-typed{
    display:block;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.rs-topbar-caret{
    flex:0 0 1px;
    width:1px;
    height:1.15em;
    margin-right:.38rem;
    border-radius:2px;
    background:currentColor;
    animation:rsTopbarCaret .8s steps(1,end) infinite;
}
.rs-topbar-desktop .topographic{
    flex:0 0 min(15vw,190px);
}
.rs-topbar-mobile{
    width:100%;
    padding-inline:1rem;
}
.rs-topbar-mobile .rs-topbar-rotator,
.rs-topbar-mobile .top-bar-link{
    width:100%;
}
@keyframes rsTopbarCaret{
    0%,46%{opacity:1}
    47%,100%{opacity:0}
}
@media (prefers-reduced-motion:reduce){
    .rs-topbar-caret{animation:none;opacity:.75}
}
@media (max-width:767.98px){
    .top-bar,
    .top-bar-text-container{height:2.8rem}
    .rs-topbar-rotator .top-bar-link{padding-inline:.25rem}
}

/* Roshd Sabz 0.5.2: configurable home category mosaic */
.rs-category-mosaic{
    display:grid;
    grid-template-columns:repeat(12,minmax(0,1fr));
    gap:16px;
    direction:ltr;
}
.rs-category-mosaic .category-card{
    direction:rtl;
    min-width:0;
    min-height:0;
    margin:0;
    border-radius:20px;
    background:#f1f1f1;
    box-shadow:none;
}
.rs-category-mosaic .category-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(47,111,67,.12);
}
.rs-category-mosaic .card-text-wrapper{
    min-width:0;
    padding:clamp(1rem,2vw,2rem);
}
.rs-category-mosaic .card-title{
    margin:0 0 .55rem;
    color:#73a900;
    font-size:clamp(1.1rem,1.8vw,1.75rem);
    line-height:1.35;
}
.rs-category-mosaic .card-desc{
    color:rgba(32,32,32,.58);
    font-size:clamp(.76rem,1.15vw,1rem);
    line-height:1.75;
}
.rs-category-mosaic .card-img-wrapper{
    flex:0 0 42%;
    width:42%;
    max-width:42%;
    overflow:hidden;
}
.rs-category-mosaic .card-img-wrapper img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.rs-category-slot-1{grid-column:6 / 13;grid-row:1;min-height:220px}
.rs-category-slot-2{grid-column:1 / 6;grid-row:1;min-height:220px}
.rs-category-slot-3{grid-column:7 / 13;grid-row:2;min-height:380px}
.rs-category-slot-4{grid-column:5 / 7;grid-row:2;min-height:380px;flex-direction:column}
.rs-category-slot-5{grid-column:1 / 5;grid-row:2;min-height:380px;flex-direction:column}
.rs-category-slot-4 .card-img-wrapper,
.rs-category-slot-5 .card-img-wrapper{
    flex:0 0 48%;
    width:100%;
    max-width:100%;
}
.rs-category-slot-4 .card-text-wrapper,
.rs-category-slot-5 .card-text-wrapper{
    padding:1.1rem;
}
.rs-category-slot-4 .card-title,
.rs-category-slot-5 .card-title{
    font-size:clamp(1rem,1.45vw,1.45rem);
}
.rs-category-slot-4 .card-desc,
.rs-category-slot-5 .card-desc{
    font-size:clamp(.7rem,.95vw,.9rem);
}
.rs-category-mosaic:not(.rs-category-count-5){
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.rs-category-mosaic:not(.rs-category-count-5) .category-card{
    grid-column:auto!important;
    grid-row:auto!important;
    min-height:280px;
    flex-direction:column;
}
.rs-category-mosaic:not(.rs-category-count-5) .card-img-wrapper{
    flex:0 0 52%;
    width:100%;
    max-width:100%;
}
@media (max-width:767.98px){
    .category-section{padding-top:2rem!important;padding-bottom:2rem!important}
    .category-title-container{margin-bottom:1.5rem!important}
    .rs-category-mosaic,
    .rs-category-mosaic.rs-category-count-5{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:8px;
    }
    .rs-category-mosaic.rs-category-count-5 .category-card{
        border-radius:13px;
    }
    .rs-category-slot-1{grid-column:1 / 3;grid-row:1;min-height:112px}
    .rs-category-slot-2{grid-column:1 / 3;grid-row:2;min-height:112px}
    .rs-category-slot-4{grid-column:1 / 2;grid-row:3;min-height:190px}
    .rs-category-slot-5{grid-column:2 / 3;grid-row:3;min-height:190px}
    .rs-category-slot-3{grid-column:1 / 3;grid-row:4;min-height:165px}
    .rs-category-slot-1,
    .rs-category-slot-2,
    .rs-category-slot-3{
        flex-direction:row;
    }
    .rs-category-slot-4,
    .rs-category-slot-5{
        flex-direction:column;
    }
    .rs-category-mosaic .card-text-wrapper{
        padding:.62rem .7rem;
    }
    .rs-category-mosaic .card-title{
        margin-bottom:.25rem;
        font-size:.85rem;
        line-height:1.35;
    }
    .rs-category-mosaic .card-desc{
        font-size:.61rem;
        line-height:1.55;
    }
    .rs-category-mosaic .card-img-wrapper{
        flex:0 0 42%;
        width:42%;
        max-width:42%;
    }
    .rs-category-slot-3 .card-img-wrapper{flex-basis:43%;width:43%;max-width:43%}
    .rs-category-slot-4 .card-img-wrapper,
    .rs-category-slot-5 .card-img-wrapper{
        flex:0 0 49%;
        width:100%;
        max-width:100%;
    }
    .rs-category-slot-4 .card-title,
    .rs-category-slot-5 .card-title{font-size:.78rem}
    .rs-category-slot-4 .card-desc,
    .rs-category-slot-5 .card-desc{font-size:.56rem}
    .rs-category-mosaic:not(.rs-category-count-5){grid-template-columns:1fr}
}

/* Roshd Sabz 0.5.2: fixed-size best-seller carousel arrows */
#popular-products .glass-nav-btn,
#popular-products .glass-nav-btn:hover,
#popular-products .glass-nav-btn:focus,
#popular-products .glass-nav-btn:active{
    transform:translateY(-50%)!important;
    width:3.5rem;
    height:5.5rem;
    background:rgba(255,255,255,.72);
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}
#popular-products .glass-nav-btn:hover{
    background:rgba(255,255,255,.82);
}
#popular-products .glass-nav-btn .rs-arrow-icon,
#popular-products .glass-nav-btn:hover .rs-arrow-icon,
#popular-products .glass-nav-btn:focus .rs-arrow-icon,
#popular-products .glass-nav-btn:active .rs-arrow-icon{
    width:22px!important;
    height:22px!important;
}
@media (max-width:1199px){
    #popular-products .glass-nav-btn,
    #popular-products .glass-nav-btn:hover,
    #popular-products .glass-nav-btn:focus,
    #popular-products .glass-nav-btn:active{
        width:3rem;
        height:4.5rem;
    }
}

/* Roshd Sabz 0.5.3: stacked responsive hero for mobile */
@media (max-width: 767.98px) {
    .hero-section {
        display: block;
        height: auto;
        min-height: 0;
        padding: 1.25rem 0 3.75rem;
        align-items: stretch;
        background-size: cover;
        background-position: center bottom;
        overflow: hidden;
    }

    .hero-layout {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
        height: auto;
        min-height: 0;
        top: 0;
        padding: 0 clamp(1rem, 5vw, 1.5rem);
        gap: 0;
    }

    .hero-content {
        order: 1;
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
        align-items: center;
        gap: .7rem;
        text-align: center;
        position: relative;
        z-index: 12;
    }

    .hero-title-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-title-image img {
        width: auto;
        max-width: 105px;
        max-height: 72px;
        object-fit: contain;
    }

    .hero-subtitle {
        max-width: 560px;
        margin: 0;
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        line-height: 1.65;
        text-align: center;
    }

    .hero-description {
        max-width: 580px;
        margin: 0;
        font-size: clamp(.78rem, 3.4vw, .92rem);
        line-height: 1.9;
        text-align: center;
        opacity: .72;
    }

    .hero-buttons {
        width: 100%;
        max-width: 390px;
        margin: .65rem auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .4rem;
        flex-wrap: nowrap;
    }

    .hero-buttons .btn {
        flex: 1 1 0;
        width: auto;
        max-width: 185px;
        height: 46px;
        font-size: .95rem;
        white-space: nowrap;
    }

    .hero-visual {
        order: 2;
        width: 100%;
        max-width: 580px;
        height: clamp(315px, 88vw, 420px);
        margin: .25rem auto 0;
        transform: none;
        position: relative;
        z-index: 8;
    }

    .layer-leaves {
        width: min(120vw, 455px);
        height: min(120vw, 455px);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -47%) scale(.9);
    }

    .layer-leaves img,
    .layer-plant img {
        display: block;
        width: 100%;
        height: auto;
        max-width: none;
    }

    .layer-circle {
        width: clamp(215px, 62vw, 285px);
        height: clamp(215px, 62vw, 285px);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -43%);
    }

    .layer-plant {
        width: min(118vw, 470px);
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -61%);
    }

    .hero-info-cards {
        order: 3;
        width: 100%;
        max-width: 410px;
        margin: -1rem auto 0;
        padding-top: 4.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.35rem;
        position: relative;
        z-index: 11;
    }

    .hero-info-cards .top-card,
    .hero-info-cards .bottom-card {
        width: 100%;
        max-width: 380px;
        right: auto;
        left: auto;
        margin: 0;
        position: relative;
    }

    .hero-info-cards .top-card {
        height: 158px;
    }

    .hero-info-cards .bottom-card {
        height: 180px;
    }

    .hero-info-cards .card-bg {
        object-fit: fill;
    }

    .hero-info-cards .card-content {
        width: 100%;
        padding: 1.15rem 1.25rem;
        gap: .8rem;
        align-items: center;
        top: 0;
    }

    .hero-info-cards .card-content-bottom {
        margin-bottom: 0;
    }

    .hero-info-cards .card-icon {
        width: 38px;
        height: 38px;
        object-fit: contain;
        bottom: 0;
    }

    .hero-info-cards .card-text {
        gap: .45rem;
        text-align: right;
    }

    .hero-info-cards .card-text h3 {
        font-size: .87rem;
        line-height: 1.5;
    }

    .hero-info-cards .card-text p {
        font-size: .68rem;
        line-height: 1.8;
    }

    .hero-connection-lines {
        z-index: 9;
        overflow: visible;
    }

    .hero-connection-lines .dashed-line {
        stroke-width: 1.65px;
        stroke-dasharray: 4, 7;
    }

    .connection-dot {
        width: 8px;
        height: 8px;
    }

    .hero-pagination {
        left: 50%;
        right: auto;
        top: auto;
        bottom: .8rem;
        transform: translateX(-50%);
        flex-direction: row;
        gap: .2rem;
    }

    .hero-pagination .dot {
        width: 27px !important;
        height: 27px !important;
    }
}

@media (max-width: 420px) {
    .hero-section {
        padding-top: 1rem;
    }

    .hero-layout {
        padding-inline: .8rem;
    }

    .hero-visual {
        height: 310px;
    }

    .layer-leaves {
        width: 390px;
        height: 390px;
    }

    .layer-plant {
        width: 405px;
    }

    .layer-circle {
        width: 215px;
        height: 215px;
    }

    .hero-info-cards {
        max-width: 350px;
        padding-top: 3.8rem;
    }

    .hero-info-cards .top-card {
        height: 150px;
    }

    .hero-info-cards .bottom-card {
        height: 172px;
    }

    .hero-info-cards .card-content {
        padding: 1rem;
    }

    .hero-buttons .btn {
        height: 43px;
        font-size: .86rem;
    }
}


/* Roshd Sabz 0.5.4: login/search/why-us mobile refinements */
@media (max-width: 767.98px) {
    .navbar-main {
        padding-inline: 1rem;
        gap: .8rem;
        flex-wrap: wrap;
    }

    .navbar-main .user-actions {
        min-width: 0;
        max-width: 100%;
        flex: 0 1 auto;
    }

    .navbar-main .action-icons {
        width: auto;
        max-width: 100%;
        min-width: 0;
        transform: none;
        padding-inline: .85rem;
    }

    .navbar-main.search-active .user-actions {
        width: 100%;
        flex: 1 1 100%;
    }

    .navbar-main.search-active .action-icons {
        width: 100%;
        max-width: calc(100vw - 2rem);
        transform: none;
        padding-inline: .75rem;
        margin-inline: 0;
    }

    .navbar-main .search-content,
    .navbar-main.search-active .search-content,
    .navbar-main .search-input {
        min-width: 0;
    }

    .navbar-main.search-active .search-content {
        width: 100%;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .why-us-section .container {
        padding-inline: 1rem;
    }

    .why-us-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        align-items: start;
        gap: 1.2rem .95rem;
        max-width: 360px;
        margin: 0 auto;
        padding: 1.1rem 0 0;
    }

    .why-card,
    .why-card.card-up,
    .why-card.card-down {
        width: min(42vw, 165px);
        height: min(42vw, 165px);
        margin: 0 !important;
    }

    .glass-box {
        border-radius: 30px;
        padding: .85rem .65rem;
        box-shadow: 0 6px 20px rgba(0,0,0,.18), inset 0 0 42px -20px rgba(255,255,255,.8);
    }

    .stats-number {
        font-size: clamp(2rem, 8.6vw, 2.65rem);
        margin-bottom: .12rem;
    }

    .stats-text {
        font-size: clamp(.88rem, 3.3vw, 1rem);
        line-height: 1.55;
    }

    .icon-1 {
        width: min(53vw, 195px);
        top: -18px;
        bottom: auto;
        left: -45px;
    }

    .icon-2 {
        width: min(49vw, 182px);
        top: -48px;
        left: 50%;
        transform: translateX(-50%);
    }

    .icon-3 {
        width: min(52vw, 194px);
        top: -36px;
        right: -36px;
    }

    .icon-4 {
        width: min(47vw, 168px);
        top: -18px;
        right: -22px;
    }
}


/* Roshd Sabz 0.5.6: stable mobile header/search replacement and layered why-us art */
.why-card {
    overflow: visible !important;
    isolation: isolate;
}

.why-card .why-icon {
    z-index: 1 !important;
}

.why-card .glass-box {
    position: relative;
    z-index: 2 !important;
}

.rs-mobile-account,
.rs-mobile-search-close {
    display: none;
}

.rs-mobile-account {
    color: var(--color-Green, #2f6f43) !important;
    flex: 0 0 22px;
    width: 22px;
    height: 30px;
    text-decoration: none;
}

.rs-mobile-account svg {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    color: inherit;
    overflow: visible;
}

.rs-mobile-search-close {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #edf5e8;
    color: #2f6f43;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .navbar-main {
        display: flex !important;
        flex-flow: row nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
        padding: .8rem 1rem !important;
        min-height: 68px;
    }

    .navbar-main .rs-mobile-toggle {
        display: grid !important;
        order: 1;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
    }

    .navbar-main .navbar-brand {
        order: 2;
        flex: 0 1 auto;
        min-width: 0;
        margin: 0 !important;
    }

    .navbar-main .navbar-brand img,
    .navbar-main .navbar-brand .custom-logo {
        display: block;
        width: auto;
        max-width: 104px;
        max-height: 48px;
        object-fit: contain;
    }

    .navbar-main .user-actions {
        order: 3;
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100vw - 178px);
        margin: 0;
    }

    .navbar-main .nav-links {
        order: 4;
    }

    .navbar-main .login-btn {
        display: none !important;
    }

    .navbar-main .action-icons {
        direction: rtl;
        display: flex !important;
        flex-flow: row nowrap !important;
        justify-content: flex-start;
        align-items: center;
        width: auto;
        max-width: 100%;
        min-width: 0;
        gap: 9px;
        padding: .4rem .7rem;
        transform: none !important;
        box-sizing: border-box;
        overflow: visible;
    }

    /* Override the legacy rule that hid the first hide-on-search item on phones. */
    .navbar-main .action-icons .hide-on-search,
    .navbar-main .action-icons .hide-on-search:first-of-type,
    .navbar-main .rs-mobile-account {
        display: inline-flex !important;
        width: 22px !important;
        height: 30px;
        flex: 0 0 22px !important;
        margin: 0 !important;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    .navbar-main .rs-header-dropdown {
        display: block !important;
    }

    .navbar-main #search-btn {
        display: inline-flex !important;
        flex: 0 0 22px;
        width: 22px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    /* Keep the original visual order: search, wishlist, cart; account is appended. */
    .navbar-main #search-btn { order: 1; }
    .navbar-main .rs-wishlist-header { order: 2; }
    .navbar-main .rs-cart-header { order: 3; }
    .navbar-main .rs-mobile-account { order: 4; }
    .navbar-main .search-content { order: 5; }
    .navbar-main .rs-mobile-search-close { order: 6; }

    .navbar-main .search-content {
        display: none;
        width: 0;
        min-width: 0;
        max-width: none;
        opacity: 0;
        overflow: hidden;
    }

    /* Search replaces the complete mobile header row instead of wrapping below it. */
    .navbar-main.search-active {
        flex-wrap: nowrap !important;
        justify-content: stretch !important;
    }

    .navbar-main.search-active .rs-mobile-toggle,
    .navbar-main.search-active .navbar-brand,
    .navbar-main.search-active > .nav-links {
        display: none !important;
    }

    .navbar-main.search-active .user-actions {
        display: flex !important;
        order: 1;
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
    }

    .navbar-main.search-active .action-icons {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex: 1 1 100%;
        gap: 8px;
        padding: .45rem .55rem .45rem .45rem;
        transform: none !important;
        border-radius: 50px;
        background: #fff;
        box-shadow: 0 8px 25px rgba(47,111,67,.11);
    }

    .navbar-main.search-active .action-icons::before {
        opacity: 1;
    }

    .navbar-main.search-active #search-btn,
    .navbar-main.search-active .rs-wishlist-header,
    .navbar-main.search-active .rs-cart-header,
    .navbar-main.search-active .rs-mobile-account {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        flex: 0 0 0 !important;
        margin: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .navbar-main.search-active .search-content {
        display: flex !important;
        order: 1;
        flex: 1 1 auto;
        width: auto !important;
        min-width: 0;
        max-width: none !important;
        opacity: 1;
        overflow: hidden;
    }

    .navbar-main.search-active .search-input {
        display: block;
        width: 100%;
        min-width: 0;
        font-size: .76rem;
        text-overflow: ellipsis;
    }

    .navbar-main.search-active .search-divider {
        flex: 0 0 2px;
        margin-inline: 7px;
    }

    .navbar-main.search-active .rs-mobile-search-close {
        display: inline-flex !important;
        order: 2;
    }

    .why-us-section .container {
        padding-inline: 1rem;
        overflow: visible;
    }

    .why-us-wrapper {
        overflow: visible;
    }

    /* Icons remain behind their own glass cards, with only the outer parts visible. */
    .why-card .why-icon {
        pointer-events: none;
        z-index: 1 !important;
    }

    .why-card .glass-box {
        z-index: 2 !important;
    }

    .why-card .icon-1 {
        top: -28px;
        bottom: auto;
        left: -45px;
    }

    .why-card .icon-2 {
        top: -58px;
        left: 50%;
        transform: translateX(-50%);
    }

    .why-card .icon-3 {
        top: -46px;
        right: -36px;
    }

    .why-card .icon-4 {
        top: -28px;
        right: -22px;
    }
}

@media (max-width: 430px) {
    .navbar-main {
        padding-inline: .7rem !important;
        gap: 5px !important;
    }

    .navbar-main .rs-mobile-toggle {
        flex-basis: 39px;
        width: 39px;
        height: 39px;
    }

    .navbar-main .navbar-brand img,
    .navbar-main .navbar-brand .custom-logo {
        max-width: 86px;
        max-height: 43px;
    }

    .navbar-main .user-actions {
        max-width: calc(100vw - 146px);
    }

    .navbar-main.search-active .user-actions {
        max-width: 100%;
    }

    .navbar-main .action-icons {
        gap: 7px;
        padding-inline: .55rem;
    }

    .navbar-main .action-icons img,
    .navbar-main .action-icons svg,
    .navbar-main #search-btn img {
        width: 20px !important;
        height: 20px !important;
    }

    .navbar-main .rs-header-dropdown,
    .navbar-main .rs-mobile-account,
    .navbar-main #search-btn {
        flex-basis: 20px !important;
        width: 20px !important;
    }

    .navbar-main.search-active .rs-mobile-search-close {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }
}


/* Roshd Sabz 0.5.7: detached mobile menu and mobile quick-link portal */
.rs-mobile-quick-links,
.rs-mobile-menu-layer {
    display: none;
}

@media (max-width: 991.98px) {
    body.rs-mobile-menu-open {
        overflow: hidden !important;
        touch-action: none;
    }

    /* The desktop menu remains inside the header, but is never used on mobile. */
    .navbar-main > .nav-links,
    .navbar-main.rs-menu-open > .nav-links {
        display: none !important;
    }

    .rs-mobile-menu-layer {
        position: fixed;
        inset: 0;
        z-index: 2147483000;
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity .24s ease, visibility .24s ease;
    }

    .rs-mobile-menu-layer.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .rs-mobile-menu-backdrop {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        padding: 0;
        background: rgba(12, 32, 19, .48);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        cursor: pointer;
    }

    .rs-mobile-menu-panel {
        position: absolute;
        top: 0;
        right: 0;
        width: min(86vw, 370px);
        height: 100%;
        max-height: 100dvh;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 18px 16px 24px;
        background:
            radial-gradient(circle at 100% 0, rgba(184, 214, 106, .24), transparent 34%),
            #fff;
        box-shadow: -24px 0 70px rgba(18, 54, 31, .22);
        transform: translateX(104%);
        transition: transform .32s cubic-bezier(.22,.82,.28,1);
        outline: 0;
        z-index: 2;
    }

    .rs-mobile-menu-layer.is-open .rs-mobile-menu-panel {
        transform: translateX(0);
    }

    .rs-mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 2px 2px 18px;
        border-bottom: 1px solid rgba(47, 111, 67, .1);
    }

    .rs-mobile-menu-logo img {
        display: block;
        width: auto;
        max-width: 118px;
        max-height: 54px;
        object-fit: contain;
    }

    .rs-mobile-menu-close {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border: 0;
        border-radius: 14px;
        background: #eef5e9;
        color: #2f6f43;
        font-size: 1.7rem;
        line-height: 1;
        cursor: pointer;
    }

    .rs-mobile-menu-nav {
        padding: 16px 0 8px;
    }

    .rs-mobile-menu-list,
    .rs-mobile-menu-list .sub-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .rs-mobile-menu-list > li {
        margin-bottom: 7px;
    }

    .rs-mobile-menu-list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        padding: 10px 13px;
        border-radius: 14px;
        color: #233529;
        text-decoration: none;
        font-weight: 650;
        background: rgba(247, 250, 244, .78);
        transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .rs-mobile-menu-list a:hover,
    .rs-mobile-menu-list .current-menu-item > a,
    .rs-mobile-menu-list .current_page_item > a {
        color: #285d38;
        background: #eaf4e5;
        transform: translateX(-3px);
    }

    .rs-mobile-menu-list .sub-menu {
        margin: 5px 14px 2px 0;
        padding-right: 8px;
        border-right: 2px solid rgba(125, 170, 16, .25);
    }

    .rs-mobile-menu-list .sub-menu a {
        min-height: 42px;
        font-size: .78rem;
        font-weight: 500;
        background: transparent;
    }

    .rs-mobile-menu-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 14px;
        padding-top: 16px;
        border-top: 1px solid rgba(47, 111, 67, .1);
    }

    .rs-mobile-menu-actions a {
        display: grid;
        place-items: center;
        min-height: 46px;
        padding: 9px;
        border-radius: 14px;
        text-align: center;
        text-decoration: none;
        font-size: .72rem;
        font-weight: 700;
        color: #26432f;
        background: #eaf4e5;
    }

    .rs-mobile-menu-actions a:last-child {
        color: #fff;
        background: linear-gradient(135deg, #a9cd49 0%, #7daa10 100%);
    }

    .rs-mobile-quick-links {
        display: block;
        position: relative;
        width: 100%;
        padding: 20px 10px 13px;
        overflow: hidden;
        background: #f4f4f4;
        border-bottom: 1px solid rgba(47, 111, 67, .06);
    }

    .rs-mobile-quick-links__grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px;
        width: min(100%, 470px);
        margin: 0 auto;
        direction: rtl;
    }

    .rs-mobile-quick-link {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        min-width: 0;
        min-height: 92px;
        margin-top: 20px;
        padding: 44px 4px 12px;
        border-radius: 20px;
        background: rgba(255, 255, 255, .95);
        box-shadow: 0 15px 34px rgba(29, 47, 34, .08);
        color: #1f2822;
        text-decoration: none;
        isolation: isolate;
    }

    .rs-mobile-quick-link__art {
        position: absolute;
        top: -31px;
        left: 50%;
        z-index: 2;
        width: clamp(52px, 16vw, 76px);
        height: clamp(52px, 16vw, 76px);
        transform: translateX(-50%);
        display: grid;
        place-items: center;
        pointer-events: none;
    }

    .rs-mobile-quick-link__art img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 7px 10px rgba(33, 63, 44, .08));
    }

    .rs-mobile-quick-link__title {
        position: relative;
        z-index: 1;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: center;
        font-size: clamp(.67rem, 2.8vw, .82rem);
        font-weight: 750;
        line-height: 1.35;
    }

    .rs-mobile-quick-link:active {
        transform: scale(.97);
    }
}

@media (max-width: 370px) {
    .rs-mobile-quick-links {
        padding-inline: 6px;
    }

    .rs-mobile-quick-links__grid {
        gap: 5px;
    }

    .rs-mobile-quick-link {
        min-height: 84px;
        padding-inline: 2px;
        border-radius: 17px;
    }

    .rs-mobile-quick-link__title {
        font-size: .62rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .rs-mobile-quick-links {
        display: none !important;
    }
}


/* Roshd Sabz 0.5.8: compact mobile shortcuts and dedicated landing pages */
.rs-special-landing {
    width: 100%;
    overflow: hidden;
}

.rs-special-landing .asparagus-section,
.rs-special-landing .ai-section {
    margin-top: 0;
}

.rs-projects-page {
    min-height: 45vh;
}

@media (max-width: 767.98px) {
    .rs-mobile-quick-links {
        padding: 12px 7px 8px;
    }

    .rs-mobile-quick-links__grid {
        width: min(100%, 400px);
        gap: 6px;
    }

    .rs-mobile-quick-link {
        min-height: 70px;
        margin-top: 14px;
        padding: 31px 3px 8px;
        border-radius: 15px;
        box-shadow: 0 9px 22px rgba(29, 47, 34, .07);
    }

    .rs-mobile-quick-link__art {
        top: -22px;
        width: clamp(42px, 13vw, 56px);
        height: clamp(42px, 13vw, 56px);
    }

    .rs-mobile-quick-link__art img {
        filter: drop-shadow(0 4px 7px rgba(33, 63, 44, .07));
    }

    .rs-mobile-quick-link__title {
        font-size: clamp(.58rem, 2.45vw, .72rem);
        line-height: 1.25;
    }

    .rs-special-landing .asparagus-section,
    .rs-special-landing .ai-section {
        padding-top: 2rem;
    }
}

@media (max-width: 370px) {
    .rs-mobile-quick-links {
        padding: 10px 5px 7px;
    }

    .rs-mobile-quick-links__grid {
        gap: 4px;
    }

    .rs-mobile-quick-link {
        min-height: 64px;
        margin-top: 12px;
        padding: 28px 2px 7px;
        border-radius: 13px;
    }

    .rs-mobile-quick-link__art {
        top: -19px;
        width: 40px;
        height: 40px;
    }

    .rs-mobile-quick-link__title {
        font-size: .55rem;
    }
}


/* Roshd Sabz 0.5.9: five mobile shortcuts */
@media (max-width: 767.98px) {
    .rs-mobile-quick-links__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        width: min(100%, 440px);
        gap: 5px;
    }

    .rs-mobile-quick-link {
        min-height: 66px;
        margin-top: 13px;
        padding: 29px 2px 7px;
        border-radius: 14px;
    }

    .rs-mobile-quick-link__art {
        top: -20px;
        width: clamp(38px, 11.5vw, 51px);
        height: clamp(38px, 11.5vw, 51px);
    }

    .rs-mobile-quick-link__title {
        font-size: clamp(.52rem, 2.15vw, .68rem);
    }
}

@media (max-width: 370px) {
    .rs-mobile-quick-links__grid {
        gap: 3px;
    }

    .rs-mobile-quick-link {
        min-height: 60px;
        margin-top: 11px;
        padding: 26px 1px 6px;
        border-radius: 12px;
    }

    .rs-mobile-quick-link__art {
        top: -18px;
        width: 36px;
        height: 36px;
    }

    .rs-mobile-quick-link__title {
        font-size: .49rem;
    }
}


/* Roshd Sabz 0.6.0: configurable hero main-image sizes */
.layer-plant img[data-slide-index] {
    max-width: none !important;
    object-fit: contain;
    transform-origin: center center;
}

@media (max-width: 1199.98px) and (min-width: 768px) {
    .layer-plant img:not([style*="width"]) {
        width: 410px;
    }
}

@media (max-width: 767.98px) {
    .layer-plant img:not([style*="width"]) {
        width: 335px;
    }
}
