/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #fffdf7;
}

a {
    text-decoration: none;
    color: var(--tertiary-color);
}

li {
    list-style: none;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: auto;
    transition: all 0.3s ease;
}

.header-right {
    margin-left: auto;
}

.search-wrapper {
    position: relative;
    margin-right: 1.5rem;
}

.search-box {
    display: flex;
    align-items: center;
    /* background: #f5f5f5; */
    border-radius: 30px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.input-search {
    border: none;
    background: none;
    padding: 0.5rem;
    width: 250px;
    color: #333;
    font-size: 0.95rem;
}

.input-search:focus {
    outline: none;
}

.btn-search {
    background: none;
    border: none;
    padding: 0.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-search:hover {
    color: var(--primary-color);
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    display: none;
    z-index: 1000;
}

.btn.btn-outline-secondary {
    /* background-color: var(--secondary-color); */
    border-color: #dee2e6;
    color: #000;
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 1rem 0;
    }

    .search-wrapper {
        margin-right: 1rem;
    }

    .input-search {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        max-width: 150px !important;
    }

    .search-box {
        padding: 0.3rem 0.8rem;
    }

    .input-search {
        font-size: 0.9rem;
    }
}

.wrapper {
    padding: 70px 20px 60px;
}

.topheader {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 5px 0;
    align-items: center;
    background-color: var(--primary-color);
}

.title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 30px;
}

.section {
    padding: 30px;
}

.section-title {
    font-size: 21px;
    font-weight: 500;
}

.section-link {
    font-size: 14px;
    font-weight: 400;
    color: #009599;
    padding-left: 15px;
    align-items: center;
}

.card {
    margin: 10px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.5s;
}

.card:hover {
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.16);
}

.card img {
    width: 100%;
    height: 134px;
    border-radius: 12px 12px 0 0;
    margin-top: -1px;
}

.card .card-title {
    font-size: 20px;
    font-weight: 700;
    padding-top: 9px;
}

.card .card-text {
    font-size: 16px;
    font-weight: 400;
}

.card a {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.5s;
}

.category {
    display: flex;
    gap: 12px;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
}

.category-name {
    font-size: 14px;
    font-weight: 400;
    color: #2e073f;
    text-align: center;
}

.categories-list {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr;
    gap: 20px;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.coupon-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.coupon-link:hover {
    text-decoration: underline;
}

.category-image {
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.category-image img {
    margin: 20px 21px;
    max-width: 70px;
}

.store-card {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    background-color: white;
    margin: 12px auto;
    box-shadow: 0 10px 15px -3px #00000021;
    width: fit-content;
    border-radius: 50%;
}

img.store-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5 !important;
    border: none;
    background-color: transparent !important;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #2e073f;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #2e073f;
    border: 1px solid #2e073f;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded="true"] {
    color: #2e073f;
}

.accordion button[aria-expanded="true"] svg {
    rotate: -89deg;
}

.accordion button[aria-expanded="true"] .icon::after {
    width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 600ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 600ms linear, max-height 600ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 1em 0;
}

.accordion .accordion-title {
    font-size: 16px;
    font-weight: 500;
    color: #353842;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding-top: 4rem;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
}

/* Footer Links */
.footer-col {
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Event Cards */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.event-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.event-card h6 {
    color: #fff;
    margin: 0;
}

.event-card small {
    color: rgba(255, 255, 255, 0.5);
}

/* Trust Badges */
.trust-badges {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.trust-badges i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--primary-color) !important;
}

.trust-badges h6 {
    color: #fff;
    margin: 0;
}

.trust-badges small {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer-col {
        margin-bottom: 2rem;
    }

    .trust-badges .col-lg-3 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .newsletter-section {
        padding: 2rem 1rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom ul {
        margin-top: 1rem;
    }
}

.blog-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-meta span {
    margin-right: 1rem;
}

.main-blog-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.small-blog {
    /* display: flex; */
    margin-bottom: 25px;
    position: relative;
}

.small-blog-image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
}

.small-blog-content {
    flex: 1;
    margin-left: 20px;
}

.small-blog-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.small-blog-content h3 {
    font-size: 18px;
}

.small-blog-content p {
    font-size: 12px;
}

.row.flex-column .col-md-12.mb-4 {
    margin-bottom: 16px !important;
}

.post-image {
    width: 200px;
    height: 220px;
    margin-top: 15px;
    margin-left: 15px;
    border-radius: 10px 10px 10px;
    float: left;
}

.post-content {
    width: 55%;
    height: 250px;
    float: left;
    margin-left: 5px;
    overflow: hidden;
}

.post-header {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    margin-top: 15px;
    color: #3b3c3f;
    margin-left: 10px;
    text-align: center;
}

.post-text {
    font-size: 15px;
    padding-left: 20px;
    color: #768ca4;
    font-family: "Roboto", sans-serif;
}

.author {
    width: 100%;
    height: 60px;
    background-color: #f2f5f8;
    margin-left: 20px;
    margin-top: 5px;
    border-radius: 10px;
}

.author-content {
    width: 60%;
    height: 60px;
    margin-left: 10px;

    float: left;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    float: left;
    margin-left: 10px;
    margin-top: 5px;
}

.author-name {
    font-size: 20px;
    color: #3b3c3f;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    margin-top: 10px;
    padding-left: 10px;
}

.date {
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    margin-top: -15px;
    padding-left: 10px;
}

.bannerSlider {
    height: 450px;
    padding: 0;
}

.slide__image {
    border-radius: 10px;
}

.bannerSlider .slide__image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 450px;
    /* background: rgba(33,33,33,.7); */
}

.bannerSlider .slick-slide {
    position: relative;
}

.bannerSlider .slide__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 13px;
}

img.slide__image__top-position {
    object-position: center bottom;
}

.bannerSlider .slide__text {
    position: absolute;
    z-index: 100;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.bannerSlider .slide__text h2 {
    font-size: 48px;
    font-weight: 100;

    color: #fff;
}

.custom-prev,
.custom-next {
    background-color: #fff;
    color: #fff;
    padding: 8px 15px;
    cursor: pointer;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    border-radius: 50%;
}

.custom-prev {
    left: -15px;
}

.custom-next {
    right: -5px;
}

.slider {
    padding: 20px 0 0;
}

.faq {
    position: relative;
}

.shape-left {
    position: absolute;
    top: 0;
    left: -265px;
    width: 400px;
    height: 100%;
    z-index: -99;
}

.shape-left img {
    filter: blur(70px);
}

.dropdown-a_z .dropdown-menu {
    left: -255px !important;
    top: 10px !important;
}

.letters {
    width: 300px;
}

.letters li {
    margin: 0 3px 7px;
}

.letters li a {
    font-size: 0.9rem;
}

.letter_tags {
    width: calc(100% - 240px);
}

.list-store-suggest-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-gap: 7px;
}

.summary {
    border: solid 1px #ddd;
    padding: 25px;
    background: #fff;
    box-shadow: 0 0 0.5;
}

.summary .title {
    display: block;
    padding: 0 0 15px 0;
}

.summary .teaser-text {
    padding: 0 0 15px 0;
}

.thumbnail {
    border: none;
}

.spacer-50 {
    margin: 50px 0;
}

.bullet {
    margin-left: 0 !important;
}

.bullet li {
    padding: 5px 0px 5px 33px;
    text-align: start;
}

.bullet>li:before {
    background: #1b1b1b none repeat scroll 0 0;
    border-radius: 40px;
    content: "";
    display: inline-block;
    height: 5px;
    margin-left: -15px;
    margin-right: 10px;
    position: relative;
    top: -3px;
    width: 5px;
}

.store-alphabet li {
    display: inline-block;
    margin: 0 4px 4px 0;
}

.store-alphabet li a {
    display: block;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid #efefef;
    background: #fff;
    float: left;
    width: 100%;
    border-radius: 0;
    /* box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.06), 0 3px 1px -2px rgba(0, 0, 0, 0.05); */
    font-weight: 400;
    color: #4a42e4 !important;
}

.main-head {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    margin: 32px 0px 25px 15px;
}

.about-content.padding30 {
    margin-bottom: 50px;
}

.about-content {
    background: #ffffff;
    padding: 20px;
}

.z-depth-2 {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.08),
        0 1px 10px 0 rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    border: solid 5px var(--primary-color) 4f;
}

.stores-alphabets {
    color: var(--secondary-color) !important;
    border: 1px solid var(--primary-color);
    padding: 5px 10px;
    font-size: 20px;
}

.deals-banner {
    padding: 100px;
    background-color: var(--primary-color) 4f;
}

.deals-banner .sub-title {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
}

.deals-banner .title {
    color: #ffffff;
    font-size: 40px;
}

.advanced-nav {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.advanced-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
}

.advanced-nav li {
    position: relative;
}

.advanced-nav a {
    color: var(--text-color);
    text-decoration: none;
    display: inline-block;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.advanced-nav a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateY(100%);
    transition: transform var(--transition-speed) ease;
    z-index: -1;
}

.advanced-nav a:hover {
    color: rgb(30, 0, 255);
}

.advanced-nav a:hover::before {
    transform: translateY(0);
}

.advanced-nav li:first-child {
    font-weight: 700;
    color: var(--primary-color);
}

.all-coupons-info {
    background-color: #fff;
    box-shadow: -1px 0px 10px #d8d8d8;
    border-radius: 10px;
    padding: 9px;
    gap: 10px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.all-coupons-info img {
    border-radius: 50%;
    padding: 4px;
    width: 8rem;
    height: 8rem;
    object-fit: cover;
}

.all-coupons-info h4 {
    font-size: 17px !important;
    margin-bottom: 10px;
}

.stores_info {
    column-count: 5;
}

ul.storelistLI li {
    list-style: inside;
    margin: 10px auto;
}

.baraPara p {
    font-size: 12px;
    margin-bottom: 9px;
}

.signBox {
    padding: 10px 0px;
    margin-bottom: 30px;
    border: solid 1px #efefef;
    border-radius: 5px;
    transition: all ease-in-out 0.3s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-left: 0.8rem;
}

.signBox:hover {
    background-color: rgba(42, 202, 215, 0.1);
    border: 1px solid rgba(42, 202, 215, 0.1);
}

.nav-toggle {
    border: none;
    padding: 5px;
    margin-left: 8px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
}

.collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.collapse-content.show {
    transition: all 0.5s ease;
    max-height: max-content;
    padding-left: 13px;
}

a:hover {
    text-decoration: none;
}

ul.boxxx li a {
    font-size: 12px;
    font-weight: 400;
}

.storeList.cb h2 {
    margin: 20px auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    /* Optional: Add a background color */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    /* border-right: 1px solid #dee2e6; */
}

.coupon-image {
    max-width: 100px;
    max-height: 100px;
}

.header {
    background: linear-gradient(135deg, var(--tertiary-color), #5e60ce);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-weight: 700;
    letter-spacing: 1px;
}

.sidebar {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px 0 0 8px;
    border-right: 1px solid #e0e0e0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
}

.sidebar h4 {
    color: var(--tertiary-color);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.sidebar #storeTabs {
    padding-left: 5px;
    overflow-y: scroll;
    height: 380px;
    scrollbar-width: thin;
    scrollbar-color: var(--tertiary-color) #f1f1f1;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar a:hover {
    color: var(--tertiary-color);
}

main {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 0 8px 8px 0;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
}

.store-banner {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coupon-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.coupon-image {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--tertiary-color);
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--tertiary-color);
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: var(--tertiary-color);
}

.store-header {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px 0px;
    margin-bottom: 2rem;
    position: relative
}

.store-img {
    background-color: #000;
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.bcss {
    display: flex;
    background-color: #000;
    /* height: 7rem; */
    position: absolute;
    justify-content: center;
    align-items: center;
    border-radius: 29%;
    width: 200px;
    height: 200px;
    line-height: 200px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 auto 40px;
    left: 5%;
}

.list-content {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    border: 1px solid #eaeaea;
    display: flex;
    margin-bottom: 16px;
    position: relative;
}

.list-left {
    flex: 0 0 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px dashed #eaeaea;
    padding: 24px 16px;
    height: 100%;
    overflow: hidden;
    line-height: 32px;
    background-color: var(--primary-color);
    border-radius: 10px 0px 0px 10px;
}

.list-left .one32 {
    font-size: 24px;
    line-height: 36px;
}

.list-left div {
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 16px;
}

.list-center {
    padding: 12px 16px;
    flex-grow: 1;
}

.list-center .bottom-content,
.list-center .top-content {
    display: flex;
    align-items: center;
}

.list-center .top-content .verified {
    background: #eef9f2;
    border-radius: 4px;
    padding: 1px 4px;
    font-size: 12px;
    font-weight: 500;
    color: #09b98e;
    line-height: 18px;
}

.list-center .center-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    line-height: 30px;
    margin: 6px 0;
    -webkit-line-clamp: 3;
    cursor: pointer;
}

.list-center .center-title,
.list-right .tran-btn .tran-btn-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-center .center-dsc {
    color: #999;
    cursor: pointer;
    height: 24px;
    overflow: hidden;
    transition: 0.3s ease-out;
}

.list-center .center-dsc .list-dsc-content {
    word-break: break-all;
    transition: 0.5s;
}

p.list-dsc-content {
    font-size: 15px;
}

a.txtLinkGrey {
    color: #999999;
}

.list-right {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

a.txtLink {
    color: #000000;
}

.list-right .tran-btn {
    display: flex;
    color: #fff;
    line-height: 48px;
    position: relative;
    text-align: center;
    width: 180px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.list-right .tran-btn .tran-btn-img {
    width: 0;
    height: 0;
    border-top: 49px solid var(--primary-color);
    border-right: 14px solid transparent;
    position: absolute;
    top: -1px;
    right: 25px;
    transition: 0.3s;
}

.list-right .tran-btn .tran-btn-img:before {
    content: "";
    position: absolute;
    top: -47px;
    right: -7px;
    width: 1px;
    height: 44px;
    transform: rotate(15deg);
    background-color: var(--primary-color);
    box-shadow: 0 0 10px 1px var(--primary-color);
}

.button {
    position: relative;
    display: block;
    width: 180px;
    color: #fff;
    background: #009ed9;
    text-transform: uppercase;
    text-align: center;
    font-family: "Poppins";
    font-size: 1rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0.1875rem;
    cursor: pointer;
    min-height: 2.5rem;
    line-height: 2.5rem;
    outline: 0;
    padding: 0;
    border: 0;
}

.has-code,
.has-deal {
    clear: right;
    position: relative;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
}

.has-code::before {
    position: absolute;
    display: block;
    content: "";
    width: 2.625rem;
    height: 2.875rem;
    top: 0.125rem;
    right: 0.375rem;
    z-index: 2;
    background-image: linear-gradient(38deg,
            var(--primary-color) 0,
            #40cbff 49%,
            transparent 50%,
            transparent 100%);
    background-repeat: no-repeat;
    background-position: 0 0.375rem;
    -webkit-transform: rotate(22deg) translateY(-0.625rem) scaleX(0.9);
    transform: rotate(22deg) translateY(-0.625rem) scaleX(0.9);
    -webkit-transition: background-position 0.2s, -webkit-transform 0.2s;
    transition: background-position 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, background-position 0.2s;
    transition: transform 0.2s, background-position 0.2s, -webkit-transform 0.2s;
    border-radius: 0 0 0 0.3125rem;
}

.peel-code {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 2.25rem;
    height: 100%;
    overflow: hidden;
    padding: 0 0.75rem 0 0;
    direction: rtl;
    border-radius: 0 0.1875rem 0.1875rem;
    text-align: right;
    color: var(--primary-color);
    background: #e9e9e9;
    -webkit-transition: width 0.2s;
    transition: width 0.2s;
    border: 1px dashed;
}

.peel-text {
    font-style: normal;
    color: #000;
}

.has-code::after {
    position: absolute;
    display: block;
    content: "";
    width: 0.9375rem;
    height: 0.625rem;
    right: 1.5625rem;
    bottom: 0;
    -webkit-transform: skew(40deg, 0);
    transform: skew(40deg, 0);
    background: #0079a6;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
}

.has-code:hover .peel-code {
    width: 3.125rem;
}

.has-code:hover::after {
    right: 2.375rem;
}

.has-code:hover::before {
    background-position: 0 0;
    -webkit-transform: rotate(15deg) translate(-0.5rem, -0.1875rem) scaleX(1);
    transform: rotate(15deg) translate(-0.5rem, -0.1875rem) scaleX(1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--primary-color);
    border-color: #fff;
}

#main-navbar .nav-item .nav-link {
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 10px 25px !important;
    border-radius: 30px;
}

#main-navbar .nav-item .nav-link:hover {
    background: #ffffff1a;
    border-radius: 30px;
}

.category-nav-link {
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-nav-link:hover {
    color: var(--tertiary-color) !important;
}

.category-sidebar .category-nav-link {
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.category-sidebar .category-nav-link:hover,
.category-sidebar .category-nav-link.active {
    background-color: #e7f1ff;
    color: var(--tertiary-color);
}

.card-horizontal {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card-horizontal .card-img-top {
    width: 100%;
    height: 150px;
    object-fit: contain;
    padding: 15px;
    background-color: #f8f9fa;
}

.card-horizontal .card-body {
    padding: 15px;
    text-align: center;
}

.card-horizontal .card-title {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
}

.single-blog-content {
    border: 0;
    margin-bottom: 40px;
}

.single-blog-content .thumb {
    margin-bottom: 30px;
}

.single-blog-content.style-two .thumb img {
    width: 100%;
}

.single-blog-content .single-blog-details .post-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-blog-content .single-blog-details .post-meta li.admin {
    letter-spacing: 0.45px;
    color: #dfe5ef;
    background: var(--primary-color);
    border-radius: 2px;
    height: 23px;
    line-height: 24px;
    padding: 0 15px;
    margin-right: 17px;
}

.single-blog-content .single-blog-details .post-meta li {
    font-size: var(--body-font-size);
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #97a1b3;
    margin-right: 3px;
    margin-bottom: 9px;
    display: inline-block;
}

.single-blog-content .single-blog-details h5 {
    margin-top: 12px;
}

.single-blog-content .single-blog-details h5 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.72px;
    color: var(--primary-color);
    margin-bottom: 21px;
    display: block;
}

.blog-details-page .single-blog-content .thumb img {
    width: 100%;
}

.single-blog-content.style-two .single-blog-details h5 a {
    font-size: 26px;
    line-height: 32px;
}

.single-blog-content .single-blog-details h5 a {
    font-size: 27px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.72px;
    color: var(--primary-color);
    display: block;
}

.single-blog-content .single-blog-details p {
    font-size: 14px;
    line-height: 27px;
    color: #5b6880;
    margin-bottom: 16px;
}

.single-blog-content .single-blog-details a {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.3px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.single-blog-content .single-blog-details a span {
    transition: all 0.3s ease;
    position: relative;
}

.single-blog-content .single-blog-details a i {
    font-size: 22px;
    position: absolute;
    bottom: -3px;
    right: -28px;
}

.post-share-area {
    border-top: 1px solid #e4e7eb;
    border-bottom: 1px solid #e4e7eb;
    padding: 40px 0;
}

.post-share-area .sb-inner-title {
    font-size: 24px;
    line-height: auto;
    font-weight: 500;
    letter-spacing: 0.28px;
    color: #01358d;
    margin-bottom: 0;
    margin-right: 30px;
}

.social-icon {
    margin-bottom: 0;
    padding-left: 0;
}

.post-share-area .social-icon li:first-child {
    margin-left: 0;
}

.social-icon li {
    display: inline-block;
    margin: 0 5px;
}

.social-icon li a {
    height: 42px;
    width: 42px;
    display: inline-block;
    box-shadow: 0px 3px 14px #666c752e;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    color: #5b6880;
    transition: all 0.3s ease-in;
    background: #fff;
    font-size: 16px;
}

.pd-top-120 {
    padding-top: 120px;
}

.mg-top-45 {
    margin-top: 45px;
}

.riyaqas-pagination ul li {
    display: inline-block;
}

.riyaqas-pagination ul li .page-numbers.prevv,
.riyaqas-pagination ul li .page-numbers.nextt {
    border: none;
}

.riyaqas-pagination ul li .page-numbers {
    width: 36px;
    height: 36px;
    border: 1px solid #97a1b3;
    border-radius: 50%;
    line-height: 37px;
    text-align: center;
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0.51;
    color: #97a1b3;
    transition: all 0.3s ease-in;
    cursor: pointer;
    margin: 0 3px;
}

.riyaqas-pagination ul li .page-numbers:hover,
.riyaqas-pagination ul li .page-numbers.current {
    background: #01358d;
    color: #fff;
    border: 1px solid #01358d;
}

.riyaqas-pagination ul {
    padding-left: 0;
    margin-bottom: 0;
}

.hero {
    background: linear-gradient(45deg, #db3875, #431758);
    padding: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
}

#myCode {
    background-color: transparent;
    padding: 16px 50px 16px 0px;
    border-radius: 27px;
    width: 70%;
}

#copyButton {
    background: #64ad04;
    padding: 12px 19px;
    border-radius: 30px;
    position: absolute;
    right: 17%;
    color: #fff;
    top: 6px;
    cursor: pointer;
}

.getdeal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    height: 45px;
    border: none;
    border-radius: 20%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: var(--primary-color);
    text-transform: uppercase;
}

.getdeal .svgWrapper {
    gap: 10px;
}

.deal-text {
    opacity: 1;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: 0.3s;
}

.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: var(--primary-color);
    text-transform: uppercase;
}

/* plus sign */
.svgWrapper {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svgWrapper svg {
    width: 16px;
    color: #fff;
}

/* text */
.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: 0.3s;
}

/* hover effect on button width */
.Btn:hover {
    width: 70%;
    border-radius: 40px;
    transition-duration: 0.3s;
}

.Btn:hover .svgWrapper {
    width: 30%;
    transition-duration: 0.3s;
    padding-left: 20px;
}

/* hover effect button's text */
.Btn:hover .text {
    opacity: 1;
    width: 80%;
    transition-duration: 0.3s;
    padding-right: 10px;
}

/* button click effect*/
.Btn:active {
    transform: translate(2px, 2px);
}

.small-blog::before {
    content: "";
    width: 5px !important;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
}

.sidebar-area {
    border: 1px solid #e4e7eb;
    padding: 40px 20px 0;
}

.sidebar-area .widget {
    margin-bottom: 65px;
}

.widget-title {
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0.28;
    color: #01358d;
    font-weight: 500;
    position: relative;
    margin-bottom: 50px;
}

.widget-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #e4e7eb;
}

.widget-recent-post ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-recent-post ul li .media {
    margin-bottom: 30px;
    align-items: start;
    display: flex;
}

.widget-recent-post ul li .media .media-body {
    margin-left: 16px;
}

.widget-recent-post ul li .media .media-body .titlee {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.widget-recent-post ul li .media .media-body .post-date {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #97a1b2;
}

.widget_categories ul li {
    list-style: none;
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
}

.widget_categories ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
    width: 12px;
    height: 12px;
    border: 2px solid #97a1b3;
    border-radius: 50%;
}

.widget_categories ul li a {
    /* font-size: 16px; */
    /* line-height: 28px; */
    letter-spacing: 0.96;
    color: #5b6880;
}

.widget_archive ul li:before {
    content: "ï³";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -15px;
    font-family: FontAwesome;
    background-repeat: no-repeat;
    background-size: 100%;
    color: #999999;
}

.widget_archive ul li a {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.96px;
    color: #5b6880;
}

.widget_archive ul li {
    border-bottom: 1px solid #e4e7eb;
    padding-bottom: 5.5px;
    margin-bottom: 12.5px;
    position: relative;
    padding-left: 34px;
}

.widget_search .search-form {
    position: relative;
    background: #f5f5f5;
    border-radius: 4px;
}

.widget_search .search-form input {
    letter-spacing: 0.3px;
    color: #5b6880;
    width: 100%;
    font-size: var(--body-font-size);
    font-weight: 400;
    border: 0;
    background: lightgrey;
    padding: 0 60px 0 24px;
    height: 52px;
    line-height: 52px;
}

.widget_search .search-form button {
    position: absolute;
    right: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    padding: 0 23px;
    height: 52px;
    line-height: 52px;
    top: 0;
    right: 0;
}

.widget_search .search-form button i {
    color: #5b6880;
}

.search-box {
    position: relative;
}

.search-results-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.search-section {
    padding: 10px;
    padding-bottom: 0;
}

.search-section h3 {
    margin-top: 0;
    font-size: 16px;
    color: #333;
}

.search-section ul {
    list-style-type: none;
    padding: 0;
}

.search-section li {
    margin-bottom: 5px;
    border-bottom: 1px solid black;
    padding: 10px 0;
}

.search-section li:nth-last-child() {
    margin-bottom: 0px !important;
    border-bottom: none !important;
    padding: 10px 0 0 !important;
}

.search-section a {
    color: #0a0a0a;
    text-decoration: none;
    font-size: 17px;
}

.search-section a:hover {
    text-decoration: underline;
}

.storeList.cb h6 span,
.storeList.cb h5 span,
.storeList.cb h4 span,
.storeList.cb h3 span,
.storeList.cb h2 span,
.storeList.cb h1 span,
.storeList.cb p span,
.storeList.cb ol li span,
.storeList.cb ul li span,
p span,
p,
h1 span,
h1,
h2 span,
h2,
h3 span,
h3,
h4 span,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif !important;
}

.storeList.cb h6 span,
.storeList.cb p,
.storeList.cb p span,
.storeList.cb ol li span,
.storeList.cb ul li span {
    font-size: 16px !important;
}

.storeList.cb h5 span {
    font-size: 18px !important;
}

.storeList.cb h4 span {
    font-size: 20px !important;
}

.storeList.cb h3 span {
    font-size: 24px !important;
}

.storeList.cb h2 span {
    font-size: 28px !important;
}

.storeList.cb h1 span {
    font-size: 32px !important;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.hamburger {
    height: 40px;
    width: 40px;
    transform: 0.2s;
    position: relative;
}

.hamburger .checkbox {
    position: absolute;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.hamburger svg {
    width: 40px;
    height: 40px;
}

.line {
    transition: 0.5s;
    stroke-width: 6px;
    stroke: #0dcaf0;
}

.lineTop {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 25;
}

.lineBottom {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 60;
}

.lineMid {
    stroke-dasharray: 40 40;
}

.hamburger .checkbox:checked+svg .line {
    stroke: crimson;
}

.hamburger .checkbox:checked+svg .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(45deg) translate(-7px, -5px);
}

.hamburger .checkbox:checked+svg .lineMid {
    stroke-dashoffset: 40;
}

.hamburger .checkbox:checked+svg .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(-45deg) translate(-5px, 5px);
}

.custom-h1 {
    font-size: 36px;
    /* Adjust as necessary */
}

.custom-h2 {
    font-size: 30px;
    /* Adjust as necessary */
}

.custom-h3 {
    font-size: 24px;
    /* Adjust as necessary */
}

.custom-h4 {
    font-size: 20px;
    /* Adjust as necessary */
}

.custom-h5 {
    font-size: 18px;
    /* Adjust as necessary */
}

.custom-h6 {
    font-size: 16px;
    /* Adjust as necessary */
}

.categories-wrapper {
    /* background: linear-gradient(to right, #f8f9fa, #ffffff); */
    padding: 40px 0;
    border-radius: 15px;
}

.category-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    padding: 25px 15px;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 15px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 15px;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-name {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 0.9rem;
}

.category-count {
    color: #666;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Updated Store Styles */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.store-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.store-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.featured-store-log {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    padding: 0px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.store-card:hover .featured-store-log {
    transform: scale(1.05);
}

.store-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

.store-deals {
    font-size: 0.8rem;
    color: #666;
}

.store-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffe5e5;
    color: #ff4444;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Custom Scrollbar for horizontal scroll */
.scroll-wrapper {
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .featured-store-log {
        width: 60px;
        height: 60px;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin: 40px 0;
    border-radius: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Featured Blog Card */
.blog-card-featured {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
}

.blog-card-featured .blog-image {
    height: 400px;
}

/* Regular Blog Card */
.blog-card-regular {
    grid-column: span 4;
}

.blog-card-regular .blog-image {
    height: 200px;
}

/* Small Blog Card */
.blog-card-small {
    grid-column: span 4;
    display: flex;
    align-items: center;
}

.blog-card-small .blog-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.blog-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
}

.blog-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.85rem;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.blog-card-featured .blog-title {
    font-size: 1.5rem;
}

.blog-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-card-featured {
        grid-column: span 12;
    }

    .blog-card-regular {
        grid-column: span 6;
    }

    .blog-card-small {
        grid-column: span 6;
    }

    .blog-card-featured .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-card-regular {
        grid-column: span 12;
    }

    .blog-card-small {
        grid-column: span 12;
    }

    .blog-card-featured .blog-image {
        height: 250px;
    }
}

.blog-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
}

.aspect-ratio-16-9 {
    padding-bottom: 56.25%;
}

.aspect-ratio-21-9 {
    padding-bottom: 42.86%;
}

.overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.deals {
    padding: 40px 30px;
    position: relative;
}

.deal-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.deal-card:hover {
    transform: translateY(-5px);
}

.deal-card-inner {
    padding: 20px;
}

.deal-header {
    position: relative;
    display: flex;
    align-items: center;
    /* margin-bottom: 15px; */
    /* height: 150px;   */
    background: #f8f9fa;
    /* padding: 15px; */
}

.deal-store-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto 10px;

}

.store-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.expiry-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.deal-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tertiary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none !important;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.deal-btn:hover {
    background: var(--primary-button-color);
    color: white;
}

/* Modern Categories Section Styling */
.categories-wrapper {
    padding: 0px 30px 60px;
    /* background: #f8f9fa; */
    position: relative;
    overflow: hidden;
}

.categories-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, rgba(0, 123, 255, 0.03) 0%, rgba(0, 123, 255, 0) 100%); */
    pointer-events: none;
}

.categories-header {
    position: relative;
}

.section-subtitle {
    color: #6c757d;
    margin-top: 5px;
    font-size: 1rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: white;
    color: var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.view-all-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.category-card-modern {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-icon-modern {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--primary-color);
    margin-right: 20px;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-icon-modern {
    background: var(--tertiary-color);
}

.category-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card-modern:hover .category-img {
    transform: scale(1.1);
}

.category-content {
    flex: 1;
}

.category-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.deals-count {
    color: #6c757d;
    font-size: 0.9rem;
    display: block;
}

.hover-arrow {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--tertiary-color);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.category-card-modern:hover .hover-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .categories-wrapper {
        padding: 0;
    }

    .view-all-btn {
        padding: 10px 20px;
    }
}

/* Slider Navigation */
.deals-navigation {
    display: flex;
    gap: 10px;
}

.deals-navigation button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    border: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.deals-navigation button:hover {
    background: var(--tertiary-color);
    color: white;
}

.view-all {
    color: var(--tertiary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #0056b3;
}

/* Swiper Specific Styles */
.swiper {
    width: 100%;
    padding: 20px 10px;
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    transition-property: transform;
    transition-timing-function: ease;
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
    position: relative;
}

/* Stores Section Styling */
.stores-section {
    /* padding: 60px 30px; */
}

.section-header {
    margin-bottom: 40px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.stores-grid.store-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.store-card-modern {
    /* display: flex; */
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: auto;
    width: 100%;
}

.store-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.store-image-wrapper {
    position: relative;
    /* padding: 20px; */
    /* background: #f8f9fa; */
    /* display: flex; */
    align-items: center;
    justify-content: space-around;
    /* height: 140px; */
}

.store-card-modern:hover .store-image {
    transform: scale(1.05);
}

.hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.store-info {
    padding: 10px 20px;
}

.store-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}

.store-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.active-deals {
    font-size: 13px;
    color: #080808;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
}

/* Blog Section Styling */
.blog-section {
    padding: 60px 30px;
    background: #f8f9fa;
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.category-tag {
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag span {
    background: var(--tertiary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-tag:hover span {
    background: var(--primary-button-color);
    transform: translateY(-2px);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-date,
.blog-author {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--tertiary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .store-card-modern {
        flex-direction: column !important;
        width: 100%;
    }

    .store-info {
        /* height: 100%; */
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .stores-section,
    .blog-section {
        padding: 0;
    }
}

/* FAQ Section Styling */
.faq {
    padding: 60px 0;
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.faq .section-header {
    position: relative;
    z-index: 2;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-item button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.accordion-item button:hover {
    background: rgba(0, 0, 0, 0.02);
}

.accordion-title {
    padding-right: 40px;
    line-height: 1.4;
}

.accordion-item button .icon {
    position: absolute;
    right: 25px;
    transition: transform 0.3s ease;
}

.accordion-item button[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.accordion-item button[aria-expanded="true"]+.accordion-content {
    display: block;
}

.shape-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.shape-left img {
    max-width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 20px;
    }

    .accordion-item button {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .accordion-content {
        padding: 0 20px 15px;
    }

    .shape-left {
        display: none;
    }
}

.counts-wrapper {
    display: block;
    margin-top: 4px;
    color: #6c757d;
    font-size: 0.9rem;
}

.stores-count,
.offers-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.offers-count {
    margin-left: 12px;
}

.stores-count::before {
    content: "\f54e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

.offers-count::before {
    content: "\f3a5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

button.deals-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

button.deals-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.stores-section {
    background: #fff;
}

.stores-header {
    margin-bottom: 40px;
}

.store-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    padding: 15px 20px;
    border-radius: 30px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color), 0.1);
}

.alphabet-nav {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.alphabet-nav ul {
    margin: 0;
    padding: 0;
}

.alphabet-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    /* border-radius: 50%; */
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.alphabet-link:hover,
.alphabet-link.active {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.stores-grid {
    display: flex;
    gap: 0;
}

.store-group {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.letter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: var(--primary-color);
    color: #fff;
}

.letter-header h2 {
    margin: 0;
    font-size: 24px;
}

.store-count {
    font-size: 14px;
    opacity: 0.8;
    color: var(--secondry-color);
    font-weight: 400;
}

.stores-list {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.store-item {
    transition: all 0.3s ease;
}

.store-item .store-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.store-item .store-link .store-name {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.store-item .store-link:hover {
    color: #ffffff !important;
    background: var(--primary-color);
}

.store-item .store-link:hover .store-name {
    color: #fff !important;
}

.store-item .store-link i {
    font-size: 14px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.store-item .store-link:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.no-results {
    text-align: center;
    padding: 40px;
}


.store-detail-container {
    background-color: var(--background-color);
    /* min-height: 100vh; */
    padding: 2rem 0 0;
}

.store-header {
    display: flex;
    align-items: center;
    background: linear-gradient(-108deg, var(--primary-color) 20%, var(--secondary-color) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.store-logo {
    width: 200px;
    height: 200px;
    background-color: var(--background-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.store-logo:hover {
    transform: scale(1.05);
}

.store-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.store-info {
    flex-grow: 1;
}

.store-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.store-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-right: 1rem;
}

.store-verified-badge {
    background-color: #2ecc71;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.store-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
}

.stat-item i {
    font-size: 1.2rem;
}

.store-description {
    max-width: 700px;
    line-height: 1.7;
    /* color: #ffffff; */
    margin-bottom: 1.5rem;
    text-align: left;
}

.store-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    /* background-color: var(--tertiary-color); */
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .store-header {
        flex-direction: column;
        text-align: center;
    }

    .store-logo {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .store-stats {
        justify-content: center;
    }

    .store-actions {
        justify-content: center;
    }
}

/* Main Content Styles */
.store-content {
    padding: 0 0 3rem;
}

.filter-bar {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 2rem; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    gap: 1rem;
}

.tab-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: #4a5568;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #ebf8ff;
    color: #3182ce;
}

.sort-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #4a5568;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 2rem;
    align-items: start;
}

/* Offers Section */
.offers-section {
    display: grid;
    gap: 1.5rem;
    overflow: hidden;
}

.offer-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.offer-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge.verified {
    background: #ebf8ff;
    color: green;
}

.badge.exclusive {
    background: #fefcbf;
    color: #d69e2e;
}

.offer-discount {
    background: #ebf8ff;
    color: #3182ce;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.offer-title {
    font-size: 1.25rem;
    margin: 1rem 0;
}

.offer-description {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coupon-box {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.code-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.code-mask {
    font-family: monospace;
    font-size: 1.1rem;
    color: #2d3748;
    letter-spacing: 1px;
}

.reveal-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reveal-btn:hover {
    background: var(--primary-button-color);
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 0.875rem;
}

/* Sidebar Styles */
.store-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-list {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.info-item .label {
    color: #718096;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.info-item .value {
    color: #2d3748;
    font-weight: 500;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.store-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2d3748;
    /* padding: 1rem; */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.store-item:hover {
    background: #f7fafc;
}

.store-item .popular-store-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.store-list {
    display: grid;
    gap: 1rem;
}

.store-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s ease;
}

.store-link:hover {
    background: #f7fafc;
}

.store-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.store-details {
    flex: 1;
}

.store-details .name {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.store-details .offers {
    color: #718096;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    color: #2d3748;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2d3748;
    font-weight: 500;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 1.5rem;
    color: #718096;
    line-height: 1.6;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 12px;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 0 1.5rem 1.5rem;
}

.code-box {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

#modalCouponCode {
    font-family: monospace;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 1px;
    margin-right: 1rem;
}

.copy-btn {
    background: #3182ce;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-success {
    color: #48bb78;
    text-align: center;
    margin: 1rem 0;
    display: none;
}

.steps {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 28px;
    height: 28px;
    background: #ebf8ff;
    color: #3182ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.continue-btn {
    display: block;
    background: var(--primary-button-color);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    background: #2c5282;
}

.loading-animation {
    margin: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #ebf8ff;
    border-top-color: #3182ce;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .store-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .store-brand {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .brand-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand-actions {
        justify-content: center;
    }

    .filter-bar {
        /* flex-direction: column; */
        gap: 1rem;
        width: 100%;
    }

    .filter-group {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 0;
    }

    .sort-group {
        width: 100%;
    }

    .sort-select {
        width: 100%;
    }

    .store-item .store-link {
        width: 96%;
        align-self: baseline;
    }
}

@media (max-width: 440px) {
    .offer-card {
        padding: 40px 10px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    }

    .card {
        padding: 20px 10px !important;
    }

    .coupon-rate {
        width: 100% !important;
        padding: 2rem 0 !important;
    }

    .main {
        flex-direction: column;
        height: 100% !important;
        /* margin: 0 20px; */
        gap: 30px;
    }

    .vertical {
        border-bottom: 2px dashed #dbdbdb !important;
        height: auto !important;
        position: absolute;
        left: 10% !important;
        top: 50%;
        width: 80%;
        opacity: 1 !important;
    }
    .card .main .content{
    display: flex;
    align-items: end;
}
    .card .main .content .offer-badges{
    flex-wrap: wrap;
}

    .card::before,
    .card::after {
        top: 40% !important;
    }

    .store-hero {
        padding: 2rem 0;
    }

    .store-item .store-link {
        width: 100%;
        align-self: baseline;
    }

    .brand-logo {
        width: 120px;
        height: 120px;
    }

    .brand-info h1 {
        font-size: 2rem;
    }

    .offer-header {
        flex-direction: column;
        gap: 1rem;
    }

    .code-preview {
        flex-direction: column;
        gap: 1rem;
    }
}

.deals-section {
    margin-top: 2rem;
}

.deals-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-badges .badge {
    margin-right: 0.5rem;
}

.deal-title {
    font-size: 1.25rem;
    margin: 1rem 0;
}

.deal-description {
    font-size: 1rem;
    color: #666;
}

.deal-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #999;
}

/* Search Results Styling */
#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.search-results-list {
    padding: 8px 0;
}

.search-result-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-thumb {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.store-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    padding: 80px 0;
    margin-bottom: 60px;
}

.blog-hero .hero-content {
    color: white;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-section {
    /* padding: 60px 0; */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.search-form {
    position: relative;
}

.search-form .input-group {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding-right: 40px;
}

.btn-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
}

.count {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #666;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
    color: #333;
}

.recent-post-content .date {
    font-size: 0.85rem;
    color: #666;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.no-posts-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.no-posts-content i {
    font-size: 3rem;
    color: #ddd;
}

.no-posts-content p {
    color: #666;
    font-size: 1.1rem;
}

.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding: 60px 0;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .store-content {
        padding: 15px !important;
    }

    .stores-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .store-item-home {
        margin: 0 !important;
        width: 100% !important;
    }
}

.hot-tag {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.store-info {
    text-align: center;
    background: var(--primary-color);
    justify-content: center;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.store-stats {
    display: flex;
    /* justify-content: center; */
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: #ffffff;
}

.stat-item svg {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        display: grid;
    }

    .store-logo {
        width: 100px;
        height: 100px;
    }

    .store-name {
        font-size: 1rem;
    }
}

.submit-coupon {
    background: var(--secondary-color);
    padding: 20px;
    color: var(--primary-color);
}


.card {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    padding: 10px 10px;
    position: relative;
    justify-content: center;
}

.main,
.copy-button {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
    margin: 0 10px;
}

.main {
    height: 105px;
}

.coupon-rate {
    justify-content: center;
    align-items: center;
    display: flex;
    background: linear-gradient(303deg, var(--primary-color) 40%, var(--secondary-color) 100%);
    padding: 1rem 0.5rem;
    /* margin-left: 8px; */
    height: 100%;
    border-radius: 5px;
    width: 36%;
    opacity: 0.8;
}

.coupon-rate h3 {
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

.vertical {
    border-left: 2px dashed #dbdbdb;
    height: 100px;
    position: absolute;
    left: 40%;
    opacity: 0.7;
}

.card::after {
    position: absolute;
    content: "";
    height: 40px;
    right: -20px;
    border-radius: 40px;
    z-index: 1;
    top: 70px;
    background-color: #fffdf7;
    width: 40px;
    box-shadow: -0.7px 0px 0px 0px rgba(0, 0, 0, 0.2);
}

.card::before {
    position: absolute;
    content: "";
    height: 40px;
    left: -20px;
    border-radius: 40px;
    z-index: 1;
    top: 70px;
    background-color: #fffdf7;
    width: 40px;
    box-shadow: 0.7px 0px 0px 0px rgba(0, 0, 0, 0.2);
}

.card .main .content {
    text-align: center;
}

.content h2 {
    font-size: 18px;
    color: #565656;
    text-transform: uppercase;
}

.content p {
    font-size: 16px;
    color: #696969;
    width: max-content;
    text-wrap: nowrap;
}

.copy-button {
    margin: 12px 0 2px 0;
    height: 55px;
    padding: 10px 5px 0;
    border-top: 2px solid #ccc;
    align-items: center;
}

.copy-button p {
    font-size: 15px;
    width: 70%;
}

.copy-button input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 15px;
}

.copy-button button,
.coupon-button button {
    padding: 7px 20px;
    background-color: var(--secondary-color);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    width: max-content;
    text-wrap: nowrap;
}

.coupon-button {
    padding: 5px 10px;
    margin: 13px 0 3px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
}

.coupon-button input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    filter: blur(2px);
    pointer-events: none;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* .offer-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.offer-card:not(.active) {
    opacity: 0;
    transform: scale(0.95);
} */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://img.freepik.com/premium-vector/various-abstract-shapes-texture-backgrounds-figure-patterns_737564-696.jpg');
    opacity: 0.15;
    pointer-events: none;
}


.category-page {
    background: #f5f5f5;
}

.filter-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.category-dropdown .btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #333;
    font-weight: 500;
}

.search-box .form-control {
    border-radius: 30px;
    padding-left: 20px;
    height: 45px;
}

.sidebar-widget .store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.store-item-home {
    background: #fff;
    border-radius: 11px;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 6px 10px 3px #eee;
    justify-content: center;
    align-items: center;
    width: 155px;
    /* height: 144px; */
    margin-right: 19px;
}

.store-item:hover {
    transform: translateY(-5px);
}

.store-item a {
    text-decoration: none;
    color: inherit;
}

.category-store-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;

}

.category-store-logo img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.category-store-info {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fff;
}

.category-store-info h3 {
    font-size: 16px;
    margin: 0 0 5px;
    color: #333;
}

.coupon-count {
    color: #666;
    font-size: 14px;
}

.category-header h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

/* Dropdown Submenu */
.dropdown-menu {
    padding: 0;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item.active,
.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.submenu {
    list-style: none;
    padding: 0;
    background: #f8f9fa;
}

.submenu .dropdown-item {
    padding-left: 40px;
    font-size: 14px;
}

.category-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1050;
    margin-top: 5px;
}

.search-result-item {
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.category-info {
    padding: 8px 12px;
}

.category-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.subcategory-item {
    padding-left: 20px;
    background-color: #f8f9fa;
}

.subcategory-item .category-info {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .store-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .filter-bar .d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .search-box {
        width: 100%;
    }

    .category-dropdown {
        width: 100%;
    }

    .category-dropdown .btn {
        width: 100%;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: var(--primary-color);
    /* Primary color for Promocode */
    color: #fff;
}

.navbar .nav-link {
    /* color: #fff; */
    transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    background: var(--secondary-color);
    /* Highlight color for active links */
    color: #fff;
}

.search-wrapper {
    position: relative;
    max-width: 300px;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0.375rem;
    margin-top: 0.5rem;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.search-results-dropdown.show {
    display: block;
}

@media (max-width: 991.98px) {
    .search-wrapper {
        max-width: 100%;
    }

    #searchCollapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 0.5rem 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}


.events-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #666;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.event-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.event-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.stores-count {
    color: #666;
    font-size: 0.9rem;
}

.savings {
    background: #ebf5f0;
    color: #0f766e;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.event-info h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.event-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.dates {
    display: flex;
    gap: 1rem;
    color: #666;
}

.stats {
    display: flex;
    gap: 1rem;
}

.stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.view-event {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #f8f9ff;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.view-event:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .events-page {
        padding: 1rem;
    }

    .page-header {
        flex-direction: column;
        gap: 1rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
}


.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.modal-header .btn-close {
    padding: 1rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
    transform: none;
}

#modalDealStoreImage,
#modalStoreImage {
    transition: transform 0.3s ease;
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)
}

#modalDealStoreImage:hover,
#modalStoreImage:hover {
    transform: scale(1.05);
}

#modalDealStoreName:hover {
    border-bottom-color: #2563EB;
}

.modal-header {
    background: linear-gradient(-90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.deal-button {
    background: linear-gradient(-90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 50px;
    transition: transform 0.2s;
}

.modal-body {
    padding: 1rem 1.5rem;
}
