.gomla__product-card {
    position: relative !important;
    overflow: visible !important;
    border-radius: 10px !important;
    transition: all .25s ease;
    background: #fff !important;
}

.gomla__product-card:hover {
    transform: translateY(-2px);
}

.gomla__product-card.selected {
    border: 1.5px solid #b34f6d !important;
    background: #fff !important;
}


/* =========================================
========================================= */

.gomla__product-card[data-product-id="1786937504"]::before {
    content: "";
    display: none;
}

.gomla__product-card[data-product-id="1786937504"]::after {
    content: "خصم 15%";

    position: absolute;
    top: 38px;
    left: 16px;

    background: transparent !important;
    color: #ff0000;

    padding: 0;

    font-size: 15px;
    font-weight: 900;
    line-height: 1;

    text-shadow: 0 0 8px rgba(255,0,0,.18);

    z-index: 999;

    animation: discountMove 2s infinite ease-in-out;
}


/* =========================================
========================================= */

.gomla__product-card[data-product-id="1084433362"]::before {
    content: "عرض محدود!";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);

    background: #b34f6d;
    color: #fff;

    padding: 7px 18px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;

    white-space: nowrap;
    z-index: 999;
}

.gomla__product-card[data-product-id="1084433362"]::after {
    content: "خصم 20%";

    position: absolute;
    top: 38px;
    left: 16px;

    background: transparent !important;
    color: #ff0000;

    padding: 0;

    font-size: 15px;
    font-weight: 900;
    line-height: 1;

    text-shadow: 0 0 8px rgba(255,0,0,.18);

    z-index: 999;

    animation: discountMove 2s infinite ease-in-out;
}

.gomla__product-card[data-product-id="1084433362"] .gomla__product-card__pricing {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    flex-wrap: wrap !important;
}

.gomla__product-card[data-product-id="1084433362"] .gomla__product-card__pricing::after {
    content: "صابونية + مرطب + ليفة + بخاخ معقم + كريم تايلندي";

    display: inline-block;

    background: #f3fff6;
    color: #16a34a;

    border: 1px solid #16a34a;

    padding: 2px 6px;

    border-radius: 20px;

    font-size: 8.5px;
    font-weight: 800;

    line-height: 1.4;

    white-space: nowrap;
}


/* =========================================
========================================= */

.gomla__product-card[data-product-id="2053836122"]::before {
    content: "باقة التوفير الذكي!";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);

    background: #16a34a;
    color: #fff;

    padding: 7px 18px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;

    white-space: nowrap;
    z-index: 999;
}

.gomla__product-card[data-product-id="2053836122"]::after {
    content: "خصم 38%";

    position: absolute;
    top: 38px;
    left: 16px;

    background: transparent !important;
    color: #ff0000;

    padding: 0;

    font-size: 15px;
    font-weight: 900;
    line-height: 1;

    text-shadow: 0 0 8px rgba(255,0,0,.18);

    z-index: 999;

    animation: discountMove 2s infinite ease-in-out;
}

.gomla__product-card[data-product-id="2053836122"] .gomla__product-card__pricing {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    flex-wrap: wrap !important;
}

.gomla__product-card[data-product-id="2053836122"] .gomla__product-card__pricing::after {

    content: "روتين عناية متكامل • 9 منتجات للعناية";

    display: inline-block;

    background: #f3fff6;
    color: #16a34a;

    border: 1px solid #16a34a;

    padding: 2px 6px;

    border-radius: 20px;

    font-size: 8.5px;
    font-weight: 800;

    line-height: 1.4;

    white-space: nowrap;
}



/* =========================================

========================================= */

.gomla__title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-size:28px;
    font-weight:800;
    color:#679509;
}

.gomla__title::after{
    content:"";
    width:60px;
    height:60px;
    background-image:url("https://cdn.salla.sa/DGrGRD/QWE4KS2FC0X39VvmwNZ21xT7zhthyv8RdGqFvnsJ.png");
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    display:block;
}


/* =========================================

========================================= */

@keyframes pulseOffer {
    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.12);
    }

    100%{
        transform:scale(1);
    }
}

.gomla__title::after{
    animation:pulseOffer 1.8s infinite;
}

@keyframes discountMove{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(3px);
    }

    100%{
        transform: translateY(0px);
    }
}