#footer{
    background-color:#1a4236;
    color:white;
}

body > div.sticky.top-0.z-50 > header,
body > div.sticky.top-0.z-50 > header * {
    color: #ffffff !important;
    background-color:#1a4236;
}
body > div.sticky.top-0.z-50 > header > nav > ul > li:nth-child(1) > button > svg{
    color:white;
}
body > div.sticky.top-0.z-50 > header > nav > ul > li:nth-child(4) > a > svg{
    color:white;
}
button[commandfor="mobile-drawer"] span {
    background-color: #ffffff !important;
}


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

    #main > section:nth-child(1) {
        padding: 0 !important;
        min-height: 150px !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(4) {
        padding: 0 !important;
        min-height: 180px !important;
    }

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

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

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

#main > section.section-benefits.bg-secondary.px-4.py-6.md\:p-16 > div > div{
    display:flex;
    justify-content:center;
    gap:90px
}


#main > section:nth-child(2) button,
#main > section:nth-child(2) .btn,
#main > section:nth-child(3) button,
#main > section:nth-child(3) .btn,
#main > section:nth-child(7) button,
#main > section:nth-child(7) .btn {
    background-color: #1a4236;
    color: #ffffff;
}

footer#footer svg,
footer#footer svg path {
    fill: #fff !important;
    stroke: #fff !important;
}

footer#footer,
footer#footer * {
    color: #fff !important;
}

@media (max-width: 767px) {
    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    #main > section:nth-child(1) {
        padding: 0 !important;
        min-height: 150px !important;
    }
}

@media (max-width: 768px) {
    #main > section:nth-child(4) {
        padding: 0 !important;
        min-height: 180px !important;
    }
}

@media (max-width: 768px) {
    #main > section:nth-child(6) {
        padding: 0 !important;
        min-height: 140px !important;
    }
}

@media (min-width: 768px) {
    [section-id="605e5166-6639-48dd-a294-7a7dee9d2d9a"] {
        min-height: 531px !important;
    }
}

* ===== Richline block ===== */
.richline-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    color: #75727B !important;
    font-size: 0.875rem;
}

/* ===== Richline logo ===== */
.richline-footer img {
    height: 18px;
}

/* ===== Text styling (Zid + Richline) ===== */
.richline-footer p,
.border-border-light a p {
    letter-spacing: 0.17px !important;
    font-family: "Almarai", sans-serif !important;
    font-weight: 400 !important;
    font-size: 0.875rem !important;
    line-height: 1.43 !important;
    color: #ffffff !important;
    margin: 0 !important;
}

    .richline-footer img {
        height: 16px;
    }
}

/* ===== Add space under footer ===== */
.border-border-light.mt-6.border-t.pt-6 {
    margin-bottom: 50px !important;
}

/* PREMIUM PRODUCT CARDS */

[data-product-card]{
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    padding: 12px;
    transition: all .45s ease;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow:
        0 10px 30px rgba(0,0,0,.05),
        0 2px 8px rgba(0,0,0,.03);
    position: relative;
}

[data-product-card]:before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.8),
        rgba(255,255,255,0)
    );
    opacity:0;
    transition:.4s;
    pointer-events:none;
}

[data-product-card]:hover{
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0,0,0,.12),
        0 15px 30px rgba(0,0,0,.08);
}

[data-product-card]:hover:before{
    opacity:1;
}

/* PRODUCT IMAGE */

[data-product-card] > a:first-child{
    border-radius:20px;
    overflow:hidden;
}

[data-product-card] img{
    transition: transform .8s ease;
}

[data-product-card]:hover img{
    transform: scale(1.08);
}

/* IMAGE OVERLAY */

[data-product-card] > a:first-child:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.25),
        transparent 60%
    );
    opacity:0;
    transition:.4s;
}

[data-product-card]:hover > a:first-child:after{
    opacity:1;
}

/* PRODUCT TITLE */

[data-product-card] h3{
    margin-top:10px;
}

[data-product-card] h3 a{
    font-size:16px !important;
    font-weight:700 !important;
    line-height:1.6;
    transition:.3s;
}

[data-product-card]:hover h3 a{
    color:#d89ba8;
}

/* PRICE */

[data-product-card] p{
    font-size:20px !important;
    font-weight:800 !important;
    color:#111 !important;
}

/* BUTTON */

[data-product-card] .btn{
    border:none !important;
    border-radius:14px !important;
    background:linear-gradient(
        135deg,
        #1a4236,
        #1a4236
    ) !important;
    color:#fff !important;
    font-weight:700 !important;
    letter-spacing:.3px;
    transition:.4s;
    min-height:50px;
}

[data-product-card] .btn:hover{
    transform:translateY(-3px);
    box-shadow:
        0 10px 25px #1a4236;
}

/* WISHLIST */

[data-product-card] [data-wishlist-btn]{
    width:48px !important;
    height:48px !important;
    border-radius:50% !important;
    background:#1a4236 !important;
    backdrop-filter:blur(15px);
    color:#ffffff !important;
    box-shadow:
        0 10px 20px rgba(0,0,0,.1);
    transition:.3s;
}

[data-product-card] [data-wishlist-btn]:hover{
    transform:scale(1.15);
    color:#1a4236 !important;
}

/* BADGE */

[data-product-card] .badge{
    border:none !important;
    border-radius:999px !important;
    padding:8px 14px !important;
    background:#1a4236 !important;
    color:#fff !important;
    font-weight:700 !important;
    backdrop-filter:blur(10px);
}

/* SLIDER SPACING */

.products-embla__slide{
    padding-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){

[data-product-card]{
    border-radius:18px;
    padding:10px;
}

[data-product-card] h3 a{
    font-size:14px !important;
}

[data-product-card] p{
    font-size:18px !important;
}

[data-product-card] .btn{
    font-size:13px !important;
    min-height:44px;
}

}

/* PREMIUM BENEFITS SECTION */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"]{
    background:
        linear-gradient(135deg,#ffffff 0%,#fff8f9 100%) !important;
    padding: 80px 20px !important;
}

/* Cards */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    position:relative;
    overflow:hidden;
    transition:.45s ease;
    border:1px solid rgba(232,180,199,.25);

    box-shadow:
        0 10px 25px rgba(0,0,0,.05),
        0 2px 10px rgba(0,0,0,.03);
}

/* Top Accent Line */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #FED4D5,
        #E8B4C7
    );
}

/* Hover */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 50px rgba(232,180,199,.20),
        0 15px 30px rgba(0,0,0,.08);
}

/* Icon Circle */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] picture{
    width:90px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #FED4D5,
            #E8B4C7
        );

    box-shadow:
        0 15px 35px rgba(232,180,199,.30);

    transition:.4s;
}

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div:hover picture{
    transform:scale(1.1) rotate(8deg);
}

/* Icon */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] picture img{
    width:42px !important;
    height:42px !important;
    object-fit:contain;
    filter:brightness(0) invert(1);
}

/* Title */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] h3{
    font-size:20px !important;
    font-weight:800 !important;
    color:#111;
    margin-top:5px;
}

/* Description */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] p{
    font-size:14px !important;
    line-height:1.8;
    color:#666;
    max-width:220px;
    margin:auto;
}

/* Shine Effect */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div::after{
    content:"";
    position:absolute;
    top:-120%;
    left:-120%;
    width:250%;
    height:250%;
    background:
        linear-gradient(
            45deg,
            transparent,
            rgba(255,255,255,.6),
            transparent
        );
    transform:rotate(25deg);
    transition:1s;
}

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div:hover::after{
    left:100%;
}

/* Desktop */

@media(min-width:1024px){

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid{
    gap:30px !important;
}

}

/* Mobile */

@media(max-width:768px){

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid{
    grid-template-columns:1fr !important;
    gap:18px !important;
}

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div{
    padding:25px 20px;
}

}

/* GREEN THEME */

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div{
    border:1px solid rgba(26,66,54,.12);
}

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div::before{
    background:#1a4236;
}

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] picture{
    background:#1a4236;
    box-shadow:0 10px 25px rgba(26,66,54,.25);
}

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div:hover{
    box-shadow:
        0 15px 35px rgba(26,66,54,.15),
        0 8px 20px rgba(0,0,0,.05);
}

[section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] h3{
    color:#1a4236;
}

/* SMALLER MOBILE CARDS */

@media(max-width:768px){

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"]{
        padding:30px 12px !important;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid{
        grid-template-columns:repeat(2,1fr) !important;
        gap:12px !important;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div{
        padding:16px 10px !important;
        border-radius:16px;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] picture{
        width:55px;
        height:55px;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] picture img{
        width:24px !important;
        height:24px !important;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] h3{
        font-size:13px !important;
        line-height:1.4;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] p{
        font-size:11px !important;
        line-height:1.5;
    }

}

@media(max-width:768px){

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"]{
        padding:30px 12px !important;
    }

    /* 1 Card Per Row */
    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid{
        grid-template-columns:1fr !important;
        gap:12px !important;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .grid > div{
        flex-direction:row !important;
        text-align:right !important;
        align-items:center !important;
        justify-content:flex-start !important;
        gap:15px !important;

        padding:14px 16px !important;
        border-radius:16px;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] picture{
        width:55px;
        height:55px;
        flex-shrink:0;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] picture img{
        width:24px !important;
        height:24px !important;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] .space-y-2{
        text-align:right !important;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] h3{
        font-size:14px !important;
        margin-bottom:4px;
    }

    [section-id="0a0694bb-6d4a-4e21-adfa-ed7d8c1b70d6"] p{
        font-size:12px !important;
        max-width:none;
        margin:0;
    }

}


/* ================================================= */
/* ============== RESPONSIVE HERO HEIGHT =========== */
/* ================================================= */

@media (max-width: 768px) {

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

    #main > section:nth-child(4) {
        min-height: 150px !important;
    }

    #main > section:nth-child(6) {
        min-height: 140px !important;
    }

}

@media (min-width: 769px) {

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

    #main > section:nth-child(4) {
        min-height: 550px !important;
    }

    #main > section:nth-child(6) {
        min-height: 500px !important;
    }

}