.order-section{

   background:
    linear-gradient(
        180deg,
        #ffffff,
        #faf7f0
    );

    position:relative;

    overflow:hidden;
    padding: 50px;
}
.order-section .section-description{
    color: #2B0B47 !important;
}

.order-section .section-title{
    color:#2B0B47;
}

.order-section .section-title span{
    color:var(--primary-gold);
}

.order-card{

    position:relative;

    /* background:
    rgba(255,255,255,.08); */
  background:
    linear-gradient(
        135deg,
        #42136A,
        #2B0B47
    );
    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.1);

    border-radius:24px;

    overflow:hidden;

    transition:.5s;

    height:100%;
}

.order-card:hover{

    transform:
    translateY(-12px);

    border-color:
    var(--primary-gold);

    box-shadow:
    0 0 25px rgba(216,178,103,.3),
    0 20px 50px rgba(0,0,0,.3);
}

.order-img{

    position:relative;

    overflow:hidden;
}

.order-img img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;
}

.order-card:hover img{

    transform:
    scale(1.08);
}

.badge-tag{

    position:absolute;

    top:15px;
    left:15px;

    background:
    var(--primary-gold);

    color:#111;

    padding:8px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;
}

.order-content{

    padding:25px;
}

.order-content h4{

    color:#fff;

    font-weight:700;
    font-size: 20px;

    /* margin-bottom:12px; */
}

.order-content p{

    color:
    rgba(255,255,255,.7);

    line-height:1.8;
}

.order-bottom{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-top:20px;
}

.price{

    font-size:24px;

    font-weight:700;

    color:
    var(--primary-gold);
}

.order-btn{

    padding:10px 22px;

    border-radius:40px;

    text-decoration:none;

    background:
    var(--primary-gold);

    color:#111;

    font-weight:600;

    transition:.4s;
}

.order-btn:hover{

    color:#111;

    transform:
    translateY(-3px);

    box-shadow:
    0 0 20px rgba(216,178,103,.4);
}



.extra-product{
    display:none;
}

.view-more-btn{

    border:none;

    padding:14px 40px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        var(--primary-gold),
        #f5d48e
    );

    color:#111;

    font-weight:700;

    transition:.4s;
}

.view-more-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 20px rgba(216,178,103,.4),
    0 0 40px rgba(216,178,103,.2);
}
/* =========================
   TABLET
========================= */

@media (max-width: 991.98px){

    .order-section{
        padding:60px 20px;
    }

    .order-img img{
        height:220px;
    }

    .order-content{
        padding:20px;
    }

    .order-content h4{
        font-size:20px;
    }

    .price{
        font-size:22px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767.98px){

    .order-section{
        padding:50px 15px;
    }

    .order-section .section-title{
        font-size:2rem;
        line-height:1.3;
    }

    .order-section .section-description{
        font-size:14px;
        line-height:1.8;
    }

    .order-card{
        border-radius:20px;
    }

    .order-img img{
        height:220px;
    }

    .order-content{
        padding:18px;
    }

    .order-content h4{
        font-size:18px;
        margin-bottom:10px;
    }

    .order-content p{
        font-size:14px;
        line-height:1.7;
    }

    .order-bottom{
        gap:12px;
    }

    .price{
        font-size:20px;
    }

    .order-btn{
        padding:8px 18px;
        font-size:14px;
    }

    .view-more-btn{
        width:100%;
        max-width:300px;
        padding:12px 25px;
        font-size:15px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 575.98px){

    .order-section{
        padding:40px 12px;
    }

    .order-section .section-title{
        font-size:1.8rem;
    }

    .order-img img{
        height:200px;
    }

    .badge-tag{
        top:10px;
        left:10px;
        padding:6px 12px;
        font-size:11px;
    }

    .order-content{
        padding:16px;
    }

    .order-content h4{
        font-size:17px;
    }

    .order-content p{
        font-size:13px;
    }

    .price{
        font-size:18px;
    }

    .order-btn{
        padding:8px 15px;
        font-size:13px;
    }

    .order-bottom{
        align-items:center;
        justify-content:space-between;
    }

}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media (max-width: 360px){

    .order-section .section-title{
        font-size:1.6rem;
    }

    .order-img img{
        height:180px;
    }

    .order-content h4{
        font-size:16px;
    }

    .price{
        font-size:17px;
    }

    .order-btn{
        padding:7px 12px;
        font-size:12px;
    }

}