/* ==========================================================
STYLE.CSS — Main Stylesheet
----------------------------------------------------------
Author: TheOwlCoders
Description: Global styling, layout, colors, typography,
utilities and component base styles.
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* -----------------------------------------
1. ROOT VARIABLES (colors, fonts)
----------------------------------------- */
:root {
--primary-color: #34A27F;
--secondary-color: #C8F2DF;
--dark-green: #0F8A59;
--light-black: #121212;
--orange-color: rgb(228, 77, 12);
--gray-text: #5c5c5c;

--font-main: "Manrope", sans-serif;
--font-head: "Futura PT", sans-serif;
}

/* ============================================
Typography System (Based on Your Requirement)
============================================ */

/* H1 – Futura Bold */
h1 {
font-family: "Futura PT", sans-serif;
font-weight: 700;
}

/* Subheader – Manrope SemiBold */
.subheader,
h2,
h3,
h4,
h5 {
font-family: "Futura PT", sans-serif;

}

p {
font-family: "Manrope", sans-serif;
}

/* Body Text – Manrope Regular */
body,
p, p span,
li {
font-family: "Manrope", sans-serif;
font-weight: 400;
}

/* CTA Buttons – Futura Medium */
.btn,
.button,
.cta {
font-family: "Manrope", sans-serif;
font-weight: 600;
font-size: 16px;
}


/* -----------------------------------------
2. RESET / GLOBAL
----------------------------------------- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: var(--body-font);
background-color: #fff;
color: var(--dark);
line-height: 1.6;
}

img {
max-width: 100%;
display: block;
}

a {
text-decoration: none;
color: inherit;
font-family: var(--font-main);

}
a.active{
    color: transparent;
    border: 0;
}

.btn.btn-theme {
background-color: var(--dark-green);
color: #fff;
font-size: 14px;
font-weight: 500;
line-height: 2;
padding: 5px 16px;
border-radius: 0.65rem;
}

a.btn.btn-theme.btn-line {
background: transparent;
border-color: #fff;
}

a.btn.btn-theme.btn-line:hover {
background: var(--orange-color) !important;
color: #fff !important;
}

.btn-solid {
background-color: var(--dark-green);
border-radius: 12px;
color: #fff;
}

ul {
list-style: none;
padding-left: 0;
}

.gap-block {
padding: 70px 0px 65px 0;
}

.header-top h2 {
font-size: 40px;
font-weight: 600 !important;
text-align: center;
color: var(--light-black);
}

.header-top h2.text-white {
font-weight: 500 !important;
}

.header-top {
margin-bottom: 50px;
}

/* .container {
max-width: 1200px;
} */
.container-fluid {
max-width: 1800px;
}

/* Chrome, Safari, Edge */
input::placeholder {
color: #000;
font-size: 16px;
font-family: "Manrope", sans-serif;
font-weight: 500;
}

/* Firefox */
input::-moz-placeholder {
color: #000;
font-size: 15px;
letter-spacing: 0.3px;
}

/* Internet Explorer 10–11 */
input:-ms-input-placeholder {
color: #000;
font-size: 15px;
letter-spacing: 0.3px;
}

/* Microsoft Edge Legacy */
input::-ms-input-placeholder {
color: #000;
font-size: 15px;
letter-spacing: 0.3px;
}

td,
th {
padding: 8px 10px;
text-align: left;
font-family: var(--font-main);
}

/* -----------------------------------------
Onload Offer on Top
----------------------------------------- */
/* Popup overlay */
.welcome-popup {
position: fixed;
background: #34A27F;
display: none;
align-items: center;
justify-content: center;
z-index: 1000;
width: 100%;
padding: 7px 0;
}

/* Popup box */
.popup-content h2 {
margin: 0;
font-size: 14px;
text-align: center;
font-weight: 500;
}

/* Close button */
.popup-close {
position: absolute;
top: 2px;
right: 14px;
background: none;
border: none;
font-size: 26px;
cursor: pointer;
line-height: 13px;
color: #fff;
}

/* Fade animation */
@keyframes popupFade {
from {
transform: scale(0.9);
opacity: 0;
}

to {
transform: scale(1);
opacity: 1;
}
}

/* -----------------------------------------
HEADER / NAVBAR
----------------------------------------- */
.top-header-gap {
margin-top: 30px;
transition: all 0.3s ease-in-out 0s;
}

.site-header {
width: 100%;
position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 1000;
background: #ffffff;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.10);
padding: 8px 0;
}

.mobile-search {
display: none;
}

.search-box.position-relative.active {
display: block;
position: absolute !important;
width: 100%;
left: 0;
right: 0;
bottom: 10px;
}

/* After scroll */
.site-header.is-sticky {
position: fixed;
animation: slideDown 0.35s ease-out;
padding: 6px 60px !important;
}

@keyframes slideDown {
from {
transform: translateY(-100%);
}

to {
transform: translateY(0);
}
}

.search-box {
max-width: 450px;
margin: auto;
}

.search-box input[type="text"] {
border-radius: 40px;
background: #f5f5f5;
padding-left: 20px;
width: 100%;
height: 48px;
border: 1px solid #dddddd;
}

.search-box .search-icon {
right: 20px;
top: 10px;
color: #000;
font-size: 20px;
}

.menu-btn {
border-radius: 7px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 23px;
    padding: 0;
    min-width: 44px;
    height: 44px;
}

.search-box input {
border: none;
background: transparent;
width: 100%;
outline: none;
}


.main-wrapper {
padding-top: 96px;
}

.main-wrapper.gap-mainblock {
padding-top: 80px;
}

/* -----------------------------------------
4. HERO SECTION
----------------------------------------- */
.hero-slider {
overflow: hidden;
}

.hero-slider .slick-list {
overflow: visible;
/* allow side slides to show */
}

.hero-slider .slick-slide {
opacity: 0.5;
transform: scale(0.98);
transition: all 0.4s ease;
}

.hero-slider .slick-center {
opacity: 1;
transform: scale(1);
}

/* Optional: rounded banner like AJIO */
.hero-slider img {
border-radius: 16px;
width: 100%;
display: block;
}

/* Slick dots wrapper */
.hero-slider .slick-dots {
position: relative;
bottom: 30px;
display: flex !important;
justify-content: center;
gap: 0px;
}

/* Dot button */
.hero-slider .slick-dots li button {
width: 10px;
height: 10px;
border-radius: 50%;
background: #ccc;
border: none;
padding: 0;
font-size: 0;
cursor: pointer;
}

/* Remove default slick before content */
.hero-slider .slick-dots li button:before {
content: none;
}

/* Active dot */


/* -----------------------------------------
Brand Slider
----------------------------------------- */
.partner-logo-slider {
width: 100%;
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
position: relative;
background: #f5f5f5;
padding: 15px 0;
margin-top: 15px;
}

.brand-slider-block .container-fluid {
max-width: none;
}

.partner-logo-slide {
display: flex;
align-items: center;
gap: 20px;
animation: partner-logo 30s linear infinite;
}

.partner-logo-slide span {
width: 28px;
}

.partner-logo-slide:hover {
animation-play-state: paused;
}

.partner-logo-slide div {
font-size: 16px;
color: #5C5C5C;
font-weight: 600;
font-family: var(--font-main);
}

@keyframes partner-logo {
from {
transform: translateX(0);
}

to {
transform: translateX(-50%);
}
}

@media only screen and (max-width: 1025px) {
.partner-logo-slide {
gap: 20px;
}

.partner-logo-slide img {
height: 45px;
}
}

/* -----------------------------------------
Shop by category
----------------------------------------- */
.category-box .category-icon {
width: 150px;
border-radius: 50%;
overflow: hidden;
height: 150px;
margin: auto;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10);
border: 1px solid #DDDDDD;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s ease-in-out 0s;
}
.category-box .category-icon:hover {
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
}
.category-box .category-icon:hover img{
    transform: scale(1.1);
}
.category-box .category-icon img{
      transition: transform 0.3s ease-in-out; /* only here */
    width: 100%;
}
.category-box p {
font-size: 18px;
color: #000;
margin-top: 15px;
font-family: var(--font-head);
line-height: 1.2;
}

.category-slider .slick-prev,
.category-slider .slick-next {
background-color: #fff;
border: 1px solid #B5B5B5;
width: 52px;
height: 52px;
border-radius: 15px;
}

.category-slider .custom-arrow {

display: flex !important;
align-items: center;
justify-content: center;
position: absolute;
top: 40%;
transform: translateY(-50%);
z-index: 10;
cursor: pointer;
transition: background 0.3s ease;
}

.category-slider .custom-arrow i {
font-size: 18px;
color: var(--dark-green);
}

.category-slider.slick-slider {
padding: 0 50px;
}

.category-slider .custom-arrow.active i {
color: #fff;
}

/* ACTIVE arrow */
.category-slider .custom-arrow.active {
background: var(--dark-green);
}

/* Positions */
.category-slider .slick-prev {
left: 0px !important;
}

.category-slider .slick-next {
right: 0px !important;
}

/* Remove default slick arrows */
.slick-prev:before,
.slick-next:before {
content: none;
}

/* -----------------------------------------
Shop by Store
----------------------------------------- */
.store-block {
background: #e8fff5;
background: -webkit-linear-gradient(180deg, rgba(232, 255, 245, 1) 57%, rgba(199, 255, 255, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(232, 255, 245, 1) 57%, rgba(199, 255, 255, 1) 100%);
background: linear-gradient(180deg, rgba(232, 255, 245, 1) 57%, rgba(199, 255, 255, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E8FFF5", endColorstr="#C7FFFF", GradientType=0);
}

.store-card {
background: #eafff9;
border: 1px solid rgba(54, 162, 127, 0.50);
border-radius: 18px;
padding: 14px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: all 0.3s ease-in-out 0s;
}

.store-card:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
transform: translateY(-2px);
border-color: var(--orange-color);
}

.store-logo {
background: #fff;
padding: 40px 0;
display: flex;
align-items: center;
justify-content: center;
}

.store-logo img {
max-width: 80%;
max-height: 70px;
object-fit: contain;
}

.orange-btn {
background: var(--orange-color) !important;
}

.orange-btn:hover {
background: var(--dark-green) !important;
color: #fff !important;
border-color: var(--orange-color) !important;
}

.cashback-btn {
background: var(--dark-green);
color: #fff;
text-align: center;
padding: 14px 0;
border-radius: 10px;
font-weight: 600;
margin-top: 12px;
font-size: 18px;
width: 100%;
}

.cashback-btn:hover,
.cashback-btn:focus,
.cashback-btn:active {
background: var(--orange-color) !important;
color: #fff !important;
border-color: var(--orange-color) !important;
}

.store-slider .store-card{
margin-bottom: 15px;
}

.store-slider .slick-slide {
padding: 10px 6px;
/* 20px total gap (10 left + 10 right) */

}


/* -----------------------------------------
DEALS
----------------------------------------- */
.deal-card {
border: 2px solid #E6E6E6;
padding: 10px;
border-radius: 20px;
transition: all 0.3s ease-in-out 0s;
}

.deal-card:hover {
border: 1px solid var(--orange-color);
}

.viewers-box {
text-align: center;
font-family: var(--font-main);
font-weight: 600;
color: var(--gray-text);
font-size: 16px;
background-color: color-mix(in srgb,
var(--orange-color) 10%,
transparent);
padding: 10px 0;
border-radius: 12px;
margin: 6px 0;
}

.viewers-box span {
font-weight: 700;
color: var(--orange-color);
margin: 0 5px;
}

.viewers-box .bi {
color: var(--orange-color);
}

.deal-card .deal-item {
background: #ffffff;
background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#EFEFEF", GradientType=0);
padding: 30px 0;
position: relative;
    min-height: 200px;
    display: flex;
}

.deal-card .deal-item img {
width: auto;
max-height: 170px;
margin: auto;
}

.deal-card > .deal-item > img {max-width: 150px;
}

.deal-card > .deal-item  {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 230px;
    border-radius:15px
}

.deal-card .deal-item span.deal-dealer {
position: absolute;
border: 1px solid #DDDDDD;
border-radius: 30px;
background: #fff;
top: 6px;
padding: 6px 10px;
right: 15px;
}

.deal-card .deal-item span.deal-dealer img {
max-height: 14px;
}

.deal-card p {
font-size: 14px;
color: var(--light-black);
font-weight: 500;
margin-top: 15px;
}

.current-price {
font-size: 16px;
font-weight: 800;
color: var(--light-black);
margin-right: 5px;
font-family: var(--font-main);
}

.old-deal {
color: #A2A2A2;
font-weight: 700;
margin-right: 5px;
font-family: var(--font-main);
font-size: 14px;
text-decoration: line-through;
}

.green-offer {
color: #34A27F !important;
fill: #34A27F !important;
}

.deep-green-offer {
color: #0F8A59 !important;
fill: #0F8A59 !important;
}

.best-deal-offer {
color: #E44D0C !important;
fill: #E44D0C !important;
}

.deal-offer {
font-weight: 700;
font-family: var(--font-main) !important;
font-size: 15px;
}

.offer-time {
font-family: var(--font-main) !important;
color: var(--gray-text) !important;
margin: 0 !important;
}

/* -----------------------------------------
How it Work
----------------------------------------- */
.how-work {
background: #F2FFF9;
background: -webkit-linear-gradient(180deg, rgba(242, 255, 249, 1) 0%, rgba(200, 242, 223, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(242, 255, 249, 1) 0%, rgba(200, 242, 223, 1) 100%);
background: linear-gradient(180deg, rgba(242, 255, 249, 1) 0%, rgba(200, 242, 223, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F2FFF9", endColorstr="#C8F2DF", GradientType=0);
}

.step-box {
position: relative;
background: #128c57;
border-radius: 18px;
padding: 20px;
color: #ffffff;
overflow: hidden;
min-height: 230px;
transition: all 0.3s ease-in-out 0s;
}

.step-box:hover .step-no {
background-color: #fff;
color: var(--dark-green);
}

/* Step number */
.step-no {
transition: all 0.3s ease-in-out 0s;
border: 1.5px solid rgba(255, 255, 255, 0.8);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px;
font-family: var(--font-main);
width: 3vw;
height: 3vw;
}

/* Title */
.step-title h3 {
font-size: 30px;
font-weight: 700;
margin-bottom: 10px;
}

/* Description */
.step-box p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 0;
}

/* Abstract background shapes */
.step-box::before {
content: "";
position: absolute;
width: 240px;
height: 240px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.08);
right: -80px;
top: 50px;
}

.step-box::after {
content: "";
position: absolute;
width: 360px;
height: 360px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.04);
right: -140px;
bottom: -160px;
}

.max-width-work {
max-width: 1200px;
margin: auto;
}

/* -----------------------------------------
Live Offer
----------------------------------------- */

.live-offer {
background-image: url(../images/live-offer.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.offer-card {
background: #F1FFF8;
background: -webkit-linear-gradient(180deg, rgba(241, 255, 248, 1) 0%, rgba(201, 242, 224, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(241, 255, 248, 1) 0%, rgba(201, 242, 224, 1) 100%);
background: linear-gradient(180deg, rgba(241, 255, 248, 1) 0%, rgba(201, 242, 224, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F1FFF8", endColorstr="#C9F2E0", GradientType=0);
border-radius: 15px;
overflow: hidden;
}

.offer-card .offercard-left {
padding: 15px;
}

.offer-card .offercard-left .offer-brand {
background: #fff;
max-width: 126px;
margin: 5px;
padding: 8px;
border-radius: 8px;
}

.offer-card .offercard-left .offer-brand img {
max-height: 24px;
}

.offer-card .offercard-left .offers-details {
margin-top: 40%;
}

.offer-card .offercard-left .offers-details h2 {
color: var(--light-black);
font-size: 24px;
font-weight: 500;
font-family: var(--font-main);
}

.offer-card .offercard-left .offers-details h3 {
color: var(--dark-green);
font-size: 30px;
font-weight: 800;
font-family: var(--font-main);
}

a.btn.btn-theme.btn-white {
background-color: #fff;
color: var(--dark-green) !important;
font-weight: 500;
border-color: var(--orange-color);
}

a.btn.btn-theme.btn-white:hover {
background-color: var(--orange-color) !important;
color: #fff !important;
border-color: var(--orange-color);
}

.offercard-right .offer-day {
font-family: var(--font-main);
bottom: 15px;
background: #fff;
z-index: 1;
padding: 11px 25px;
right: 15px;
border-radius: 12px;
font-weight: 800;
color: var(--dark-green);
}

.offercard-right .offer-day span {
font-weight: 800;
}


/* -----------------------------------------
Credit Card Offer
----------------------------------------- */
.creditcard-offer {
background: var(--dark-green);
background: -webkit-linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(9, 85, 54, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(9, 85, 54, 1) 100%);
background: linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(9, 85, 54, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--dark-green)", endColorstr="#095536", GradientType=0);

}

.credit-box {
background: #042417;
background: -webkit-linear-gradient(180deg, rgba(4, 36, 23, 1) 0%, rgba(4, 24, 16, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(4, 36, 23, 1) 0%, rgba(4, 24, 16, 1) 100%);
background: linear-gradient(180deg, rgba(4, 36, 23, 1) 0%, rgba(4, 24, 16, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#042417", endColorstr="#041810", GradientType=0);
border-radius: 16px;
overflow: hidden;
}

.credit-box .credit-card-image {
right: 0;
bottom: -29px;
width: 34%;

}

.credit-box .credit-card-image::after {
background: #0f0303;
background: -webkit-linear-gradient(180deg, rgba(15, 3, 3, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: -moz-linear-gradient(180deg, rgba(15, 3, 3, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: linear-gradient(180deg, rgba(15, 3, 3, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0F0303", endColorstr="#000000", GradientType=0);
content: "";
z-index: 10;
position: absolute;
z-index: 10;
bottom: 0;
height: 100%;
width: 100%;
}

/* .credit-box .offer-details {
margin-top: 12%;
position: relative;
z-index: 1;
} */
.credit-box .offer-details {
position: absolute;
bottom: 8%;
z-index: 1;
left: 5%;
}

.credit-box .offer-details h3 {
color: var(--dark-green);
font-size: 30px;
font-weight: 800;
font-family: var(--font-main);
letter-spacing: -2px;
}

.bank-logo img {
width: auto;
max-height: 30px;
}

.bank-logo {
top: 7%;
left: 6%;
}

.header-top.d-flex {
margin-bottom: 24px;
}

.for-mobileview {
display: none;
}

.btn.btn-theme:hover {
background-color: var(--orange-color);
color: var(#fff);
}

/* -----------------------------------------
Gift Card
----------------------------------------- */

a.btn.btn-theme.btn-line.btn-line-dark {
border-color: var(--light-black);
color: var(--light-black);
}

.giftcard-box {
padding: 0 7px;
}


/* -----------------------------------------
App Block
----------------------------------------- */

.app-block {
background-image: url(../images/app-block-bg.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: 0 2%;
border-radius: 25px;
padding: 0 40px;

}

.app-text-box {
margin-left: 10%;
}

.app-text-box h2 {
font-size: 44px;
font-weight: 600;
}

.app-text-box p {
font-size: 16px;
}

img.review-image {
max-width: 200px;
margin-bottom: 20px;
}

/* -----------------------------------------
Share Block
----------------------------------------- */
.max-width-lg {
max-width: 980px;
margin: auto;
}

.share-box {
padding: 20px;
border-radius: 15px;
position: relative;
overflow: hidden;
transition: all 0.3s ease-in-out 0s;
}

.share-box:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
transform: scale(1.01);
}

.share-box .share-icon {
margin-bottom: 70px;
}

.share-box h2 {
font-size: 50px;
font-weight: 700;
margin-bottom: 0;
}

.share-box p {
font-size: 22px;
color: #000;
}

.brand-image {
position: absolute;
bottom: -35px;
right: -44px;
width: 222px;
opacity: 0.2;
}



.share-blue {
background: #DFF4FF;
background: -webkit-linear-gradient(180deg, rgba(223, 244, 255, 1) 0%, rgba(42, 171, 238, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(223, 244, 255, 1) 0%, rgba(42, 171, 238, 1) 100%);
background: linear-gradient(180deg, rgba(223, 244, 255, 1) 0%, rgba(42, 171, 238, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#DFF4FF", endColorstr="#2AABEE", GradientType=0);
}

.share-green {
background: #DFFFF4;
background: -webkit-linear-gradient(180deg, rgba(223, 255, 244, 1) 0%, rgba(52, 162, 127, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(223, 255, 244, 1) 0%, rgba(52, 162, 127, 1) 100%);
background: linear-gradient(180deg, rgba(223, 255, 244, 1) 0%, rgba(52, 162, 127, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#DFFFF4", endColorstr="#34A27F", GradientType=0);
}


/* -----------------------------------------
FAQ
----------------------------------------- */
.faq-block {
background-color: #ECECEC;
padding: 80px 0;
}

.faq-right {
border-radius: 15px;
overflow: hidden;
}

#accordionFaq .accordion-item {
background-color: transparent;
border-color: #5A5A5A;
border-width: 0px 0px 1px 0px;
border-radius: 0;
margin: 20px 0;
padding-bottom: 10px;
}

#accordionFaq .accordion-item h2.accordion-header .accordion-button {
font-size: 1.15rem;
color: var(--light-black);
font-family: var(--font-main);
background-color: transparent;
font-weight: 500;
padding-left: 0;
}

.accordion-body,
.accordion-body p {
font-family: var(--font-main);
color: #232323;
font-size: 0.9rem;
font-weight: 400;
}

.faq-left .accordion-body,
.faq-left .accordion-body p {
padding: 0;
}

.accordion-button:focus {
z-index: 3;
outline: 0;
box-shadow: none;
}

/* -----------------------------------------
FOOTER
----------------------------------------- */
.footer-block {
background: var(--light-black);
color: #fff;
padding: 50px 30px;
}

.d-flex.applink img {
max-width: 100px;
}

.footer-links {
text-align: left;
padding-left: 35px;
}

.footer-links h3 {
font-size: 20px;
font-family: var(--font-main);
font-weight: 600;
margin-bottom: 20px;
}

.footer-links ul.footer-link li {
margin-bottom: 5px;
}

ul.footer-link li a {
color: #8C8C8C;
line-height: 7.5px;
}

.footer-bottom {
border-top: 1px solid #787878;
margin-top: 20px;
padding-top: 30px;
}

.copy-text {
color: #8C8C8C;
}

#backToTop {
color: var(--light-black);
background-color: var(--primary-color);
}

/* -----------------------------------------
7. UTILITIES (handy shortcut classes)
----------------------------------------- */
.text-muted-small {
color: #777;
font-size: 14px;
}

.section-padding {
padding: 80px 0;
}

.btn-rounded {
border-radius: 50px;
}

.shadow-soft {
box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}


/* -----------------------------------------
8. BACK TO TOP BUTTON
----------------------------------------- */
#backToTop {
position: fixed;
bottom: 20px;
right: 20px;
display: none;
z-index: 998;
}

/* -----------------------------------------
9. Login and Register Modal
----------------------------------------- */
.form-modal-box {
background-color: #fff;
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: 20px;
padding: 30px;
}

.modal-close-btn {
position: absolute;
top: 10px;
right: 15px;
color: #000;
opacity: 1;
background-image: none;
}

.form-modal-box .modal-title {
color: var(--light-black);
font-size: 28px;
font-family: var(--font-main);
margin-bottom: 15px;
}

h2.modal-title {
font-size: 22px;
}

.modal-top p {
color: #4A5565;
}

.form-modal-box .modal-body form input {
background-color: transparent;
border-radius: 10px;
height: 46px;
padding-left: 20px;
}

.or-text {
position: relative;
z-index: 10;
}

.or-text p {
position: relative;
z-index: 12;
color: #6A7282;
}

.or-text::after {
position: absolute;
width: 100%;
height: 1px;
background-color: #D1D5DC;
content: "";
left: 0;
z-index: 8;
top: 12px;
}

.or-text::before {
background-color: #fff;
content: "";
width: 50px;
height: 50px;
left: 0;
right: 0;
z-index: 9;
position: absolute;
margin: auto;
}

.google-block ul li a:hover {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.google-block ul li a {
display: block;
border-radius: 50%;
width: 48px;
height: 48px;
transition: all 0.3s ease-in-out 0s;
}

p.term-text {
font-size: 14px;
color: #4A5565;
}

p.term-text a {
color: #155DFC;
}

button.btn.login-button-modal {
width: 100%;
background: var(--dark-green);
color: #fff;
padding: 10px 0;
    font-weight: 500;
    font-size: 16px !important;
    letter-spacing: 1px;
}

.password-text {
text-align: center;
color: var(--dark-green);
font-family: var(--font-main);
display: block;
margin-top: 15px;
}

/* Chrome, Safari, Edge */
.form-modal-box .modal-body form input::placeholder {
color: var(--light-black);
font-size: 16px;
font-weight: 400;
letter-spacing: 1px;
}

/* Firefox */
.form-modal-box .modal-body form inputinput::-moz-placeholder {
color: var(--light-black);
font-size: 20px;
font-family: "Futura PT", sans-serif;
font-weight: 400;
letter-spacing: 1px;
}

/* Internet Explorer 10–11 */
.form-modal-box .modal-body form input:-ms-input-placeholder {
color: #fff;
font-size: 20px;
font-family: "Futura PT", sans-serif;
font-weight: 400;
letter-spacing: 1px;
}

/* Microsoft Edge Legacy */
.form-modal-box .modal-body form input::-ms-input-placeholder {
color: var(--light-black);
font-size: 20px;
font-family: "Futura PT", sans-serif;
font-weight: 400;
letter-spacing: 1px;
}


/* Rewards Page Styles */

.brand-info {
border: 1px solid #34a27f7d;
padding: 24px;
border-radius: 24px;
position: relative;
}

.brand-info .brand-logo-box {
width: 100%;
background: #ffffff;
background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 232, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 232, 1) 100%);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 232, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#E8E8E8", GradientType=0);
border-radius: 16px;
padding: 25px 0;
display: flex;
align-items: center;
justify-content: center;
}

.brand-info .brand-logo-box img {
max-height: 28px;
margin: auto;
display: block;
}

.brand-detail-item h2 {
font-size: 54px;
font-weight: 600;
color: #000;
}

.brand-detail-item p {
font-size: 16px;
color: #5c5c5c;
margin-bottom: 0;
font-weight: 500;
}

.brand-detail-ratng ul li {
color: #FFA500;
margin: 0 2px;
font-size: 12px;
}

.brand-detail-ratng p {
margin-bottom: 0;
font-size: 13px;
}

p.review,
p.review span {
color: #7a7a7a;
font-size: 13px;
font-weight: 600;
}
p.review{
    text-align: center;
}
.brand-detail-ratng {
background: #f5f5f5;
margin: auto;
padding: 5px 6px;
border-radius: 28px;
max-width: 140px;
}

.caseback-reword,
.reward-box {
border: 1px solid #34a27f7d;
padding: 20px;
border-radius: 24px;
}

.caseback-reword h3 {
font-size: 22px;
font-weight: 600;
color: #000;
margin-bottom: 10px;
margin-top: 10px;
}

.caseback-reword ul li a, .caseback-reword ul li  {
font-size: 14px;
font-weight: 500;
color: var(--dark-green);
display: flex;
align-items: center;
line-height: 1.5;
transition: all 0.3s ease;
margin-bottom: 8px;
}
ul.list-bulet  li{
    position: relative;
    padding-left: 20px;
    color: var(--gray-text);
}
ul.list-bulet  li::after{
content: "\2022";
position: absolute; 
left: 0;
color: var(--dark-green);
top: 0;
}
.caseback-reword ul li a span {
font-size: 16px;
line-height: 1;
}

.caseback-reword ul li a:hover {
color: var(--orange-color);
}

/* reward-box */
.reward-box-item {
background: #C8F2DF;
background: -webkit-linear-gradient(180deg, #c8f2df 0%, #F4FBF8 100%);
background: -moz-linear-gradient(180deg, rgba(200, 242, 223, 1) 0%, #F4FBF8 100%);
background: linear-gradient(180deg, rgba(200, 242, 223, 1) 0%, #F4FBF8 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#C8F2DF", endColorstr="#F4FBF8", GradientType=0);
padding: 25px 20px;
border-radius: 15px;
}

.reward-box-item h3 {
font-family: var(--font-main);
color: var(--light-black);
font-size: 16px;
font-weight: 600;
margin-bottom: 0px;
}

.delivery-item span {
color: var(--dark-green);
font-weight: 600;
font-size: 2.5rem;
line-height: 1;
margin-right: 4px;
font-family: var(--font-head);
}

.delivery-item {
display: flex;
justify-content: flex-start;
align-items: center;

font-family: var(--font-main);
font-weight: 600;
font-size: 17px;
}

ul.list-bulet li {
list-style: circle;
margin-left: 22px;
margin-bottom: 5px;
}

ul.list-bulet li  {
line-height: 1.7;
}




.text-link {
color: #34a27f;
font-family: var(--font-main);
font-weight: 600;
font-size: 14px;
}

.big-links {
color: white;
background-color: var(--dark-green);
font-style: italic;
font-family: var(--font-head);
width: 100%;
border-radius: 15px;
padding: 15px;
font-size: 18px;
transition: all 0.3s ease;
}

.big-links:hover {
background-color: var(--orange-color);
color: white;
text-decoration: none;
}


/* Cashback Block  */
.casback-header.text-start h2 {
font-size: 32px;
font-weight: 600;
}

.cashblock-content {
max-width: 1200px;
}

.accordion.caseback-acordian .accordion-item {
background-color: transparent;
    border-width: 1px 0 1px 0;
    border-radius: 0;
    border-color: #ececec;
}

.accordion.caseback-acordian .accordion-item .accordion-header .accordion-button {
background-color: transparent;
border-radius: 0;
border: 0;
box-shadow: none;
font-size: 20px;
font-family: var(--font-main);
font-weight: 500;
padding-left: 0;
color: #000;

}

.faq-left .accordion-item:not(:first-of-type) {
border-top: 1px solid #dee2e6 !important;
}

.faq-left #accordionFaq .accordion-item:not(:first-of-type) {
border-top: 0px solid #dee2e6 !important;
}

ol.list-group-numbered {
list-style: decimal;
}

ol.list-group-numbered li,
ul.list-dots li {
margin-bottom: 5px;
}

ul.list-dots li {
position: relative;
padding-left: 15px;
}

ul.list-dots li::before {
content: "\2022";
/* Unicode for a solid bullet (disc) */
position: absolute;
left: 0;
font-size: 16px;
/* You can control this size independently */
color: #000;
/* You can control this color independently */
}

/* Best Card Page */
.card-banner-block {
background: #042417;
background: -webkit-linear-gradient(90deg, rgba(4, 36, 23, 1) 0%, rgba(15, 138, 89, 1) 79%);
background: -moz-linear-gradient(90deg, rgba(4, 36, 23, 1) 0%, rgba(15, 138, 89, 1) 79%);
background: linear-gradient(90deg, rgba(4, 36, 23, 1) 0%, rgba(15, 138, 89, 1) 79%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#042417", endColorstr="var(--dark-green)", GradientType=1);
padding: 60px 0;
}

.breadcrumb li {
color: var(--secondary-color) !important;
font-size: 15px;
letter-spacing: 0.5px;
}

.breadcrumb li a {
color: var(--secondary-color) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
color: var(--secondary-color) !important;
}
.breadcrumb nav {
    padding: 0 0px 20px 30px;
}
.breadcrumb.breadcrumb-light li {
color: #828282 !important;
font-size: 14px;
letter-spacing: 0.5px;
font-weight: 700 !important;
font-family: var(--font-main);
}

.breadcrumb.breadcrumb-light li a {
color: #828282 !important;
font-weight: 500;
font-family: var(--font-main);
}

.breadcrumb.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
color: var(--secondary-color) !important;
}

.card-banner-block .banner-content h1 {
font-size: 3vw;
font-weight: 600 !important;
}

.card-banner-block .banner-content {
max-width: 700px;
}

.banner-content p {
font-size: 16px;
color: var(--secondary-color);
font-weight: 500;
margin: 0;
}

/* Filter */
.filter-subline {
font-size: 14px;
font-weight: 500;
color: var(--primary-color);
}

.filter-box {
border: 1px solid #e5e5e5;
border-radius: 14px;
padding: 15px;
 max-width: 320px;
background: #fff;
}

/* Range Wrapper */
.range-wrapper {
position: relative;
height: 3px;
}

.renge-output p {
font-size: 14px;
font-weight: 500;
color: var(--primary-color);
}

/* Base Track */
.range-wrapper::before {
content: "";
position: absolute;
width: 100%;
height: 2px;
background: var(--dark-green);
border-radius: 10px;
}

/* Active Track */
.range-track {
position: absolute;
height: 2px;
background: var(--dark-green);
border-radius: 10px;
left: 0;
right: 0;
}

/* Range Inputs */
.range-wrapper input[type="range"] {
position: absolute;
width: 100%;
top: -5px;
background: none;
pointer-events: none;
appearance: none;
}

/* Thumb */
.range-wrapper input[type="range"]::-webkit-slider-thumb {
pointer-events: auto;
appearance: none;
width: 12px;
height: 12px;
background: var(--dark-green);
border-radius: 50%;
cursor: pointer;
}

.range-wrapper input[type="range"]::-moz-range-thumb {
width: 16px;
height: 16px;
background: var(--dark-green);
border-radius: 50%;
cursor: pointer;
}

/* Hide default track */
.range-wrapper input[type="range"]::-webkit-slider-runnable-track {
background: transparent;
}

.range-wrapper input[type="range"]::-moz-range-track {
background: transparent;
}

/* Inputs */
.price-input {
background: #e6e6e6;
border: none;
font-weight: 500;
font-family: var(--font-main);
font-size: 14px;
line-height: 1.3;
}
.brand-select p {
    font-size: 14px;
}
.brand-select {
border-top: 1px solid #e4e4e4;
}

/* Brand List */
.brand-list {
display: flex;
flex-direction: column;
gap: 10px;
}

.brand-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
cursor: pointer;
}

.brand-item input {
accent-color: #0f8b57;
}

.brand-select input {
max-height: 42px;
}

.brand-select input::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #cccccc;
font-size: 14px;
font-weight: 500;
}

.brand-select input::-moz-placeholder {
/* Firefox 19+ */
color: #cccccc;
font-size: 14px;
font-weight: 500;
}

.brand-select input:-ms-input-placeholder {
/* IE 10+ */
color: #cccccc;
font-size: 14px;
font-weight: 500;
}

.brand-select input:-moz-placeholder {
/* Firefox 18- */
color: #cccccc;
font-size: 14px;
font-weight: 500;
}

.brand-list .brand-item {
font-size: 12px;
font-family: var(--font-main);
font-weight: 500;
color: var(--light-black);
}

.credit-box.card-best-card .offer-details h2 {
font-size: 28px;
}

.credit-box.card-best-card {
margin-bottom: 0px;
}

.credit-box.card-best-card .offer-details h3 {
font-size: 25px;

}

.credit-box.card-best-card .card-left .bank-logo {

}

.credit-box.card-best-card .offer-details span {
width: 16px;
}

.sort-select {
border: 1px solid #d7d7d7;
width: 280px;
padding: 0px 0px 0 10px;
border-radius: 10px;
justify-content: space-between;
}

.sort-select label {
font-family: var(--font-main);
color: #b1b1b1;
font-weight: 500;
margin-right: 15px;
font-size: 14px;
}

.sort-select select {
border: 0;
width: 200px;
font-size: 14px;
}

select,
option {
font-family: var(--font-main);
font-size: 14px;
}

.btn-group.list-grid-view {
background: #f1f1f1;
margin-left: 15px;
}

.btn.btn-default.selected {
background-color: #c0c0c0;
}

.pagination .page-item.active .page-link {
background-color: var(--dark-green);
color: #fff;

}

.pagination .page-item .page-link {
border-radius: 7px;
    color: #828282;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 1.4;
    border: 0;
    font-size: 14px;
    margin: 0 2px;
}

a.btn.btn-outline.prev-next-btn {
color: var(--gray-text);
font-size: 12px;
border: 1px solid #e6e6e6;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 6px 8px;
    /* font-weight: 500 !important; */
}

.pagination-block {
border-top: 1px solid #f5f5f5;
padding-top: 25px;
}

.filter-icon {
background: var(--gray-text);
width: 36px;
height: 36px;
border-radius: 4px;
justify-content: center;
align-items: center;
color: #fff;
display: none;
position: absolute;
}

.close-filter {
display: none;
}

.categories-box p {
font-weight: 600;
font-size: 20px;
color: var(--light-black);
text-align: center;
margin-bottom: 0;
margin-top: 10px;
}

.categories-box {
border: 2px solid #e5e5e5;
padding: 12px;
border-radius: 14px;
}



/* Side Menu  */
body.menu-open::after {
background: #000;
opacity: 0.6;
position: absolute;
z-index: 1500;
content: "";
width: 100%;
height: 100%;
top: 0;

}

body.menu-open {
position: relative;
}

.side-bar.view-sidebar {
right: 0;
}

.side-bar {
position: fixed;
z-index: 2000;
background: #fff;
width: 100%;
max-width: 350px;
right: -100%;
top: 0;
height: 100%;
transition: all 0.3s ease-in-out 0s;
}

.accordion-sidemenu {
width: 100%;

-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}

.accordion-sidemenu li.open .link {
background-color: #c8f2df;
}

.accordion-sidemenu .link {
cursor: pointer;
display: block;
padding: 12px 12px 15px 10px;
color: #4D4D4D;
font-size: 14px;
font-weight: 700;
position: relative;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
border-radius: 5px;
}

.accordion-sidemenu li:last-child .link {
border-bottom: 0;
}

.accordion-sidemenu li i {
position: absolute;
top: 16px;
left: 12px;
font-size: 18px;
color: #595959;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}

.accordion-sidemenu li i.bi-chevron-down {
right: 12px;
left: auto;
font-size: 16px;
}


.accordion-sidemenu li.open .link {
color: var(--orange-color);
}

.accordion-sidemenu li.open i {
color: #b63b4d;
}

.accordion-sidemenu li.open i.bi-chevron-down {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}

.accordion-sidemenu li.default .submenu {
display: block;
}

/**
* Submenu
-----------------------------*/
.accordion-sidemenu .submenu {
display: none;
font-size: 14px;
border-left: 1px solid #D0D5DD;
margin-left: 20px;
}


.accordion-sidemenu .submenu a {
display: block;
text-decoration: none;
color: #191D23;
padding: 12px;
padding-left: 22px;
-webkit-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
font-weight: 700;
margin-left: 10px;
margin-top: 6px;
border-radius: 5px;
position: relative;
}

.accordion-sidemenu .submenu a::after {
position: absolute;
content: "\F285";
width: 10px;
height: 10px;
right: 17px;
font-family: "bootstrap-icons";
opacity: 0;
}

.accordion-sidemenu .submenu a:hover {
background: #c8f2df;
}

.accordion-sidemenu .submenu a:hover::after {
opacity: 1;
}

.close-menubar {
position: absolute;
right: 33px;
top: 2px;
font-size: 37px;
}

.sidebar-menucontent {
padding-top: 80px;
padding-left: 30px;
padding-right: 30px;
}

.sidebar-menucontent h2 {
font-size: 16px;
font-weight: 600;
color: var(--gray-text);
font-family: var(--font-main);
}




.brand-logo-box.bank-logo img {
padding: 0;
height: auto;
width: auto;
max-width: 120px;
}


.deal-details-image img {
height: auto;
max-height: 400px !important;
}

.deal-item.deal-brand {
background: #fff;
top: 0;
padding: 0px;

}

.deal-item.deal-brand span.deal-dealer {
width: auto;
display: inline-block;
position: relative;
top: 0;
}

h2.product-name {
font-size: 40px;
font-weight: 700;
color: #252525;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;

}

.price.pro-details-price .current-price {
font-size: 32px;
}

.price.pro-details-price .old-deal {
font-size: 24px;
}

.price.pro-details-price .viewers-box {
color: var(--dark-green);
background-color: #c8f2df !important;
font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
}

.price.pro-details-price {
margin: 20px 0 35px;
border-bottom: 1px solid #dadada;
padding-bottom: 14px;
}

.link-share ul li {
margin: 0 15px;
cursor: pointer;
}

.link-share ul li p {
margin-bottom: 0;
margin-top: 5px;
font-size: 14px;
color: #4A5568;
font-weight: 600;
text-align: center;
}

.link-share ul li a img,
.icon-circle img {
margin: auto;
}

a.hand-arrow-link {
display: flex;
align-items: center;
}

a.hand-arrow-link img {
width: 36px;
margin-right: 15px;
}

.accordion.product-details .accordion-item {
border-color: #cfcfcf !important;
padding-bottom: 25px;
}

.bulet-list {
list-style-type: disc;
margin-left: 40px;
}

/*  
RESPONSIVE STYLES SHOULD GO TO:  
assets/css/responsive.css  
*/
#loginModal {
z-index: 2005;
}

/* Profile block */
.profile-block {
background: var(--dark-green);
padding:  0;
position: relative;
}

.profile-block .profile-left ul li a {
display: flex;
border-left: 4px solid transparent;
padding-left: 50px;
font-size: 14px;
color: #fff;
padding-top: 10px;
padding-right: 5px;
padding-bottom: 10px;
align-items: center;
transition: all 0.3s ease-in-out 0s;
margin-bottom: 7px;
}

.profile-block .profile-left ul li a:hover,
.profile-block .profile-left ul li a.active {
background-color: #ffffff42;
border-left: 4px solid #fff;
}

.profile-block .profile-left ul li a span {
margin-right: 14px;
}

.profile-icon,
.close-profile {
display: none;
}

.backgrould-gray {
background-color: #f9fafb !important;
}

.profile-setting-box {
max-width: 980px;
margin: 50px auto 0;
}

.page-header {
font-size: 22px;
color: #0A0A0A;
font-family: var(--font-main);
font-weight: 500;
}

.profile-setting-box .my-profile-box {
background-color: #fff;
box-shadow: 0 5px 7px rgba(0, 0, 0, 0.07);
border-radius: 10px;
padding: 25px;
margin-top: 20px;
}

.profile-intro {
padding-bottom: 20px;
border-bottom: 1px solid #E5E7EB;
margin-bottom: 25px;
}

.profile-intro .profile-info .profile-pic {
background: var(--dark-green);
width: 96px;
height: 96px;
border-radius: 50%;
color: #fff;
justify-content: center;
display: flex;
align-items: center;
font-size: 30px;
font-family: var(--font-main);
margin-right: 15px;
}

.profile-id h3 {
margin-bottom: 5px;
}

.profile-id p {
font-size: 16px;
color: #4A5565;
}

a.profile-btn {
border: 2px solid var(--dark-green);
font-family: var(--font-main);
font-size: 16px;
font-weight: 500;
padding: 8px 15px;
border-radius: 7px;
}

a.profile-btn span {
color: var(--dark-green);
display: none;
}

.profile-details .mail-icon {
background-color: #F3F4F6;
border-radius: 10px;
margin-right: 20px;
width: 48px;
height: 48px;
display: flex;
justify-content: center;
align-items: center;
}

.profile-details .mail-text p.email-hder {
margin: 0;
font-size: 14px;
color: #4A5565;
line-height: 1.4;
font-weight: 500;
}

.profile-details .mail-text p.email-text {
color: #0A0A0A;
font-size: 16px;
margin: 0;
line-height: 1.3;
font-weight: 500;
}

.kyc-box {
background: #F0FDF4;
padding: 20px;
border-radius: 10px;
display: flex;
justify-content: space-between;
margin-top: 50px;
border: 1px solid #B9F8CF;
}

.kyc-box p {
margin: 0;
}

.kyc-box .kyc-box-text h4 {
font-size: 18px;
color: #016630;
font-weight: 400;
margin-bottom: 0;
}

.kyc-box .kyc-box-text p {
color: #00A63E;
font-size: 14px;
}

.kyc-box-pending {
background: #fffbeb;
border-color: #fde68a;
}

.kyc-box-pending .kyc-box-text h4 {
color: #92400e;
}

.kyc-box-pending .kyc-box-text p {
color: #b45309;
}

.profile-setting-header h3 span.sub-icon {
background-color: #e4efe8;
display: flex;
width: 40px;
height: 40px;
border-radius: 8px;
justify-content: center;
align-items: center;
}

.profile-setting-header h3 {
font-size: 20px;
color: #0A0A0A;
font-family: var(--font-main);
}

.mail-box .right-text a {
color: #0F8A59;
font-size: 16px;
font-family: var(--font-main);
font-weight: 500;
}

.form-switch.custom-select-switch .form-check-input {
background-color: #eef0f3;
width: 44px;
height: 24px;
}

.form-switch .form-check-input {
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
border-color: #f5f5f5;
background-color: #eef0f3;
}

.form-switch .form-check-input:focus {
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
box-shadow: none;
}

.form-switch.custom-select-switch .form-check-input:checked {
background-color: var(--dark-green);
border-color: var(--dark-green);
}

.shadow-nerrow {
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
}

.price-box .header-text {
color: #0A0A0A;
font-size: 18px;
font-weight: 500;
}

.price-box h3.price {
color: var(--dark-green);
font-size: 36px;
font-weight: 600;
font-family: var(--font-main);
}

.price-box p.cashback-text {
color: #364153;
font-size: 14px;
font-weight: 500;
}

.my-profile-box .page-header {
color: #0A0A0A;
font-size: 20px;
font-weight: 500;
}

.filter-block.sticky-top {
z-index: 999;
}

.custom-select {
position: relative;
width: 180px;
}

.custom-select select {
width: 100%;
padding: 8px 36px 8px 14px;
font-size: 15px;
border: 1px solid #dcdcdc;
border-radius: 10px;
background-color: #fff;
color: #000;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
cursor: pointer;
font-family: var(--font-main);
font-weight: 500;
}

/* Dropdown arrow */
.custom-select::after {
content: "▾";
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
font-size: 14px;
color: #666;
pointer-events: none;
}

/* Focus state */
.custom-select select:focus {
outline: none;
border-color: #bfbfbf;
}

.patment-table table tr th,
.patment-table table tr td {
border-color: #E5E7EB;
padding: 12px 10px;
font-family: var(--font-main);
font-size: 14px;
color: #364153;
vertical-align: middle;
}

.patment-table table tr th {
background-color: #f9fafb;
font-weight: 600;
}

.patment-table table tr td,
.patment-table table tr td span {
font-weight: 500;
color: #0A0A0A;

}

a.btn.btn-theme.no-bg-btn,
a.btn.btn-theme.no-bg-btn span {
background: transparent;
color: var(--dark-green);
padding: 0;
}

.btn.btn-theme.btn-line:hover {
background-color: #fff;
color: var(--dark-green);
}

.btn.btn-theme.btn-line.btn-line-dark:hover {
background-color: var(--dark-green);
color: #fff;
}

.form-control.login-input::-webkit-input-placeholder {
color: #999 !important;
}

.form-control.login-input::-moz-placeholder {
color: #999 !important;
;
}

.form-control.login-input:-ms-input-placeholder {
color: #999 !important;
;
}

.form-control.login-input::placeholder {
color: #999 !important;
;
}

#dealList {
width: 300px;
margin: 20px auto;
display: none;
/* 🔥 hidden initially */
position: absolute;
background: #fff;
width: 100%;
top: 80%;
border-radius: 13px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
padding: 15px;
text-align: left;

}

.deal-item {
padding: 10px;
border-bottom: 1px solid #eee;
font-family: var(--font-main);
font-size: 15px;
font-weight: 500;
color: #363636;
}

#searchInput::-webkit-input-placeholder,
#searchInput {
/* Chrome/Opera/Safari */
font-size: 15px;
font-weight: 500;
color: #363636;
font-family: var(--font-main);
}

#searchInput::-moz-placeholder {
/* Firefox 19+ */
color: #363636;
font-size: 15px;
font-weight: 500;
font-family: var(--font-main);
}

#searchInput:-ms-input-placeholder {
/* IE 10+ */
color: #363636;
font-size: 15px;
font-weight: 500;
font-family: var(--font-main);
}

#searchInput:-moz-placeholder {
/* Firefox 18- */
color: #363636;
font-size: 15px;
font-weight: 500;
font-family: var(--font-main);
}

/* Scrollbar */
/* Scroll area height (approx 8 items visible) */
.terms-scroll {
max-height: 260px;
/* adjust based on item height */
overflow-y: auto;
padding-right: 10px;
}

/* Chrome / Edge / Safari */
.terms-scroll::-webkit-scrollbar {
width: 6px;
}

.terms-scroll::-webkit-scrollbar-track {
background: #f1f1f1;
}

.terms-scroll::-webkit-scrollbar-thumb {
background: #999;
border-radius: 10px;
}

.terms-scroll::-webkit-scrollbar-thumb:hover {
background: #666;
}

/* Firefox */
.terms-scroll {
scrollbar-width: thin;
scrollbar-color: #999 #f1f1f1;
padding: 8px 0;
}
/* Chrome, Safari, Edge */
.terms-scroll::-webkit-scrollbar{
    width:6px;
}

.terms-scroll::-webkit-scrollbar-track{
    background:#f1f1f1;
}

.terms-scroll::-webkit-scrollbar-thumb{
    background:#999;
    border-radius:10px;
}

.reword-text {
max-width: 68%;
padding-left: 30px;
}

.reword-right-img {
    width: 32%;
    text-align: center;
    display: flex;
    align-items: end;
    height: 100%;
}

.reword-text h3 {
color: #fff;
font-size: 22px;
font-weight: 400;
margin-bottom: 20px;
}

.reword-text h3 span {
font-size: 26px;
font-weight: 500;
}

.reword-text h3 span span {
color: #FFC042;
font-weight: 700;
font-size: 34px;
}

.credit-box.card-best-card .offer-details {
bottom: 4%;
}

.review-card {
background: #f5f5f5;
border-radius: 8px;
margin-bottom: 20px;
}

.review-avatar img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.rating i {
color: #fbbc04;
/* Google star color */
font-size: 14px;
}

.review-avatar {
min-width: 50px;
height: 50px;
}

.search-box.profile-search-box {
max-width: none;
}

.search-box.profile-search-box input {
border-radius: 10px;
border-color: #D1D5DC;
background-color: transparent;
padding-left: 40px;
}

.search-box.profile-search-box .search-icon {
right: auto;
left: 15px;
color: #99A1AF;
}

/* Chrome, Safari, Edge */
.search-box.profile-search-box input::placeholder {
color: #0a0a0a67;
}

/* Firefox */
.search-box.profile-search-box input::-moz-placeholder {
color: #0a0a0a67;
}

/* Internet Explorer 10–11 */
.search-box.profile-search-box input:-ms-input-placeholder {
color: #0a0a0a67;
}

/* Microsoft Edge Legacy */
.search-box.profile-search-box input::-ms-input-placeholder {
color: #0a0a0a67;
}

.importent-note {
display: flex;
justify-content: flex-start;
background: #FFFBEB;
padding: 15px;
border: 1px solid #FEE685;
border-radius: 10px;
}

.note-text h4 {
font-size: 18px;
font-weight: 500;
color: #0A0A0A;
}

.note-text {
margin-left: 15px;
}

.note-text p {
color: #364153d9;
font-size: 14px;
}


.accordion.profile-accrodion .accordion-item {
border: 1px solid #E5E7EB !important;
border-radius: 10px !important;
margin: 10px 0;
}

.accordion.profile-accrodion .accordion-item h2.accordion-header .accordion-button {
padding: 15px !important;
font-size: 16px !important;
font-weight: 500 !important;
border: 0 !important;
flex-direction: column;
align-items: start;
}

.accordion.profile-accrodion .accordion-item h2.accordion-header .accordion-button span {
font-size: 14px !important;
font-weight: 500 !important;
color: #4A5565 !important;
padding-top: 10px;
}

.accordion.profile-accrodion .accordion-item h2.accordion-header .accordion-button::after {
position: absolute;
right: 15px;
color: #99A1AF;
transform: rotate(0deg);
opacity: 0.5;
top: 28px;
}

a.btn.btn-viewall {
border: 2px solid #0F8A59;
color: #0F8A59;
width: 100%;
padding-top: 12px;
padding-bottom: 12px;
border-radius: 10px;
transition: all 0.3s ease-in-out 0s;
}

a.btn.btn-viewall:hover {
background-color: #0F8A59;
color: #ffffff;
}

.topics-box a {
border: 1px solid #E5E7EB;
width: 100%;
padding: 10px 15px;
border-radius: 10px;
display: flex;
justify-content: space-between;
color: #0A0A0A;
font-weight: 500;
font-size: 14px;
}

.need-help.my-profile-box {
background: rgba(15, 138, 89, 0.15);
border: 1px solid rgba(15, 138, 89, 0.10);
}

.profile-setting-header h3 {
font-size: 20px;
color: #0A0A0A;
font-family: var(--font-main);
}

.help-contact p {
margin-bottom: 5px;
font-size: 14px;
color: #0A0A0A;
font-weight: 600;
}

.help-contact p a {
font-weight: 400;
}

.earning-box {
background: #0F8A59;
background: -webkit-linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(52, 162, 127, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(52, 162, 127, 1) 100%);
background: linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(52, 162, 127, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0F8A59", endColorstr="#34A27F", GradientType=0);
border-radius: 10px;
font-family: var(--font-main);
}

.earning-icon img {
max-width: 64px;
}

.earning-box h3 {
font-family: var(--font-main);
font-size: 20px;
margin-bottom: 5px;
}

.earning-box p {
margin: 0;
}

.refarel-code {
border: 1px solid var(--dark-green);
border-radius: 10px;
margin-top: 15px;
padding: 25px 0;
}

.refarel-code p {
color: #4A5565;
font-size: 14px;
margin: 0;
}

.refarel-code h2 {
font-size: 26px;
font-weight: 600;
color: var(--dark-green);
}

.btn.btn-solid:hover {
border-color: var(--dark-green);
color: var(--dark-green);
}

.share-link .input-code {
width: 85%;
}

.share-link .input-code input {
font-family: var(--font-main);
border-color: #D1D5DC;
background-color: #F9FAFB;
height: 42px;
}

.btn.btn-theme.btn-outline-theme {
border-color: var(--dark-green);
background: transparent;
color: var(--dark-green);
border-width: 2px;
}

.count-text {
font-size: 26px;
font-weight: 600;
color: #0A0A0A;
}

.profile-setting-header.small-header h3 {
font-size: 14px;
color: #4A5565;
}

.process-circel {
width: 64px;
height: 64px;
background: rgba(15, 138, 89, 0.10);
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
color: var(--dark-green);
font-size: 30px;
margin: 15px auto;
font-family: var(--font-main);
}

.step-work.text-center p.process-hdr {
font-size: 16px !important;
font-weight: 600;
color: #0A0A0A;
}

.step-work.text-center p {
font-size: 14px;
color: #4A5565;
}

.referance-box {
border-bottom: 1px solid #E5E7EB;
margin-bottom: 20px;
padding-bottom: 10px;
}

.refer-name {
width: 40px;
height: 40px;
background: var(--dark-green);
border-radius: 50%;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
text-transform: uppercase;
font-family: var(--font-main);
margin-right: 15px;
}

.refer-f-name {
font-weight: 600;
color: #0A0A0A;
font-family: var(--font-main);
}

.refer-date {
font-size: 14px;
color: #4A5565;
font-family: var(--font-main);
}

.refer-date {
font-size: 14px;
color: #4A5565;
font-family: var(--font-main);
}

.refer-price {
font-family: var(--font-main);
color: #00A63E;
font-weight: 600;
}

.refer-status {
color: #4A5565;
font-size: 14px;
font-family: var(--font-main);
}

.small-header {
font-size: 18px !important;
}

.price-tag {
font-size: 28px;
font-weight: 600;
color: var(--dark-green);
font-family: var(--font-main);
}

.caseback-box {
background: #F9F9F9;
padding: 15px;
border-radius: 10px;
}

.total-price {
font-family: var(--font-main);
color: #0A0A0A;
font-size: 22px;
}

.avalable-blance {
padding: 10px 0;
}

.avalable-blance p {
font-size: 16px;
color: #0A0A0A;
}

p.pay-text {
font-size: 12px;
color: #4A5565;
margin-top: 7px;
color: #008236;
font-family: var(--font-main);
margin-bottom: 0;
}

.confrom-box {
background-color: #F0FDF4;
border: 1px solid #B9F8CF;
color: #008236;
font-size: 12px;
border-radius: 10px;
padding: 3px 7px;
font-family: var(--font-main);
}

.confrom-box span {
width: 10px;
height: 10px;
background: #008236;
display: inline-block;
border-radius: 50%;
margin-right: 5px;
}

.confrom-box.panding-box {
background-color: #FEFCE8;
border-color: #FFF085;
color: #A65F00;
font-family: var(--font-main);
}

.confrom-box.panding-box span {
background-color: #A65F00;
}

.confrom-box.paid-box {
background-color: #EFF6FF;
border-color: #BEDBFF;
color: #1447E6;
}

.confrom-box.paid-box span {
background-color: #1447E6;
}

.store-card-box {
background: #fff;
border-radius: 15px;
overflow: hidden;
}

.live-tag {
background: rgba(228, 77, 12, 0.10);
text-align: center;
color: #E44D0C;
font-size: 16px;
padding: 6px 0;
font-family: var(--font-main);
font-weight: 500;
}

span.treand {
display: inline-block;
width: 18px;
margin-right: 2px;
}

/* Review Block */
.review-card {
max-width: 500px;
background: #ffffff;
border-radius: 18px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
border: 1px solid #eee;
margin: 0 7px;
}

.profile-img {
width: 55px;
height: 55px;
object-fit: cover;
}

.verified-badge {
background-color: #ECFDF5;
color: #064E3B;
font-size: 13px;
padding: 6px 12px;
border-radius: 8px;
display: inline-flex;
align-items: center;
font-weight: 500;
}

.review-text {
font-size: 15px;
color: #191D23;
line-height: 1.6;
}

.show-more {
font-size: 14px;
text-decoration: none;
color: #000;
font-weight: 500;
}

.show-more:hover {
text-decoration: underline;
}

.review-card h5 {
font-family: var(--font-main);
color: #191D23;
}

.text-date {
color: #64748B;
font-family: var(--font-main);
}

.g-riview-block {
background-color: #F2F2F2;
}

.g-riview-block .container {
max-width: 1200px;
margin: 0 auto;
}

.slick-dots li button:before {
width: 8px;
}

.payment-box {
background-color: #DBFFEF !important;
}

.payment-method {
padding: 48px 0;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
border-radius: 10px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.payment-method .payment-icon img {
width: 42px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
}

.payment-details-box {
max-width: 420px;
margin: auto;
padding: 20px;
}

.payment-details-box .custom-input {
border-radius: 10px;
padding: 18px 16px;
border: 1px solid #E5E7EB;
font-family: var(--font-main);
font-size: 16px;
color: var(--gray-text);
}

.payment-details-box .custom-input:focus {
box-shadow: none;
border-color: #d6d6d6;
}

.payment-details-box .note-box {
background: #FFF9F4;
border: 1px solid #FFEDDF;
font-family: var(--font-main);
border-radius: 10px;
padding: 16px;
font-size: 14px;
color: #1E2939;
}

.payment-details-box .note-box strong {
color: #333;
}

.payment-details-box .terms {
font-size: 14px;
color: #364153;
font-family: var(--font-main);
margin-top: 15px;
font-weight: 500;
}

.payment-details-box .terms a {
color: #2b7cff;
text-decoration: none;
}

.payment-details-box .getpaid-btn {
width: 100%;
border: none;
border-radius: 14px;
padding: 16px;
font-size: 18px;
background: #E5E7EB;
color: #99A1AF;
font-family: var(--font-main);
font-weight: 600;
}

.form-floating.floating-modify .form-control:focus~label {
top: -18px;
left: 0px;
font-size: 16px;
color: #6A7282;
font-family: var(--font-main);
font-weight: 500;
}

a.btn.btn-white {
border-radius: 10px;
padding: 4px 12px;
}

a.btn.btn-white:hover {
color: var(--dark-green);
}

#cashbackTab .badge.active {
background-color: var(--dark-green);
color: #fff;
}

#cashbackTab .badge.close {
background-color: #F3F4F6;
color: #6A7282;
}

#cashbackTab li {
width: 33.33%;
}

#cashbackTab li button.nav-link {
width: 100%;
margin: 0 !important;
border-radius: 0;
border-bottom: 1px solid #F3F4F6;
font-family: var(--font-main);
font-weight: 500;
border-width: 0 0 1px 0 !important;
color: #6A7282;
padding: 15px 0;
}

#cashbackTab li button.nav-link.active {
border-color: var(--dark-green);
color: var(--dark-green);
}

#cashbackTabContent {
padding: 20px;
}

.cash-brand {
width: 96px;
height: 64px;
border: 1px solid #E5E7EB;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
font-weight: 600;
color: #99A1AF;
font-family: var(--font-main);
}

.case-content h3 {
font-size: 18px;
color: #1E2939;
font-family: var(--font-main);
font-weight: 500;
margin-bottom: 15px;
}

.case-content h3 span {
color: var(--dark-green);
font-weight: 700;
}

.case-content p {
font-size: 14px;
color: #6A7282;
font-family: var(--font-main);
margin-bottom: 3px !important;
}

.case-content p span {
font-weight: 700;
color: #101828;
font-family: var(--font-main);
}

.case-content p span.review {
color: #FF6900 !important;
}

.case-content p span.date-expected {
color: #0F8A59 !important;
}

.case-details a {
color: var(--dark-green);
font-weight: 600;
font-size: 14px;
}

.miss-cashback {
background: #EFF6FF;
border: 1px solid #DBEAFE;
border-radius: 5px;
padding: 15px;

}

.miss-cashback p {
color: #193CB8;
font-size: 14px;

}

a.cash-details {
color: #4A5565;
font-weight: 500;
}

.profile-right-box {
max-width: 896px;
margin: auto;
}

.cash-brand-image {
max-width: 100px;
padding: 15px;
border: 1px solid #E5E7EB;
border-radius: 10px;
}

p.track-id,
p.track-id span {
color: #6A7282 !important;
font-weight: 500 !important;
}

.case-review {
background-color: rgba(255, 105, 0, 0.10);
padding: 5px 12px;
border-radius: 30px;
color: #FF6900;
font-weight: 600;
font-family: var(--font-main);
font-size: 14px;
}

.cashback-row.m-cash-brand {
background-color: #F9FAFB;
padding: 15px;
border-bottom: 1px solid #F3F4F6;
}

h2.price-cash {
font-family: var(--font-main);
color: var(--dark-green);
font-size: 30px;
font-weight: 600;
}

h2.price-cash span {
letter-spacing: -3px;
}

.amount-date-cash h2,
.amount-date-cash h3,
.amount-date-cash h4 {
font-family: var(--font-main) !important;
}

.missing-c-info p {
margin-bottom: 6px;
font-size: 16px;
color: #4A5565;
font-weight: 500;
display: flex;
justify-content: space-between;
}

.missing-c-info p span {
color: #101828;
font-weight: 700;
}

.missing-c-info p {
color: #4A5565;
margin-bottom: 15px;
}

.tracking-items h4 {
color: #101828;
font-size: 16px;
font-family: var(--font-main);
font-weight: 700;
margin-bottom: 3px;
}

.tracking-items h4 span {
position: relative;
width: 16px;
height: 16px;
border-radius: 50%;
box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px;
display: inline-block;
margin-right: 8px;
}

.tracking-items h4 span::after {
content: '';
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
left: 0;
right: 0;
margin: 3px auto;
}

.rasied-track.tracking-items h4 span::after {
background-color: #00C950;
}

.ongoing-track.tracking-items h4 span::after {
background-color: #FF8904;
}

.panding-track.tracking-items h4 span::after {
background-color: #999ba0;
}

.panding-track.tracking-items {
opacity: 0.3;
}

.tracking-items p.date-rt {
color: #6A7282 !important;
margin-bottom: 3px;

}

.tracking-items p {
font-size: 14px;
font-family: var(--font-main);
margin-bottom: 0;
margin-left: 28px;
color: #4A5565;
font-weight: 500;
}

.amount-date-cash h4 {
font-size: 20px;
font-weight: 700;
color: #101828;
}

.amount-date-cash {
margin-bottom: 40px;
}

.assist-box {
border: 1px solid #F3F4F6;
border-radius: 10px;
padding: 12px 15px;
margin-bottom: 10px;
transition: all 0.3s ease-in-out 0s;
}

.assist-box .assist-box-left {
color: #364153;
font-family: var(--font-main);
font-size: 14px;
font-weight: 600;
}

.assist-box .assist-box-left span {
color: var(--dark-green);
font-size: 18px;
line-height: 1;
position: relative;
top: 3px;
}

.assist-box-right {
color: #99A1AF;
font-size: 20px;
line-height: 1;
}

.assist-box:hover{
background-color: #F3F4F6;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.store-policy {
background-color: #F0FDF4;
padding: 25px;
border: 1px solid #DCFCE7;
border-radius: 10px;
}
.store-policy h4{
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 700;
    color:var(--dark-green)
}
.store-policy p{
    color: #016630;
    font-size: 12px;
    margin: 0;
}
button.btn.btn-logout {
    display: flex;
    color: #fff;
}
.logout-box{
    position: absolute;
    bottom: 0;
        width: 100%;
    padding-left: 38px;
    border-top: 1px solid #e5e7eb33;
}
.profile-left.sticky-top{
    z-index: 500;
    top: 60px;
}
.more-cash-hdr h2{
    font-size: 26px;
    color: #101828;
    font-family: var(--font-main);
    font-weight: 800;
}
.more-cash-hdr p {
    color: #6A7282;
}
.search-box.search-cashback{
    display: block !important;
}
.search-box.search-cashback input {
    border-radius: 14px;
    border-color:#E5E7EB;
    background-color: #fff;
    padding-left: 50px;
}
.search-box.search-cashback .search-icon {
    color: #99A1AF;
    left: 15px;
    top: 12px;
    right: auto;
}
.case-brand-box {
    background-color: #fff;
    padding:30px 25px;
    margin-top: 15px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}
.brand-logo img {
    max-width: 100%;
    margin: auto;
}
.case-brand-box p.text-sub{
    font-size: 12px;
    color: #99A1AF;
}
p.retailer-text {
    text-align: center;
    color: #6A7282;
    font-size: 12px;
}
p.retailer-text a {
    color: var(--dark-green);
    font-size: 16px;
    font-weight :600
}
.workflow-slider {
    max-width: 1200px;
    margin: auto;
}
.offer-card {
    position: relative;
}
.offer-card .offer-brand{
    
   position: absolute;
    border: 1px solid #DDDDDD;
    border-radius: 30px;
    background: #fff;
    top: 10px;
    padding: 6px 10px;
    left: 15px;
}

.offer-card .offer-brand img{
    max-height: 14px;
}
a.btn.grabdeal-btn {
    position: absolute;
    bottom: 8%;
    left: 10px;
}
.app-mob-image img {
    max-width: none;
    max-height: 400px;
    margin-left: auto;
}
/* .reward-icon {
    width: 28px;
} */
.list-grid-view a.btn{
padding: 6px 10px;
}
.brand-logo-box.bank-logo.big-bank-logo img{
   max-height: none;
   max-width: 80%;
}
.brand-logo-box.bank-logo.big-bank-logo {
    height: auto;
}
.brand-details-icon {
    width: 72px;
    border: 1px solid #ffe8e8;
    padding: 8px 10px;
    border-radius: 30px;
}
.product-details-card h2.product-name{
    font-size: 1.85rem;
    font-weight: 600;
}
.product-details-card .current-price{
    font-size: 1.5rem !important;
    font-family: var(--font-head);
    font-weight: 500 !important;
}
.product-details-card .current-price span {
   font-family: var(--font-main);
}

.deal-card .product-image{
    background: #ffffff;
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#EFEFEF", GradientType=0);
    padding: 30px 0;
    position: relative;
}
.product-image.border-0 > img {
    max-height: 300px;
    display: block;
    margin: auto;
    padding: 25px 0;
}

.popular-slider .slick-slide{
    margin: 0 7px;
}

.popular-slider .slick-list{
    margin: 0 -5px;
}
.footer-logo {
    max-width: 120px;
}
p.footer-text {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 20px !important;
    color: #EDEDED;
}
.accordion.product-details h2{
    font-family: var(--font-main);
}

.stikey-button-footer{
    display: none;
}
#loginModal .modal-dialog{
    max-width: 420px;
}
div#countdown {
    max-width: 234px;
    padding: 10px 0;
    margin: 28px auto;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-main);
    color: #fff;
    background-color: #D43636;
}
.live-offer-img img {
    position: relative;
    bottom: -98px;
    width: 100%;
}

.otp-container {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        text-align: center;
        width: 350px;
    }

    .otp-text {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
        font-family: var(--font-main);
    }

    .otp-text strong {
        color: #000;
    }

    .otp-text a {
        color: #28a745;
        text-decoration: none;
        font-weight: 600;
        margin-left: 5px;
         font-family: var(--font-main);
    }

    .otp-inputs {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
         font-family: var(--font-main);
    }

    .otp-inputs input {
        width: 45px;
        height: 50px;
        text-align: center;
        font-size: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        outline: none;
        transition: 0.3s;
         font-family: var(--font-main);
    }

    .otp-inputs input:focus {
        border-color: #28a745;
        box-shadow: 0 0 5px rgba(40,167,69,0.3);
    }

    .resend {
        font-size: 14px;
        color: #777;
         font-family: var(--font-main);
             margin: 0 auto 15px;
    text-align: center;
    }

    .resend a {
        color: #28a745;
        text-decoration: none;
        font-weight: 600;
         font-family: var(--font-main);
    }
    #optsubmitModal .form-modal-box{
        max-width: 420px;
         font-family: var(--font-main);
    }
    .brand-select #searchInput{
        width: 100%;
        max-height: 42px;
    }
    .case-brand-box .brand-logo img{
        max-width: 100px;
    }
    .form-floating.floating-modify input, .form-floating.floating-modify label{
        font-family: var(--font-main);
    }
    .hero-slider .slick-dots li.slick-active button{
        background-color: #000;
    }

    .my-profile-page{
        background-color: #f9fafb !important;
    }
    .offer-image picture img{
          width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute; /* KEY FIX */
    top: 0;
    left: 0;
    z-index: 1;
    }
    .reword-box {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: #fff;
}
.offer-image {
    border-radius: 14px;
    overflow: hidden;
}

.input-group-overlap input{
    height: 58px;
    border-color: #E5E7EB;
    border-radius: 10px;
}
.input-group-overlap label {
    background: #fff;
    padding: 3px 5px;
    position: relative;
    top: 10px;
    left: 13px;
    font-family: var(--font-main);
    font-size: 12px;
    color: #6A7282;
}
.bank-transfor label{
    font-family: var(--font-main);
    font-weight: 600;
    color: #101828;
    font-size: 14px;
}
.bank-transfor input, .bank-transfor select{
    border-radius: 10px;
    height: 48px;
}
.bank-transfor .file-btn {
      background-color: #e9ecef;
      border: 1px solid #ced4da;
      padding: 5px 12px;
      border-radius: 4px;
      font-size: 14px;
    }

   .bank-transfor  .file-name {
      color: #6c757d;
      font-size: 14px;
    }

 .bank-transfor    input[type="file"] {
      display: none;
    }
 .bank-transfor .upload-box {
      border: 2px dashed #cfcfcf;
      border-radius: 8px;
      padding: 12px 15px;
      background-color: #f8f9fa;
    }

   .bank-transfor .file-label {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      margin: 0;
    }

.login-menu li {
  position: relative;
  padding: 0px 20px;
  cursor: pointer;
}

/* Hide submenu */
.login-menu .submenu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fffefe;
  list-style: none;
  padding: 10px;
  min-width: 200px;
   opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.login-menu .submenu li {
  padding:10px 10px;
  font-size: 14px;
  border-radius: 5px;
}
.login-menu .submenu li a {
    color: var(--light-black);
    transition: 0.4s ease;
    display: flex;
}
.login-menu .submenu li a span img{
      filter: brightness(0); /* turns black */
  transition: 0.4s ease;
  margin-right: 10px;
}
.login-menu .submenu li:hover{
    color: #fff;
    background-color: var(--light-black);
}
.login-menu .submenu li:hover a span img{
      filter: brightness(100%); /* turns white */
}
.login-menu .submenu li:hover a{
    color: #fff;
}

/* Show on hover */
.login-menu .dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.liver-offer-banner {
    background-color: #000;
}

img.live-offer-banner{
        width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.live-offer-product{
    position: relative;
    z-index: 2;
}
.live-offer-product h1{
    color: #fff;
}
.offer-box.d-flex {
    width: 100%;
    background: #fff;
    max-width: 720px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
}
.offer-box .offer-bn-right {
    width: 45%;
}
.offer-box .offer-bn-left {
    width: 55%;
}
.offer-box .offer-bn-left{
    padding: 20px 30px;
}
.offer-box .offer-bn-left img.offer-logo {
    max-height: 52px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.offer-bn-left p {
    color: #52525B;
    font-size: 16px;
    font-weight: 600;
}
.offer-bn-left h2 {
    color: #EA580C;
    font-weight: 600;
    margin-top: 15px;
}
.pro-offer-details p{
    color: #71717A;
    font-size: 16px;
    align-items: center;
}
.pro-offer-details p img{
    margin-right: 10px;
}
.cashback-box {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #059669;
    font-weight: 700;
    font-family: var(--font-main);
    background-color: #ECFDF5;
    padding: 10px 15px;
        border-radius: 10px;
    max-width: 220px;
    justify-content: center;
}
.pro-offer-details {
    border-top: 1px solid #E4E4E7;
    padding-top: 20px;
}
.use-code p {
    color: #71717A;
}
.use-code p span {
    font-size: 20px;
    color: #27272A;
    font-weight: 700;
    border: 2px dashed #D4D4D8;
    border-radius: 10px;
    width: 73%;
    padding: 5px 16px;
}

.use-code.mt-3 p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
button.btn.btn-copy {
    position: absolute;
    top: 3px;
    right: 7px;
    color: #A1A1AA;
}
.custom-countdown {
    background: transparent !important;
    color: #F87171 !important;
    border-radius: 30px;
    border: 1px solid rgba(248, 113, 113, 0.10);
    background-color: rgba(239, 68, 68, 0.22) !important;
}
span.me-2.circle-dot {
    width: 8px;
    height: 8px;
    background: #F87171;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    top: -3px;
}
.brand-logo-box.bank-crdet-card {
    background: transparent !important;
}
.brand-logo-box.bank-crdet-card img {
    height: 100%;
    max-height: 82px;
    max-width: 200px;
    width: 100%;
}
.brand-logo-box.bank-crdet-card {
    padding: 0 !important;
}
.our-review {
    max-width: 150px;
    margin-left: auto;
}
.w-30 {
    width: 30%;
}

   .my-profile-box input, .my-profile-box textarea {
      width: 100%;
      padding: 4px 8px;
       font-family: var(--font-main);   
      margin-top: 5px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .hidden {
      display: none;
    }
    .profile-btn{
            cursor: pointer;
            transition: all 0.3s ease-in-out 0s;
    }

    .profile-btn:hover {
      background: #0F8A59;
      color: white;
    }
    .max-width-lg .col-4 a img {
    border-radius: 10px;
    overflow: hidden;
}
span.setting-icon {
    width: 36px;
    height: 36px;
    background: #0f8a5926;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.redeemcard-content {
    display: flex;
    position: absolute;
    justify-content: start;
    width: 96%;
    top: 5px;
    left: 5px;
    background-color: rgba(255, 255, 255, 0.884);
    padding: 5px 10px;
    border-radius: 20px;
    font-family: var(--font-main);
    font-size: 14px;
    align-items: center;
}
.redeem-field{  
    padding: 10px 15px 10px 50px;
}
.redeem-amount span {
    position: absolute;
    left: 1px;
    top: 1px;
    height: 44px;
    background-color: #e8e9ea;
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #0f8a59;
}
.redeem-amount, .redeem-btn{
    max-width: 320px;
    margin: 20px auto 9px;
}
.payment-cards{
    border-radius: 12px;
}
.redeem-btn {
    padding: 6px 0 !important;
    font-size: 18px !important;
    max-width: 240px;
}
.payment-card {
  display: block;
  cursor: pointer;
}
.payment-card input {
  display: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    box-shadow: none;
    border: 0;
    background-color: #EA580C;
}
.card-content {
}


.top {
  background: white;
  padding: 10px;
}

/* Selected state */
.payment-card input:checked + .card-content {
  border-color: red;
}
/* Inner green dot */
/* Custom radio */
.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
}

.custom-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: green;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s;
}
.payment-card img {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out 0s;
  border-radius: 18px;
}
/* ✅ When selected */
.payment-card input:checked ~ .redeemcard-content .custom-radio {
  border-color: green;
}

.payment-card input:checked ~ .redeemcard-content .custom-radio::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ✅ Full card green border */
.payment-card input:checked ~ img {
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.card-value {
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    color: #fff;
    z-index: 1010101210000;
    left: 0;
    bottom: 0;
    font-size: 18px;
    padding: 7px 20px;
    font-family: var(--font-main);
    line-height: 1.3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.note-text {
  font-size: 13px;
  color: #666;
}


.payment-details-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b1b1b1;
  font-size: 14px;
}
.payment-details-box input::-moz-placeholder { /* Firefox 19+ */
  color: #b1b1b1;
  font-size: 14px;
}
.payment-details-box input:-ms-input-placeholder { /* IE 10+ */
  color: #b1b1b1;
  font-size: 14px;
}
.payment-details-box input:-moz-placeholder { /* Firefox 18- */
  color: #b1b1b1;
  font-size: 14px;
}