#main > section:nth-child(11){
    min-height: 40px;

  @media screen and (min-width: 768px) {
  min-height: 180px;
  }
}
/* توحيد ارتفاع كروت المنتجات */
.products-grid > *,
.product-list > *,
[class*="product"] > article,
[class*="product-card"],
[class*="product-item"] {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* المحتوى الداخلي */
[class*="product-card"] > *,
[class*="product-item"] > * {
    flex: 1;
}

/* توحيد الصور */
[class*="product"] img {
    width: 100% !important;
    height: 320px !important;
    object-fit: cover !important;
}

/* تثبيت الزر والسعر */
button,
.price,
[class*="price"] {
    margin-top: auto !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    #main > section:nth-child(1) {
        padding: 0 !important;
        min-height: 180px !important;
    }

    #main > section:nth-child(1) .section-hero img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        display: block;
    }

}

/* Mobile Responsive */
@media (max-width: 768px) {

    #main > section:nth-child(1) {
        padding: 0 !important;
        min-height: 180px !important;
    }

    #main > section:nth-child(1) .section-hero img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        display: block;
    }


    #main > section:nth-child(5) {
        padding: 0 !important;
        min-height: 180px !important;
    }

    #main > section:nth-child(5) .section-hero img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        display: block;
    }

    #main > section:nth-child(9) {
        padding: 0 !important;
        min-height: 180px !important;
    }

    #main > section:nth-child(9) .section-hero img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        display: block;
    }
}

/* =========================
   ZID CATEGORIES -> SALLA STYLE
========================= */

/* section */
.section-categories {
    overflow: hidden;
}

/* title */
.section-categories h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* slider spacing */
.section-categories .embla__container {
    gap: 18px;
}

/* desktop cards */
.section-categories .embla__slide {
    flex: 0 0 14% !important;
}

/* tablet */
@media (max-width: 1024px) {
    .section-categories .embla__slide {
        flex: 0 0 24% !important;
    }
}

/* mobile */
@media (max-width: 768px) {

    .section-categories .embla__slide {
        flex: 0 0 55% !important;
    }

    .section-categories h2 {
        font-size: 24px;
    }

    .section-categories .embla__slide h3 {
        font-size: 15px !important;
    }
}

/* =========================
   CARD STYLE
========================= */

.section-categories .embla__slide a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
}

/* image wrapper */
.section-categories .overflow-hidden {
    border-radius: 18px !important;
    overflow: hidden;
}

/* image */
.section-categories .embla__slide img {

    width: 100%;

    aspect-ratio: 14 / 13 !important;

    object-fit: cover;

    border-radius: 18px !important;

    transition: transform .4s ease;
}

/* hover */
.section-categories .group:hover img {
    transform: scale(1.1);
}

/* title */
.section-categories .embla__slide h3 {

    margin: 0;

    text-align: center !important;

    font-size: 16px !important;
    font-weight: 600;

    line-height: 1.5;
}

/* =========================
   CONTROLS
========================= */

/* arrows */
.section-categories .embla__prev,
.section-categories .embla__next {

    width: 34px !important;
    height: 34px !important;

    border-radius: 999px !important;

    padding: 0 !important;

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

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(10px);

    transition: .3s ease;
}

/* hover */
.section-categories .embla__prev:hover,
.section-categories .embla__next:hover {

    background: rgba(255,255,255,.22);

    transform: translateY(-2px);
}

/* icons */
.section-categories .embla__prev svg,
.section-categories .embla__next svg {

    width: 14px !important;
    height: 14px !important;
}

/* progress */
.section-categories .embla__progress {
    height: 4px;
    border-radius: 999px;
    overflow: hidden;
}

.section-categories .embla__progress-bar {
    border-radius: 999px;
}



/* =========================
   SUBTITLE LIKE SALLA
========================= */

.section-categories h2::after {

    content: "كل اللي تحبه في مكان واحد";

    display: block;

    width: fit-content;

    margin: 12px auto 0;

    padding: 6px 18px;

    border-radius: 999px;

    background: rgb(5 5 5 / 6%);

    border: 1px solid rgb(0 0 0 / 8%);

    color: rgb(0 0 0 / 72%);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.6;

    backdrop-filter: blur(10px);
}


/* =========================================
   ZID PRODUCTS -> SALLA STYLE
========================================= */

/* card */
[data-product-card]{

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    padding: 14px;

    transition: .35s ease;

    border: 1px solid rgba(0,0,0,.05);

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

    height: 100%;
}

/* hover */
[data-product-card]:hover{

    transform: translateY(-6px);

    box-shadow:
    0 16px 40px rgba(0,0,0,.10);
}

/* =========================================
   IMAGE
========================================= */

[data-product-card] > a{

    border-radius: 20px !important;

    overflow: hidden;

    position: relative;
}

/* image */
[data-product-card] img{

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform .5s ease;
}

/* hover zoom */
[data-product-card]:hover img{

    transform: scale(1.08);
}

/* =========================================
   WISHLIST BUTTON
========================================= */

[data-wishlist-btn]{

    width: 42px !important;
    height: 42px !important;

    border-radius: 999px !important;

    background: rgba(255,255,255,.85) !important;

    backdrop-filter: blur(12px);

    border: none !important;

    box-shadow:
    0 4px 14px rgba(0,0,0,.12);

    transition: .3s ease;
}

/* icon */
[data-wishlist-btn] svg{

    width: 18px;
    height: 18px;
}

/* hover */
[data-wishlist-btn]:hover{

    transform: scale(1.1);

    background: white !important;
}

/* =========================================
   BADGES
========================================= */

.badge,
.bundle-offer-badge{

    border-radius: 999px !important;

    padding: 6px 12px !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    backdrop-filter: blur(10px);

    box-shadow:
    0 2px 8px rgba(0,0,0,.08);
}

/* =========================================
   TITLE
========================================= */

[data-product-card] h3{

    margin: 0;
}

[data-product-card] h3 a{

    font-size: 17px;

    font-weight: 700;

    color: #111;

    line-height: 1.6;

    text-decoration: none;

    transition: .3s ease;
}

/* hover */
[data-product-card]:hover h3 a{

    color: var(--theme-primary, #e53935);
}

/* =========================================
   PRICE
========================================= */

[data-product-card] p{

    margin: 0;
}

/* current price */
[data-product-card] .font-semibold,
[data-product-card] .text-foreground{

    font-size: 18px !important;

    font-weight: 700 !important;

    color: #111;
}

/* old price */
.line-through{

    opacity: .55;

    font-size: 14px !important;
}

/* discount badge */
.bg-success\/20{

    border-radius: 999px;

    padding: 5px 10px !important;

    font-size: 11px !important;

    font-weight: 700;

    background: rgba(34,197,94,.14) !important;
}

/* =========================================
   BUTTON
========================================= */

[data-add-to-cart],
[data-open-quick-view],
[data-notify-me-trigger]{

    width: 100% !important;

    height: 48px;

    border-radius: 14px !important;

    border: none !important;

    background: #111 !important;

    color: white !important;

    font-size: 15px;

    font-weight: 700;

    transition: .3s ease;
}

/* hover */
[data-add-to-cart]:hover,
[data-open-quick-view]:hover,
[data-notify-me-trigger]:hover{

    transform: translateY(-2px);

    background: #e53935 !important;
}

/* =========================================
   SLIDER SPACING
========================================= */

.products-embla__container{

    gap: 18px;
}

/* desktop */
.products-embla__slide{

    flex: 0 0 22% !important;
}

/* tablet */
@media(max-width:1024px){

    .products-embla__slide{

        flex: 0 0 32% !important;
    }
}

/* mobile */
@media(max-width:768px){

    .products-embla__slide{

        flex: 0 0 72% !important;
    }

    [data-product-card]{

        padding: 10px;

        border-radius: 20px;
    }

    [data-product-card] h3 a{

        font-size: 15px;
    }

    [data-add-to-cart],
    [data-open-quick-view],
    [data-notify-me-trigger]{

        height: 44px;

        font-size: 14px;
    }
}

/* =========================================
   QUANTITY INPUT
========================================= */

.qty-input{

    border-radius: 14px;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,.08);
}

.qty-input-btn{

    background: #f8f8f8 !important;

    transition: .3s ease;
}

.qty-input-btn:hover{

    background: #efefef !important;
}

/* =========================================
   RTL FIX
========================================= */

.products-embla{

    direction: rtl;
}

/* =========================================
   ZID BENEFITS -> SALLA STYLE
========================================= */

.section-benefits {

    background: transparent !important;

    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* grid */
.section-benefits .grid {

    gap: 24px;
}

/* item */
.section-benefits .grid > div {

    position: relative;

    overflow: hidden;

    background: #fff;

    border-radius: 24px;

    padding: 36px 24px;

    transition:
    transform .35s ease,
    box-shadow .35s ease;

    border: 1px solid rgba(0,0,0,.06);

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

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* hover */
.section-benefits .grid > div:hover {

    transform: translateY(-6px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.10);
}

/* =========================================
   BORDER ANIMATION
========================================= */

.section-benefits .grid > div::before,
.section-benefits .grid > div::after {

    content: "";

    position: absolute;

    background: var(--theme-primary, #e53935);

    transition: transform .35s ease;
}

/* top */
.section-benefits .grid > div::before {

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    transform: scaleX(0);

    transform-origin: right;
}

/* right */
.section-benefits .grid > div::after {

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    transform: scaleY(0);

    transform-origin: top;
}

/* hover */
.section-benefits .grid > div:hover::before {

    transform: scaleX(1);

    transform-origin: left;
}

.section-benefits .grid > div:hover::after {

    transform: scaleY(1);

    transform-origin: bottom;
}

/* =========================================
   ICONS
========================================= */

.section-benefits .space-y-2 {

    position: relative;

    padding-top: 78px;

    text-align: center;
}

/* icon circle */
.section-benefits .space-y-2::before {

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 58px;
    height: 58px;

    border-radius: 999px;

    background: rgba(229,57,53,.08);

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

    font-size: 26px;

    color: var(--theme-primary, #e53935);

    transition: .35s ease;
}

/* hover icon */
.section-benefits .grid > div:hover .space-y-2::before {

    background: var(--theme-primary, #e53935);

    color: white;

    transform:
    translateX(-50%)
    scale(1.08);
}

/* shipping icon */
.section-benefits .grid > div:nth-child(1) .space-y-2::before {

    content: "🚚";
}

/* thumbs up */
.section-benefits .grid > div:nth-child(2) .space-y-2::before {

    content: "👍";
}

/* fire */
.section-benefits .grid > div:nth-child(3) .space-y-2::before {

    content: "🔥";
}

/* award */
.section-benefits .grid > div:nth-child(4) .space-y-2::before {

    content: "🏆";
}

/* =========================================
   TITLES
========================================= */

.section-benefits h3 {

    font-size: 22px !important;

    font-weight: 700 !important;

    color: #111;

    margin-bottom: 10px;
}

/* text */
.section-benefits p {

    font-size: 15px !important;

    color: #666;

    line-height: 1.8;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .section-benefits .grid {

        gap: 16px;
    }

    .section-benefits .grid > div {

        padding: 28px 18px;

        border-radius: 18px;
    }

    .section-benefits .space-y-2 {

        padding-top: 68px;
    }

    .section-benefits .space-y-2::before {

        width: 50px;
        height: 50px;

        font-size: 22px;
    }

    .section-benefits h3 {

        font-size: 18px !important;
    }

    .section-benefits p {

        font-size: 13px !important;
    }
}

/* =========================================
   GLOBAL BANNERS RADIUS
   EXCEPT MAIN HERO
========================================= */

/* all hero banners except main hero */
.section-hero:not([section-id="af34b2c9-1c90-4ee6-8904-4a6b903b9e7b"]) {

    border-radius: 28px !important;

    overflow: hidden !important;

    margin-inline: 16px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

/* hero images */
.section-hero:not([section-id="af34b2c9-1c90-4ee6-8904-4a6b903b9e7b"]) picture,
.section-hero:not([section-id="af34b2c9-1c90-4ee6-8904-4a6b903b9e7b"]) img {

    border-radius: 28px !important;
}

/* gallery banners */
.section-gallery .group {

    border-radius: 24px !important;

    overflow: hidden !important;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

/* gallery images */
.section-gallery img {

    border-radius: 24px !important;

    transition:
    transform .45s ease;
}

/* hover */
.section-gallery .group:hover img {

    transform: scale(1.05);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .section-hero:not([section-id="af34b2c9-1c90-4ee6-8904-4a6b903b9e7b"]) {

        border-radius: 18px !important;

        margin-inline: 10px;
    }

    .section-hero:not([section-id="af34b2c9-1c90-4ee6-8904-4a6b903b9e7b"]) picture,
    .section-hero:not([section-id="af34b2c9-1c90-4ee6-8904-4a6b903b9e7b"]) img {

        border-radius: 18px !important;
    }

    .section-gallery .group,
    .section-gallery img {

        border-radius: 16px !important;
    }
}

/* =========================================
   ZID TESTIMONIALS -> SALLA STYLE
========================================= */

.section-testimonials {

    padding-top: 60px !important;
    padding-bottom: 60px !important;

    overflow: hidden;
}

/* =========================================
   SLIDER
========================================= */

.section-testimonials .embla__container {

    gap: 20px;
}

/* desktop */
.section-testimonials .embla__slide {

    flex: 0 0 32% !important;

    min-width: 0;
}

/* tablet */
@media(max-width:1024px){

    .section-testimonials .embla__slide {

        flex: 0 0 48% !important;
    }
}

/* mobile */
@media(max-width:768px){

    .section-testimonials .embla__slide {

        flex: 0 0 88% !important;
    }
}

/* =========================================
   CARD
========================================= */

.section-testimonials article {

    position: relative;

    background: #fff !important;

    border-radius: 18px !important;

    border: 1px solid rgba(0,0,0,.05) !important;

    padding: 28px !important;

    overflow: hidden;

    transition:
    transform .35s ease,
    box-shadow .35s ease;

    box-shadow:
    rgba(50,50,105,.08) 0px 2px 5px 0px,
    rgba(0,0,0,.04) 0px 1px 1px 0px;
}

/* hover */
.section-testimonials article:hover {

    transform: translateY(-6px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.10);
}

/* =========================================
   QUOTE ICON
========================================= */

.section-testimonials article::before {

    content: "❝";

    position: absolute;

    top: 16px;
    left: 20px;

    font-size: 72px;

    line-height: 1;

    color: rgba(0,0,0,.05);

    font-weight: 700;

    pointer-events: none;
}

/* =========================================
   STARS
========================================= */

.section-testimonials .text-warning {

    color: #f59e0b !important;
}

.section-testimonials .text-warning svg {

    width: 18px;
    height: 18px;
}

/* =========================================
   REVIEW TEXT
========================================= */

.section-testimonials p {

    font-size: 16px !important;

    line-height: 1.9;

    color: #333;

    margin-top: 22px !important;

    margin-bottom: 24px !important;

    position: relative;

    z-index: 2;
}

/* =========================================
   CUSTOMER NAME
========================================= */

.section-testimonials h3 {

    font-size: 15px !important;

    font-weight: 700 !important;

    color: #111;

    margin-top: auto;
}

/* =========================================
   PROGRESS BAR
========================================= */

.section-testimonials .embla__progress {

    height: 4px !important;

    border-radius: 999px;

    overflow: hidden;

    background: rgba(0,0,0,.06) !important;
}

.section-testimonials .embla__progress-bar {

    border-radius: 999px;

    background: var(--theme-primary, #e53935) !important;
}

/* =========================================
   NAVIGATION BUTTONS
========================================= */

.section-testimonials .embla__prev,
.section-testimonials .embla__next {

    width: 40px !important;
    height: 40px !important;

    min-width: 40px;
    min-height: 40px;

    border-radius: 999px !important;

    background: rgba(255,255,255,.75) !important;

    backdrop-filter: blur(12px);

    border: 1px solid rgba(0,0,0,.06);

    transition:
    transform .3s ease,
    background .3s ease,
    opacity .3s ease;

    box-shadow:
    0 4px 14px rgba(0,0,0,.08);
}

/* hover */
.section-testimonials .embla__prev:hover,
.section-testimonials .embla__next:hover {

    transform: translateY(-2px);

    background: white !important;
}

/* icons */
.section-testimonials .embla__prev svg,
.section-testimonials .embla__next svg {

    width: 18px;
    height: 18px;
}

/* disabled */
.section-testimonials .embla__prev:disabled,
.section-testimonials .embla__next:disabled {

    opacity: .35;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .section-testimonials {

        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .section-testimonials article {

        padding: 22px !important;

        border-radius: 16px !important;
    }

    .section-testimonials p {

        font-size: 14px !important;
    }

    .section-testimonials h3 {

        font-size: 14px !important;
    }

    .section-testimonials article::before {

        font-size: 54px;

        top: 12px;
        left: 14px;
    }
}

/* =========================================
   FOOTER TOP BORDER ONLY
========================================= */

#footer{

    position: relative;

    border-radius: 70px 70px 0 0 !important;

    overflow: hidden;

    margin-top: 80px;
}