:root {
    --orange-color: #f57c17;
    --dark-color: #03081f;
    --white-color: #fff;
    --green-color: #00695c;
    --orange-soft: #f69545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.navbar {
    padding: 15px 60px;

    /* z-index: 2; */

    background-color: transparent !important;
}

.navbar-brand img {
    height: 140px;
}

.nav-link {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-color) !important;
    padding: 9px 38px !important;
    border-radius: 120px;
    margin: 0 5px;
}

.nav-link.active,
.nav-link:hover {
    background-color: var(--orange-color) !important;
    color: var(--white-color) !important;
}

.dropdown-toggle::after {
    border-top-color: #db944b;
    margin-left: 8px;
}

.navbar .dropdown-menu {
    margin-top: 1px;
    margin-left: 20px;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.btn-login {
    background-color: var(--dark-color);
    color: var(--white-color) !important;
    border-radius: 120px;
    padding: 10px 20px !important;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
}

.btn-login:hover {
    background-color: #03081fdc !important;
}

/* Navbar layout adjustments */
.navbar-collapse {
    position: relative;
}

.center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero-section {
    background-color: #fbfbfb;
    border: solid 1px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    /* padding: 40px 0; */
    margin-top: 20px;
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    margin-top: -20px;
}

.hero-content {
    margin: 0;
}

.hero-content .row {
    margin: 0 !important;
}

.hero-col-left {
    padding: 40px 0 40px 100px;
}

.hero-section h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 500;
}

.hero-section h1 strong {
    color: var(--orange-color);
}

.hero-section p {
    font-size: 20px;
    font-weight: 300;
}

.hero-section .keyword {
    font-weight: 600;
    color: var(--green-color);
}

.hero-img-container {
    background-color: var(--orange-soft);
    border-radius: 283px 12px 12px 0;
    /* overflow: hidden; */

    min-height: 100%;
    height: 100%;
}

.hero-img-container img {
    width: 100%;
    height: auto;
    margin-left: -6%;
    margin-top: -5%;
}

/* Search Form */
.search-form {
    max-width: 512px;
}

.location-input {
    border-radius: 120px 0 0 120px;
    padding-left: 45px;
}

.location-input::placeholder {
    color: var(--dark-color);
}

.search-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
}

.deal-type-select {
    border-radius: 0 120px 120px 0;
    border-left: 0;
}

.search-btn {
    background-color: var(--orange-color);
    color: white;
    font-weight: bold;
    border-radius: 120px;
    padding: 14px 24px;
    max-width: 275px;
    width: 100%;
}

.search-btn:hover {
    background-color: var(--orange-soft);
    color: #fff;
}

/* Category Section */

.container.category-section {
    max-width: 1418px;
    margin: 0 auto;
    padding: 0 15px;
}

.py-5 {
    padding: 3rem 0;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Section Heading */
.section-heading {
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    line-height: 72px;
    font-weight: 600;
    text-align: center;
    /* margin-bottom: 3rem; */
}

/* Slider Container */
.slider-container {
    position: relative;
    overflow: visible;
    margin: 0 auto;
    padding: 30px 0px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
    overflow: visible;
}

.slider-item {
    flex: 0 0 auto;
    padding: 0 15px;
    min-width: 0;
}

/* Category Cards */
.category-card {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 326px;
    border-radius: 40px;
    box-shadow: 2px 10px 16px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    background: white;
}

.card-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
}

.category-card img {
    max-width: 200px;
    max-height: 200px;
    width: 100%;
    height: auto;
    height: 200px;
    object-fit: contain;
    border-radius: 100px;
}

.category-card h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
}

.category-card p {
    font-size: 15px;
    text-align: center;
    color: #1e1e1e;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--orange-soft);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px;
}

.slider-btn:hover:not(.disabled) {
    background-color: var(--orange-color);
}

.slider-btn.disabled {
    background-color: #d9d9d9;
    color: var(--orange-soft);
    cursor: not-allowed;
}

/* Responsive Breakpoints */
/* Desktop (4 slides) */
@media (min-width: 1200px) {
    .slider-item {
        width: 25%;
    }
}

/* Laptop (3 slides) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .slider-item {
        width: 33.333333%;
    }
}

/* Tablet (2 slides) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .slider-item {
        width: 50%;
    }
}

/* Mobile (1 slide) */
@media (max-width: 575.98px) {
    .slider-item {
        width: 100%;
    }

    .section-heading {
        font-size: 36px;
        line-height: 54px;
    }

    .category-card {
        max-width: 280px;
    }

    .category-card img {
        max-width: 160px;
        max-height: 160px;
    }

    .category-card h3 {
        font-size: 24px;
    }
}

/*  */

/* Featured Deals CSS Starts */

.featured-deals {
    margin-bottom: 70px;
}

.deal-card-container {
    border-radius: 35px;
    width: 100%;
    box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
}

.card-top {
    height: 270px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.card-top-info-left {
    background-color: #ff2121;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 20px;
    color: #fff;
}

.card-top-info-right {
    background-color: #00695c;
    padding: 4px 8px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #fff;
}

.counter-box {
    background-color: #fff;
    border: solid 1px #dbdbdb;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
}

.counter-box h5 {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 0;
}

.counter-box p {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 0;
}

.card-bottom {
    padding: 20px;
}

.deal-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 100%;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: lighter;
    font-size: 13px;
}

.restaurant {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restaurant img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 8px;
}

.deal-price {
    display: flex;
    font-size: 16px;
    gap: 10px;
    flex-shrink: 0;
}
.price-old {
    color: #c7c3c3;
    text-decoration: line-through;
}
.price-new {
    color: #00695c;
}

.section-title {
    margin-bottom: 40px;
    font-weight: bold;
}

.btn-more-deals {
    background-color: var(--orange-soft);
    font-size: 18px;
    text-transform: uppercase;
    font: 400;
    padding: 8px 11px;
    border-radius: 120px;
    color: #fff;
}

.btn-more-deals > .btn-circle {
    width: 50px;
    height: 50px;
    border: 200px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
}

.btn-more-deals:hover {
    background-color: var(--orange-color);
    color: #fff;
}

.btn-circle i {
    color: #396c03;
}
/* Featured Deals CSS Ends */

/* TheDealDashers CSS Starts */
.deal-dashers {
    padding: 50px 70px;
    position: relative;
}

.deals-dashers-content-container {
    background-color: #ededed;
    max-height: 360px;
    border-radius: 12px;
    padding: 40px;
}

.deal-heading {
    font-size: 40px;
    font-weight: bold;
    font-family: "Poppins";
    line-height: 120%;
    margin-bottom: 10px;
}

.deal-tag {
    background-color: #00695c;
    border-radius: 120px;
    padding: 5px 55px;
    font-family: "Poppins";
    font-size: 34px;
    line-height: 120%;
    letter-spacing: -2px;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
}

.deal-tag .highlight {
    color: #fc8a06;
    text-decoration: underline;
}

.deal-description {
    font-size: 16px;
    font-family: "Poppins";
    line-height: 130%;
    letter-spacing: 1px;
    margin-bottom: 20px;
    max-width: 380px;
}

.stores-logo-container {
    display: flex;
    gap: 5px;
}

.stores-logo-container img {
    border-radius: 10px;

    width: 150px;
    height: auto;
}

.deal-img-container {
    transform: translateY(-55px);
}

.deal-img-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: -15px;
}
/* TheDealDashers CSS Ends */

/* How it Works Section CSS Starts */
.how-it-works-wrapper {
    max-width: 1290px;
    margin: 0 auto;
    padding: 20px 15px;
    gap: 90px !important;
}

.col-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.tab {
    background-color: #fff;
    border-radius: 80px;
    box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: bold;
    list-style: 120%;
    position: relative;
    z-index: 10;
    gap: 15px;
    min-width: 280px;
}

.tab.tab-active {
    box-shadow: 6px 4px 0px rgba(252, 138, 6, 1);
}

.tab img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.arrow-curve-img {
    position: absolute;
    top: 0;
    right: -70px;
    width: 100px;
    height: 100px;
}

.arrow-img {
    position: absolute;
    top: 10px;
    right: -18px;
}

.col-center img {
    max-height: 521px;
    max-width: 397px;
    width: 100%;
}

.col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.col-right h3 {
    font-size: 36px;
    line-height: 120%;
    font-weight: 500;
}

.col-right p {
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    color: #434344;
    max-width: 297px;
}
/* How it Works Section CSS Ends */

/* CTA Section CSS Starts */
.cta-section {
    width: 100%;
    padding: 30px 20px;
}

.cta-content-wrapper {
    max-width: 1400px;
    width: 100%;
}

.cta-left {
    align-items: flex-start;
}

.cta-heading {
    font-size: 36px;
    font-weight: bold;
    line-height: 120%;
}

.cta-description {
    font-size: 18px;
    font-weight: 400;
}

.cta-btn {
    border: 0;
    outline: 0;
    background-color: #fc8a06;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    padding: 16px 24px;
    color: #fff;
    border-radius: 120px;
    cursor: pointer;
}

.watch-and-follow {
    margin-top: 20px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #fc8a06;
    font-family: "Fredoka", "Poppins", sans-serif;
    font-weight: 600;
}

.watch-and-follow img {
    width: 120px;
    margin-right: -20px;
}

.cta-img {
    width: 400px;
    /* max-width: 100%; */
    height: auto;
}

/* CTA Section CSS Ends */

/* Business Section CSS Starts */
.business-content-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.stats-section {
    background-color: #00695c;
    border-radius: 1rem;
    padding: 30px 20px;
    color: white;
    overflow: hidden;
}

.stats-divider {
    width: 1px;
    height: 100px;
    background-color: #d9d9d9;
    margin: 0 1.5rem;
}

.stats-number {
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
}

.stats-label {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}
/* Business Section CSS Ends */

/* Footer CSS Starts */

.footer-top {
    background-color: #e5ebe3;
}

.footer-logo {
    width: 250px;
    /* margin-left: -86px; */
}

.f-text {
    font-size: 16px;
    line-height: 130%;
}

.store-logo-container .store-btn {
    width: 155px;
}

.col-heading {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.footer-links-container {
    list-style: none;
    padding-left: 0;
}

.footer-links-container li {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-links-container li a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    gap: 5px;
}

.footer-form-heading {
    font-size: 18px;
    font-weight: bold;
    color: #03081f;
}

.footer-form-container {
    background-color: #d9d9d9;
    border-radius: 120px;
    overflow: hidden;
}

.footer-from-input {
    background-color: transparent;
    border: 0;
    outline: 0;
    width: 100%;
    padding: 18px 26px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
}

.footer-form-btn {
    border: 0;
    outline: 0;
    font-size: 18px;
    padding: 18px 26px;
    background-color: #fc8a06;
    color: #fff;
    font-weight: 600;
    border-radius: 120px;
    white-space: nowrap;
}

.footer-form-heading,
.form-bottom-text {
    padding-left: 30px;
}

.form-bottom-text {
    font-size: 13px;
    font-weight: 300;
    color: #03081f;
}

.form-bottom-text a {
    color: #03081f;
}

.footer-bottom {
    background-color: #00695c;
    padding: 20px 0;
}

.copyright-text {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.bottom-links {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 50px;
}

.bottom-links a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

/* Footer CSS Ends */

/* Deal Listing Page CSS Starts */

/* Deal Listing Hero Section CSS Starts  */

.deal-listing-hero {
    background-color: #f69545;
    padding: 50px 130px;
    max-height: 332px;
    overflow: hidden;
    background-image: url("./images/deal-listing-hero.png");
    background-repeat: no-repeat;
    background-position: 90% -0%;
    /* background-size: auto 120%; */
    background-size: contain;
}
.deal-listing-left {
    max-width: 658px;
    gap: 33px;
}
.deals-listing-heading {
    font-size: clamp(32px, 4vw, 60px);
    line-height: 120%;
    font-weight: bold;
}
.list-deal-from {
    max-width: 512px;
    width: 100%;
}
.list-deal-from .input-wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 120px;
    overflow: hidden;
    padding: 0 25px;
    gap: 10px;
}
.list-deal-from .input-wrapper img {
    flex-shrink: 0;
    width: 24px;
    height: auto;
}
.list-deal-from .input-wrapper input {
    border: 0;
    margin: 0;
    width: 100%;
    padding: 20px 8px;
    font-size: 15px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
}
.list-deal-from .input-wrapper input:focus {
    outline: 0;
}
/* Deal Listing Hero Section CSS Ends */

/* Deal Listing Filter Top Starts */
.filter-top-container {
    display: flex;
    justify-content: flex-end;
    padding: 30px 100px;
}
.custom-select-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-select-wrapper label {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    color: #2f3b4c; /* Matches your Sort By text color */
}
.custom-select {
    max-width: 132px;
    border: 2px solid #f69545;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    padding-right: 30px; /* Space for arrow */
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path fill="%23f69545" d="M6 8L0 0h12z"/></svg>')
        no-repeat right 10px center;
    background-color: #fff;
}
.custom-select:focus {
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
    .filter-top-container {
        padding: 20px 50px;
    }
}

/* Deal Listing Filter Top Ends */

/* --------------------------- */
/* Deal Listing Page CSS Ends */

/*
-----------------------------------------

═══════════════════════════════════════╗
║               RESPONSIVE             ║
╚═══════════════════════════════════════

------------------------------------------
*/

/* Deal Listing Content CSS Starts */
.deal-listing-content-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 30px;
}

.listing-filter-container {
    width: 100%;
}

.filter-label-text {
    font-size: 20px;
    font-weight: bold;
    line-height: 120%;
    margin: 0;
}

.clear-text {
    text-decoration: none;
    color: #2563eb;
    font-size: 14px;
}

.filter-btn {
    background-color: var(--orange-soft) !important;
    border: var(--orange-soft) !important;
}

.filter-btn:hover {
    background-color: var(--orange-color) !important;
    border: var(--orange-color) !important;
}

.listing-cards-container {
    width: 100%;
}

/* filter accordians css starts */
.filter-accordians-container .custom-card {
    width: 100%;
    border-radius: 12px;
    box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 20px;
}

.accordion-button {
    background-color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1rem;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Remove default background when collapsed */
.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: inherit;
}

.category-subtitle {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Custom Checkbox */
.form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #ccc;
    cursor: pointer;
    margin-top: 0.2rem;
}

.form-check-input:checked {
    background-color: transparent;
    border-color: #f69545;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 20 20"><polyline points="4 11 8 15 16 6" fill="none" stroke="%23f69545" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

.form-check-label {
    font-size: 0.95rem;
    margin-left: 8px;
    cursor: pointer;
}
/* filter accordians css ends */

/* Deal Cards Wrapper CSS Starts */
.deal-cards-wrapper {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    align-items: center;
}

.deal-card-container {
    border-radius: 10px;
    overflow: hidden;
    background-color: #f9f9f9;
    border: solid 1px rgba(212, 212, 212, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.deal-card-top {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 185px;
    height: 185px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
    padding: 15px;
    position: relative;
}

/* Overlay for better text visibility */
.deal-card-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
}

.label-and-favourite {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    z-index: 50;
}

.deal-card-label {
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 110%;
    padding: 5px 10px;
    white-space: nowrap;
}

.label-flash {
    background-color: #ff2121;
}

.label-ongoing {
    background-color: #00695c;
    width: 75px;
    text-align: center;
    line-height: 1.2;
}

.favourite-icon-container {
    background-color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 200px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favourite-icon-container:hover {
    transform: scale(1.1);
}

.counter-box {
    background-color: #fff;
    border: solid 1px #dbdbdb;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

@media (max-width: 576px) {
    .counter-box {
        width: 45px;
        height: 45px;
    }
}

.counter-box h5 {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 0;
}

.counter-box p {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 0;
}

.listing-card-bottom {
    padding: 14px 15px 20px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.deal-title-and-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
}

.deal-title {
    font-size: 12px;
    font-weight: bold;
    line-height: 120%;
    color: #111827;
    margin: 0;
}

@media (min-width: 576px) {
    .deal-title {
        font-size: 12px;
    }
}

.deal-price {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-shrink: 0;
}

.deal-price-old {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    text-decoration: line-through;
}

.deal-price-new {
    font-size: 15px;
    color: #16a34a;
    font-weight: bold;
}

.deal-brand-name {
    font-size: 13px;
    font-weight: 400;
    color: #4b5563;
    line-height: 120%;
    margin: 0;
    margin-bottom: 2px;
}

.deal-brand-logo {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

.distance {
    color: #6b7280;
    font-size: 10px;
}

.deal-rating {
    color: #4b5563;
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    gap: 5px;
    display: flex;
    align-items: center;
}

.deal-address {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    line-height: 110%;
}

.location-and-claim-now {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    gap: 10px;
}

@media (max-width: 576px) {
    .location-and-claim-now {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .claim-deal-btn {
        width: 100%;
        justify-content: center;
    }
}

.claim-deal-btn {
    background-color: #f57c17;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 120%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.claim-deal-btn:hover {
    background-color: #e67314;
    color: #fff;
    transform: translateY(-2px);
}

.counter-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .counter-container {
        gap: 8px;
    }
}

.brand-and-rating {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.deal-brand-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Mobile filter toggle */
.mobile-filter-toggle {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    .mobile-filter-toggle {
        display: none;
    }
}

/* Filter sidebar for mobile */
/* .filter-sidebar {
  display: none;
} */

@media (min-width: 992px) {
    .filter-sidebar {
        display: block !important;
    }
}

.loading-more {
    text-align: center;
    padding: 20px;
    color: #6b7280;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 1.2rem;
}

.hidden {
    display: none !important;
}

.more-savings-btn {
    background-color: #00695c;
    color: #fff;
    border-radius: 37px;
    padding: 8px 11px;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    margin-top: 40px;
    font-weight: 600;
}

.more-savings-btn:hover {
    background-color: #025b51;
    color: #fff;
}
/* Deal Listing Content CSS Ends */

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Deal Gallery Page CSS Starts */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

/* Breadcrumbs + Main Deal Section CSS Starts*/
.breadcrumbs-wrapper {
    background-color: #fff;
}

.breadcrumb-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item a {
    color: #1a1a1a;
    font-size: 24px;
    line-height: 120%;
    font-weight: normal;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #00695c;
}

.breadcrumb-item:last-child a {
    font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: none;
}

.breadcrumb-item .fa-chevron-right {
    color: #666;
    font-size: 16px;
}

/* Thumbnails */
#p-id-3 .deal-thumbnails {
    max-width: 162px;
}

.thumbnail-img {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
    border-radius: 13px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-img:hover {
    transform: scale(1.05);
    border-color: #00695c;
}

.thumbnail-img.active {
    border-color: #00695c;
    transform: scale(1.02);
}

.last-thumbnail {
    position: relative;
}

.rest-of-thumbnails {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    line-height: 120%;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rest-of-thumbnails:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gallery-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.gallery-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 200px;
    transition: background-color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.gallery-main-image {
    text-align: center;
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 15px;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #00695c;
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Active thumbnail */
.active-thumbnail {
    position: relative;
}

.active-thumbnail-img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    max-height: 500px;
    object-fit: cover;
    opacity: 1 !important;
}

.thumbnail-icons-wrapper {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
}

.thumbnail-icon-container {
    background-color: #fff;
    width: 41px;
    height: 41px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail-icon-container:hover {
    transform: scale(1.1);
}

.thumbnail-icon-container img {
    width: 26px;
    height: 26px;
}

/* Deal cards */
.deal-info,
.deal-brand-info {
    background-color: #fff;
    box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: none;
}

.deal-off-text,
.brand-name {
    font-size: 30px;
    font-weight: bold;
    line-height: 120%;
    color: #1a1a1a;
}

#p-id-3 .deal-price-old {
    color: #b3b3b3;
    font-size: 22px;
    font-weight: normal;
    line-height: 120%;
    text-decoration: line-through;
}

#p-id-3 .deal-price-new {
    color: #2c742f;
    font-size: 26px;
    font-weight: bold;
    line-height: 120%;
}

#p-id-3 .deal-price-off {
    background-color: rgba(234, 75, 72, 0.1);
    color: #ea4b48;
    border-radius: 30px;
    padding: 3px 10px;
    font-weight: 600;
    font-size: 14px;
}

#p-id-3 .stars-container img {
    width: 18px;
    height: 18px;
}

#p-id-3 .rating-text {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-left: 8px;
}

/* Flash deal button */
#p-id-3 .flash-deal-label {
    background-color: #f57c17;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 13px;
    transition: background-color 0.3s ease;
}

.flash-text img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

/* Brand info */
.deal-brand__logo img {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain;
}

.brand-location-text {
    color: #6b7280;
    font-size: 18px;
    font-weight: 400;
}

/* Claim deal button */
#p-id-3 .claim-deal {
    background-color: #00695c;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 120%;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.claim-deal:hover {
    background-color: #058375;
    color: #fff;
}

/* Timer styles */
.timer-value {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 6px;
    margin: 0 2px;
}

.section-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

.section-navigation a {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#p-id-3 .section-nav-link {
    font-size: 20px !important;
    line-height: 150%;
}

#p-id-3 .section-nav-link.active {
    background-color: transparent !important;
    border-radius: 0;
    font-weight: bold;
    border-bottom: 8px solid #00695c;
}

#p-id-3 .review-text,
.dg-section-text {
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
}

.dg-section-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 150%;
}

#p-id-3 .section-navigation {
    padding: 20px 48px;
}

#description-section,
#redeem-section,
#experience-section {
    padding: 20px 80px;
}

.map-container {
    width: 100%;
    height: 0;
    padding-bottom: 47.6%; /* 681/1430 aspect ratio */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

#p-id-3 .map-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff0000"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>')
        no-repeat center;
    transform: translate(-50%, -100%);
    z-index: 10;
}

/* Redeem Container CSS Starts */

/* Experience Section CSS Starts */
.experience-section-container {
    /* max-width: 1342px; */
    margin: 0 auto;
    padding: 20px 48px;
}

.review-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2;
    /* margin-bottom: 15px; */
}

.title-underline {
    height: 8px;
    background-color: #00695c;
    width: 13rem;
    margin-bottom: 18px;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 20px;
}

.review-text {
    color: #3d3d3d;
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 30px;
}

.review-meta {
    display: flex;
    gap: 200px;
    margin-bottom: 60px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
    min-width: 210px;
}

.reviewer-name {
    color: #f57c17;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    /* margin-bottom: 5px; */
}

.review-date {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #000;
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 200px;
    object-fit: cover;
    border: 1.28px solid #2d2d2d;
    flex-shrink: 0;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.star-filled {
    color: #e99d19;
    font-size: 1.5rem;
}

.star-empty {
    color: #cccccc;
    font-size: 1.5rem;
}

.related-deals-section-heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    color: #1a1a1a;
    padding: 20px;
}

/* Experience Section CSS Ends  */

/* Slider CSS Starts */

#p-id-3 .deal-card-container {
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(212, 212, 212, 0.2);
    border: solid 1px rgba(212, 212, 212, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none !important;
}

#p-id-3 .deal-card-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#p-id-3 .deal-card-top {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 185px;
    height: 185px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
    padding: 15px;
    position: relative;
}

/* Overlay for better text visibility */
#p-id-3 .deal-card-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
}

#p-id-3 .label-and-favourite {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    z-index: 2;
}

#p-id-3 .deal-card-label {
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 110%;
    padding: 5px 10px;
    white-space: nowrap;
}

#p-id-3 .label-flash {
    background-color: #ff2121;
}

#p-id-3 .label-ongoing {
    background-color: #00695c;
    width: 75px;
    text-align: center;
    line-height: 1.2;
}

#p-id-3 .favourite-icon-container {
    background-color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 200px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

#p-id-3 .favourite-icon-container:hover {
    transform: scale(1.1);
}

#p-id-3 .counter-box {
    background-color: #fff;
    border: solid 1px #dbdbdb;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

@media (max-width: 576px) {
    #p-id-3 .counter-box {
        width: 45px;
        height: 45px;
    }
}

#p-id-3 .counter-box h5 {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 0;
}

#p-id-3 .counter-box p {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 0;
}

#p-id-3 .listing-card-bottom {
    padding: 14px 15px 20px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#p-id-3 .deal-title-and-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
}

#p-id-3 .deal-title {
    font-size: 15px;
    font-weight: bold;
    line-height: 120%;
    color: #111827;
    margin: 0;
}

@media (min-width: 576px) {
    #p-id-3 .deal-title {
        font-size: 16px;
    }
}

#p-id-3 .deal-price {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-shrink: 0;
}

#p-id-3 .deal-price-old {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    text-decoration: line-through;
}

#p-id-3 .deal-price-new {
    font-size: 15px;
    color: #16a34a;
    font-weight: bold;
}

#p-id-3 .deal-brand-name {
    font-size: 13px;
    font-weight: 400;
    color: #4b5563;
    line-height: 120%;
    margin: 0;
    margin-bottom: 2px;
}

#p-id-3 .deal-brand-logo {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

#p-id-3 .distance {
    color: #6b7280;
    font-size: 10px;
}

#p-id-3 .deal-rating {
    color: #4b5563;
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    gap: 5px;
    display: flex;
    align-items: center;
}

#p-id-3 .deal-address {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    line-height: 110%;
}

#p-id-3 .location-and-claim-now {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    gap: 10px;
}

@media (max-width: 576px) {
    #p-id-3 .location-and-claim-now {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #p-id-3 .claim-deal-btn {
        width: 100%;
        justify-content: center;
    }
}

#p-id-3 .claim-deal-btn {
    background-color: #f57c17;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 120%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

#p-id-3 .claim-deal-btn:hover {
    background-color: #e67314;
    color: #fff;
    transform: translateY(-2px);
}

#p-id-3 .counter-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    #p-id-3 .counter-container {
        gap: 8px;
    }
}

#p-id-3 .brand-and-rating {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

#p-id-3 .deal-brand-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Mobile filter toggle */
#p-id-3 .mobile-filter-toggle {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    #p-id-3 .mobile-filter-toggle {
        display: none;
    }
}

@media (min-width: 992px) {
    #p-id-3 .filter-sidebar {
        display: block !important;
    }
}

#p-id-3 .loading-more {
    text-align: center;
    padding: 20px;
    color: #6b7280;
}

#p-id-3 .no-results {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 1.2rem;
}

#p-id-3 .hidden {
    display: none !important;
}

/* Additional styles for section */
#p-id-3 .related-deals-section-container {
    padding: 40px 20px;
}

/* Perfect Responsive Slider Styles */
#p-id-3 .slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

#p-id-3 .slider-container {
    overflow: hidden;
    margin: 0 60px;
}

@media (max-width: 768px) {
    #p-id-3 .slider-container {
        margin: 0;
    }
}

#p-id-3 .related-deals-slider {
    display: flex;
    transition: transform 0.4s ease;
}

#p-id-3 .slider-card {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Perfect responsive breakpoints */
@media (min-width: 576px) {
    #p-id-3 .slider-card {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    #p-id-3 .slider-card {
        flex: 0 0 33.333333%;
    }
}

@media (min-width: 1200px) {
    #p-id-3 .slider-card {
        flex: 0 0 25%;
    }
}

/* Navigation buttons with proper spacing */
#p-id-3 .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#p-id-3 .slider-nav:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

#p-id-3 .slider-nav.prev {
    left: 0;
}

#p-id-3 .slider-nav.next {
    right: 0;
}

#p-id-3 .slider-nav img {
    width: 24px;
    height: 24px;
}

/* Hide navigation on mobile */
@media (max-width: 768px) {
    #p-id-3 .slider-nav {
        display: none;
    }
}

/* Dots navigation */
#p-id-3 .slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 50px;
}

#p-id-3 .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

#p-id-3 .slider-dot.active {
    background: #f57c17;
    transform: scale(1.3);
}

#p-id-3 .slider-dot:hover {
    background: #f57c17;
    opacity: 0.8;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    #p-id-3 .slider-card {
        padding: 0 5px;
    }

    #p-id-3 .related-deals-slider {
        touch-action: pan-x;
    }
}

/* Ensure cards maintain aspect ratio */
#p-id-3 .slider-card > div {
    height: 100%;
}

/* Slider CSS Ends */

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Deal Gallery Page CSS Ends */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

/* Profile Hero Section CSS Starts */
.profile-hero-bg {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 492px;
}

.profile-info-container {
    /* padding: 0 70px; */
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-logo-wrapper {
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-logo-img {
    width: 150px;
    height: auto;
}

.profile-heading {
    font-size: 40px;
    font-weight: bold;
    line-height: 120%;
    color: #191919;
}

.profile-description-heading {
    font-size: 25px;
    font-weight: 500;
    line-height: 120%;
    color: #191919;
}

.profile-description-text {
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    color: #6b7280;
    max-width: 800px;
}

/* Contact Section */
.profile-contact-container {
    padding: 60px 0px;
    overflow: hidden;
}

#p-id-4 .contact-header {
    color: #191919;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

#p-id-4 .contact-info {
    color: #6b7180;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

#p-id-4 .location-hours-header {
    color: #191919;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    margin-top: 5px;
}

#p-id-4 .location-info {
    color: #6b7180;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

#p-id-4 .days-column,
#p-id-4 .hours-column {
    color: #6b7180;
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.5px;
}

#p-id-4 .icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    flex-shrink: 0;
}

#p-id-4 .map-image {
    width: 100%;
    height: auto;
    max-width: 986px;
    max-height: 470px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#p-id-4 .day-and-time-wrapper {
    display: flex;
    flex-direction: row !important;
}

#p-id-4 .days-and-hour-icon-mob-wrapper {
    display: none;
}

/* Profile Hero Section CSS Ends*/

/* Review Section CSS Starts */
/* --- */
/* Deal Profile Reviews Section CSS */
.deal-profile-reviews-section {
    padding: 40px 0;
}

.deal-profile-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #191919;
}

.deal-profile-overall-container {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
    align-items: flex-start;
}

.deal-profile-rating-card {
    max-width: 406px;
    width: 100%;
    box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 26px;
    background: white;
    flex-grow: 1;
}

.deal-profile-overall-heading {
    color: #00695c;
    font-size: 28px;
    font-weight: bold;
    line-height: 120%;
    margin-bottom: 15px;
}

.deal-profile-stars-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-profile-reviews-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.deal-profile-review-card {
    margin-bottom: 40px;
}

.deal-profile-review-text {
    color: #3d3d3d;
    font-size: 1.5rem;
    line-height: 155%;
    margin-bottom: 30px;
}

.deal-profile-review-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.deal-profile-reviewer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
    min-width: 210px;
}

.deal-profile-reviewer-name {
    color: #f57c17;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.deal-profile-review-date {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #000;
}

.deal-profile-reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 200px;
    object-fit: cover;
    border: 1.28px solid #2d2d2d;
    flex-shrink: 0;
}

.deal-profile-star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.deal-profile-star-filled {
    color: #e99d19;
    font-size: 1.5rem;
}

.deal-profile-star-empty {
    color: #cccccc;
    font-size: 1.5rem;
}

.deal-profile-load-more-btn {
    border: 0;
    outline: 0;
    color: rgba(107, 114, 128, 0.7);
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    font-weight: bold;
    background-color: transparent;
    display: block;
    margin: 30px auto;
    width: 230px;
}

.deal-profile-load-more-btn:hover {
    color: rgba(107, 114, 128, 1);
}

.business-deals-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
    overflow: visible;
}
/* Review Section CSS Ends */

#p-id-4 .business-heading {
    padding: 0 50px;
}

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Profile Page CSS Ends */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Privacy Policy Page CSS Starts */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
#p-id-5 .privacy-policy-content-container {
    background-color: #f0eded;
    width: 95%;
    margin: 50px auto;
}

#p-id-5 {
    line-height: 1.5;
}

#p-id-5 .header-underline {
    border-bottom: 8px solid #f57c17;
    width: 240px;
    margin-bottom: 30px;
}

#p-id-5 .section-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

#p-id-5 .subsection-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

#p-id-5 .section-title,
#p-id-5 .subsection-title {
    margin-left: 200px;
}

#p-id-5 .content-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

#p-id-5 .content-text ul {
    margin-top: 15px;
    padding-left: 20px;
}

#p-id-5 .content-text li {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Privacy Policy Page CSS Ends */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Voucher Page CSS Starts */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

.dv-voucher-content-container {
    max-width: 600px;
    width: 100%;
    background-color: white;
    border-radius: 24px;
    box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.dv-voucher-code-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dv-voucher {
    width: 100%;
    padding: 30px 30px 0 30px;
}

.dv-header {
    text-align: center;
    margin-bottom: 30px;
}

.dv-title {
    font-size: 28px;
    font-weight: 800;
    color: #2f2e41;
    margin: 0 0 10px 0;
}

.dv-subtitle {
    font-size: 20px;
    color: #4a5462;
    font-weight: 400;
    margin: 0;
}

.dv-deal-section {
    background-color: #eef6ff;
    border-left: 4px solid #5fa4f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.dv-deal-title {
    font-size: 24px;
    font-weight: 800;
    color: #f57c17;
    margin: 0 0 15px 0;
}

.dv-restaurant {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.dv-restaurant-name {
    font-size: 16px;
    font-weight: 500;
    color: #2f2e41;
    margin-left: 8px;
}

.dv-price {
    display: flex;
    align-items: center;
}

.dv-original-price {
    font-size: 24px;
    color: #b3b3b3;
    text-decoration: line-through;
    margin-right: 15px;
}

.dv-current-price {
    font-size: 28px;
    color: #2c732f;
    font-weight: 500;
    margin-right: 15px;
}

.dv-discount {
    background-color: rgba(233, 75, 72, 0.1);
    color: #e94b48;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.dv-info-section {
    margin-bottom: 30px;
}

.dv-info-title {
    font-size: 16px;
    font-weight: 700;
    color: #2f2e41;
    margin: 0 0 5px 0;
}

.dv-info-content {
    font-size: 14px;
    color: #4a5462;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.dv-customer-section {
    margin-bottom: 30px;
}

.dv-customer-title {
    font-size: 18px;
    font-weight: 700;
    color: #2f2e41;
    margin: 0 0 20px 0;
}

.dv-customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dv-customer-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
}

.dv-customer-label {
    font-size: 12px;
    color: #4a5462;
    margin: 0 0 5px 0;
}

.dv-customer-value {
    font-size: 14px;
    font-weight: 700;
    color: #2f2e41;
    margin: 0 0 5px 0;
}

.dv-customer-detail {
    font-size: 14px;
    color: #4a5462;
    margin: 0;
}

.dv-footer-note {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    color: #4a5462;
    margin-bottom: 30px;
}

.dv-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dv-btn {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: white;
    border: none;
    cursor: pointer;
}

.dv-btn-download {
    background-color: #f57c17;
}

.dv-btn-share {
    background-color: #00695c;
}

.dv-code-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dv-code-label {
    font-size: 20px;
    color: #4a5462;
    font-weight: 400;
}

.dv-code-value {
    font-size: 24px;
    color: #f57c17;
    font-weight: 800;
}

.dv-valid-card {
    background-color: #effcf4;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    width: 100%;
}

.dv-valid-icon {
    margin-right: 12px;
}

.dv-valid-info {
    display: flex;
    flex-direction: column;
}

.dv-valid-label {
    font-size: 14px;
    color: #4a5462;
    margin: 0 0 5px 0;
}

.dv-valid-date {
    font-size: 16px;
    color: #15a249;
    font-weight: 800;
    margin: 0;
}

.dv-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
}

.dv-qr-code {
    width: 160px;
    height: 160px;
    background-color: #eee;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dv-qr-label {
    font-size: 12px;
    color: #2f2e41;
}

.dv-content-row {
    display: flex;
    margin-bottom: 30px;
}

.dv-icon {
    width: 20px;
    height: 20px;
}

.dv-data-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    gap: 12px;
}

.dv-code-label,
.dv-code-value {
    text-align: right;
}

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Voucher Page CSS Ends */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Login Page CSS Starts */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

.dd-login-container {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    padding-top: 0;
    margin-bottom: 20px;
}

.dd-login-header {
    text-align: center;
    color: #4a5462;
    font-size: 16px;
    margin-bottom: 20px;
}

.dd-form-header-logo {
    width: 270px;
}

.dd-form-header-text {
    display: inline-block;
    margin-top: -20px;
}

.dd-login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    padding: 32px;
    margin-bottom: 20px;
}

.dd-form-label {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.dd-form-control {
    height: 48px;
    border: 1px solid #d1d4db;
    border-radius: 8px;
    padding-left: 40px;
}

.dd-form-control::placeholder {
    color: #a9a9a9;
    font-size: 16px;
}

.dd-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7180;
}

.dd-remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
}

.dd-remember-me {
    display: flex;
    align-items: center;
}

/* Custom checkbox styling with dd- prefix */
.dd-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #00695c;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
}

.dd-checkbox:checked {
    background-color: #00695c;
    border-color: #00695c;
}

.dd-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.dd-forgot-password {
    color: #00695c;
    font-weight: 500;
    text-decoration: none;
}

.dd-btn-login {
    background-color: #00695c;
    color: white;
    width: 100%;
    height: 48px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
}

.dd-btn-login:hover {
    background-color: #078071;
    color: #fff;
}

.dd-btn-login:active {
    background-color: #005249 !important;
    color: #fff !important;
}

/* Divider styling */
.dd-divider {
    border-top: 1px solid #e4e7eb;
    margin-top: 24px;
    padding-top: 24px;
    text-align: center;
}

.dd-divider-text {
    color: #4a5462;
    font-size: 14px;
}

.dd-register-link {
    color: #00695c;
    text-decoration: none;
}

.dd-footer-text {
    text-align: center;
    color: #6b7180;
    font-size: 12px;
}

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Login Page CSS Ends */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Register Page CSS Starts */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

.signup-registration-card {
    width: 100%;
    max-width: 1057px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 32px;
    position: relative;
    margin: 0 auto 100px auto;
}

.signup-logo-container {
    margin-bottom: 30px;
}

.signup-brand-name {
    font-size: 24px;
    font-weight: 600;
    color: black;
}

.signup-form-title {
    font-size: 40px;
    font-weight: 700;
    color: #111727;
    margin-bottom: 16px;
}

.signup-form-subtitle {
    font-size: 20px;
    color: #4a5462;
    margin-bottom: 40px;
}

.signup-form-label {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.signup-form-control {
    height: 48px;
    border: 1px solid #d1d4db;
    border-radius: 8px;
    padding-left: 40px;
    font-size: 16px;
    width: 100%;
}

.signup-form-control::placeholder {
    color: #a9a9a9;
    font-weight: 400;
}

.signup-password-hint {
    font-size: 16px;
    color: #6b7180;
    margin-top: 8px;
}

.signup-custom-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 24px;
    min-height: 24px;
    border: 2px solid #00695c;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.signup-custom-checkbox:checked {
    background-color: #00695c;
    border-color: #00695c;
}

.signup-custom-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.signup-terms-checkbox {
    margin-top: 24px;
}

.signup-terms-label {
    font-size: 16px;
    color: #4a5462;
}

.signup-terms-link {
    color: #00695c;
    text-decoration: none;
}

.signup-register-btn {
    background-color: #00695c;
    color: white;
    font-size: 20px;
    font-weight: 700;
    height: 44px;
    border-radius: 8px;
    border: none;
    width: 100%;
    max-width: 384px;
    margin: 40px auto;
}

.signup-register-btn:hover {
    background-color: #078071;
    color: #fff;
}

.signup-register-btn:active {
    background-color: #005249 !important;
    color: #fff !important;
}

.signup-login-text {
    font-size: 16px;
    color: #4a5462;
    text-align: center;
}

.signup-login-link {
    color: #00695c;
    text-decoration: none;
}

.signup-form-icon {
    color: #6b7180;
}

.signup-logo-img {
    /* logo image styles */
}

.signup-checkbox-container {
    display: flex;
    align-items: center;
}

/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* Register Page CSS Ends */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

/* Umair */

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .deal-tag {
        font-size: 33px;
    }

    .deals-dashers-content-container > div.row {
        margin-left: auto;
        margin-right: auto;
    }

    .deal-listing-hero {
        padding: 50px 100px;
        background-position: 92% -20%;
    }
    .deal-listing-left {
        max-width: 600px;
    }

    #p-id-3 .deal-off-text,
    #p-id-3 .brand-name {
        font-size: 28px;
    }
    #p-id-3 .deal-price-old {
        font-size: 20px;
    }
    #p-id-3 .deal-price-new {
        font-size: 24px;
    }
    #p-id-3 .brand-location-text {
        font-size: 18px;
    }
    .deal-brand__logo img {
        width: 120px;
        height: 120px;
    }
    #p-id-3 .claim-deal {
        font-size: 19px;
    }
}

@media (max-width: 1300px) {
    .hero-section h1 {
        font-size: 60px;
    }
    .hero-col-left {
        padding-left: 40px;
        padding-right: 20px;
    }

    .hero-img-container {
        /* margin-left: 10px; */
    }

    .hero-img-container img {
        width: 100%;
        height: auto;
        margin-left: -8%;
        margin-top: -5%;
    }

    .deal-heading {
        font-size: 38px;
    }

    .deal-tag {
        font-size: 30px;
    }

    #p-id-3 .deal-off-text,
    #p-id-3 .brand-name {
        font-size: 26px;
    }
    #p-id-3 .deal-price-old {
        font-size: 19px;
    }
    #p-id-3 .deal-price-new {
        font-size: 23px;
    }
    #p-id-3 .brand-location-text {
        font-size: 17px;
    }
    .deal-brand__logo img {
        width: 110px;
        height: 110px;
    }
    #p-id-3 .claim-deal {
        font-size: 18px;
    }
    #p-id-3 .rating-text {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 15px 40px;
    }

    .nav-link {
        font-size: 16px;
        font-weight: 400;
        color: var(--dark-color) !important;
        padding: 9px 30px !important;
        border-radius: 120px;
        margin: 0 5px;
    }

    .btn-login {
        background-color: var(--dark-color);
        color: var(--white-color) !important;
        border-radius: 120px;
        padding: 14px 20px !important;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 11px;
        white-space: nowrap;
    }

    .hero-section h1 {
        font-size: 55px;
    }

    .search-form {
        max-width: 450px;
    }

    .deal-title {
        font-size: 20px;
    }

    .restaurant {
        font-size: 14px;
    }

    .deal-price {
        font-size: 14px;
    }

    .deal-heading {
        font-size: 30px;
    }

    .deal-tag {
        font-size: 28px;
        padding: 8px 30px;
    }

    .deal-description {
        font-size: 16px;
        text-align: center;
    }

    .footer-logo {
        margin-left: 0;
        width: 200px;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3,
    .footer-col-4 {
        padding: 0 15px;
    }

    .footer-form-btn {
        padding: 18px 20px;
        font-size: 16px;
    }

    .deal-listing-hero {
        padding: 40px 80px;
        background-position: 95% 0%;
        background-size: auto 110%;
    }
    .deal-listing-left {
        max-width: 500px;
    }

    #p-id-3 .deal-off-text,
    #p-id-3 .brand-name {
        font-size: 24px;
    }
    #p-id-3 .deal-price-old {
        font-size: 18px;
    }
    #p-id-3 .deal-price-new {
        font-size: 22px;
    }
    #p-id-3 .brand-location-text {
        font-size: 16px;
    }
    .deal-brand__logo img {
        width: 100px;
        height: 100px;
    }
    #p-id-3 .claim-deal {
        font-size: 17px;
    }
    #p-id-3 .rating-text {
        font-size: 14px;
    }
    #p-id-3 .deal-info,
    #p-id-3 .deal-brand-info {
        padding: 1.25rem !important;
    }

    .profile-info-container {
        padding: 0px;
    }
    .profile-contact-container {
        padding: 0px;
    }
    #p-id-4 .days-column,
    #p-id-4 .hours-column,
    #p-id-4 .location-info,
    #p-id-4 .contact-info {
        font-size: 20px;
    }

    #p-id-5 .section-title {
        font-size: 3rem;
    }
    #p-id-5 .subsection-title {
        font-size: 1.8rem;
    }
    #p-id-5 .content-text,
    #p-id-5 .content-text li {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    #p-id-5 .section-title,
    #p-id-5 .subsection-title {
        margin-left: 100px;
    }

    .deal-description {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .navbar .dropdown-menu {
        margin-top: 3px;
        margin-left: 0px;
    }

    .navbar ul.navbar-nav li.nav-item {
        margin-bottom: 5px;
    }

    .hero-section {
        width: 100%;
        margin-top: 0;
    }

    .hero-content .row {
        margin: 0;
    }

    .hero-section h1 {
        font-size: 44px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .hero-img-container {
        border-radius: 0 0 12px 12px;
        margin-top: 30px;
    }

    .hero-img-container img {
        margin-left: 0;
        margin-top: 0;
    }

    .section-heading {
        font-size: 36px;
        line-height: 48px;
        text-align: center;
    }

    /* Mobile nav adjustments */
    .center-nav {
        position: static;
        left: auto;
        transform: none;
        text-align: center;
        margin: 10px 0;
    }

    .navbar-nav {
        margin-bottom: 15px;
    }

    .card-top {
        height: 220px;
    }

    .deal-title {
        white-space: normal;
    }

    .restaurant {
        white-space: normal;
    }

    .deal-img-container {
        margin-right: 40px;
    }

    .deal-img-container img {
        margin-bottom: 0px;
    }

    .deal-dashers {
        margin-top: 50px;
    }

    .deals-dashers-content-container {
        min-height: 360px;
        padding: 30px;
        max-height: none;
    }

    /* ---------------- */

    .deal-dashers {
        padding: 40px 30px;
    }

    .deals-dashers-content-container {
        min-height: 360px;
        padding: 30px;
        max-height: none;
    }

    .deal-heading {
        font-size: 32px;
        text-align: center;
        margin-bottom: 15px;
    }

    .deal-tag {
        font-size: 24px;
        padding: 8px 30px;
        text-align: center;
        margin-bottom: 15px;
    }

    .deal-description {
        font-size: 18px;
        text-align: center;
        margin-bottom: 25px;
        max-width: 350px;
    }

    .stores-logo-container {
        justify-content: center;
    }

    .deal-img-container {
        margin-bottom: 0px;
    }

    .deal-img-container img {
        margin-bottom: 0;
        max-height: 190px;
    }

    .cta-left {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .watch-and-follow {
        align-self: center;
    }

    .how-it-works-wrapper {
        flex-direction: column !important;
        align-items: center;
    }

    .how-it-works-wrapper .tab {
        min-width: auto;
        width: 100%;
    }

    .arrow-curve-img,
    .arrow-img {
        display: none;
    }

    .col-right {
        align-items: center;
        text-align: center;
    }

    .col-right p {
        max-width: 100%;
    }

    /* Res => How it Works Section CSS Starts */
    .how-it-works-wrapper {
        flex-direction: column !important;
        align-items: center;
    }

    .how-it-works-wrapper .tab {
        min-width: auto;
        width: 100%;
    }

    .arrow-curve-img,
    .arrow-img {
        display: none;
    }

    .col-right {
        align-items: center;
        text-align: center;
    }

    .col-right p {
        max-width: 100%;
    }
    /* Res => How it Works Section CSS Ends */

    .stats-number {
        font-size: 36px;
    }

    .stats-label {
        font-size: 20px;
    }

    .stats-divider {
        height: 80px;
        margin: 0 1rem;
    }

    .footer-top .cols-container {
        padding: 44px 30px 100px;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3,
    .footer-col-4 {
        margin-bottom: 30px;
    }

    .footer-logo {
        width: 180px;
    }

    .store-logo-container .store-btn {
        width: 150px;
    }

    .bottom-links {
        gap: 30px;
    }

    .copyright-text,
    .bottom-links a {
        font-size: 14px;
    }

    .deal-listing-hero {
        max-height: none;
        padding: 40px 60px;
        background-position: center top;
        background-size: cover;
    }
    .deal-listing-left {
        max-width: 100%;
        width: 100%;
        gap: 20px;
        text-align: center;
        justify-content: center;
        align-items: center !important;
    }

    #p-id-3 .deal-off-text,
    #p-id-3 .brand-name {
        font-size: 22px;
    }
    #p-id-3 .deal-price-old {
        font-size: 17px;
    }
    #p-id-3 .deal-price-new {
        font-size: 20px;
    }
    #p-id-3 .brand-location-text {
        font-size: 15px;
    }
    #p-id-3 .deal-brand__logo img {
        width: 90px;
        height: 90px;
    }
    #p-id-3 .claim-deal {
        font-size: 16px;
    }
    #p-id-3 .rating-text {
        font-size: 13px;
    }
    #p-id-3 .deal-info,
    #p-id-3 .deal-brand-info {
        padding: 1rem !important;
    }
    #p-id-3 .deal-thumbnails {
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    #p-id-3 .deal-thumbnails .last-thumbnail {
        margin-bottom: 0;
    }
    #p-id-3 .thumbnail-img {
        margin-bottom: 0 !important;
    }

    .deal-gallery-description-container {
        padding: 20px;
    }

    #p-id-3 .nav-link {
        text-align: center;
        padding: 5px;
    }

    #description-section,
    #redeem-section,
    #experience-section,
    #p-id-3 .section-navigation {
        padding: 20px;
    }

    #description-section,
    #redeem-section,
    #experience-section {
        padding: 20px 50px;
    }

    #p-id-3 .section-nav-link {
        font-size: 18px !important;
    }

    .deal-gallery-description-container {
        padding: 20px;
    }

    .experience-section-container {
        padding: 0 20px;
    }

    .related-deals-section-heading {
        font-size: 30px;
    }

    .profile-info-container {
        padding: 0px;
        margin-top: -90px;
    }

    .profile-logo-wrapper {
        width: 180px;
        height: 180px;
    }

    .profile-logo-img {
        width: 130px;
    }

    .profile-heading {
        font-size: 36px;
    }

    .profile-description-heading {
        font-size: 22px;
    }

    .profile-description-text {
        font-size: 20px;
    }

    #p-id-4 .contact-header,
    #p-id-4 .location-hours-header {
        font-size: 22px;
    }

    #p-id-4 .contact-info,
    #p-id-4 .location-info,
    #p-id-4 .days-column,
    #p-id-4 .hours-column {
        font-size: 20px;
    }

    #p-id-4 .days-column,
    #p-id-4 .hours-column {
        line-height: 36px;
    }
    #p-id-4 .location__text p {
        align-self: center;
    }
    #p-id-4 .day-and-time-wrapper {
        display: flex;
        flex-direction: row !important;
    }

    #p-id-4 .days-column-wrapper,
    #p-id-4 .hours-column-wrapper {
        width: 50%;
    }

    .deal-profile-overall-container {
        flex-direction: column;
    }

    .deal-profile-rating-card {
        max-width: 100%;
    }

    .deal-profile-reviews-content {
        padding: 0;
    }

    #p-id-4 .listing-cards-container {
        padding: 0 30px !important;
    }

    #p-id-4 .business-deals-container {
        margin-top: 50px;
    }

    #p-id-4 .business-heading {
        padding: 0 30px;
    }

    #p-id-5 .section-title {
        font-size: 2.5rem;
    }
    #p-id-5 .subsection-title {
        font-size: 1.6rem;
    }
    #p-id-5 .content-text,
    #p-id-5 .content-text li {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    #p-id-5 .section-title,
    #p-id-5 .subsection-title {
        margin-left: 0px;
        text-align: center;
    }

    .signup-form-title {
        font-size: 30px;
    }

    .signup-form-subtitle {
        font-size: 18px;
    }

    .signup-form-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar-brand img {
        height: 80px;
    }

    .hero-section {
        padding: 20px 0;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .search-form .row {
        flex-direction: column;
    }

    .location-input {
        border-radius: 120px;
        margin-bottom: 10px;
    }

    .deal-type-select {
        border-radius: 120px;
        border-left: 1px solid #ced4da !important;
    }

    .search-btn {
        max-width: 100%;
    }

    .section-heading {
        font-size: 30px;
        line-height: 40px;
    }

    .nav-link {
        padding: 8px 20px !important;
    }

    .card-top {
        height: 200px;
    }

    .deal-dashers {
        padding: 30px 20px;
    }

    .deals-dashers-content-container {
        min-height: auto;
        padding: 25px 20px;
    }

    .deal-heading {
        font-size: 36px;
        text-align: center;
        margin-bottom: 15px;
    }

    .deal-tag {
        font-size: 24px;
        padding: 8px 30px;
        text-align: center;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .deal-description {
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    .stores-logo-container {
        justify-content: center;
        gap: 5px;
    }

    .stores-logo-container img {
        width: 130px;
    }

    .deal-img-container {
        margin-bottom: 00px;
    }

    .deal-img-container img {
        margin-bottom: 0;
        max-height: 150px;
    }

    .stats-number {
        font-size: 28px;
    }

    .stats-label {
        font-size: 18px;
    }

    .stats-divider {
        display: none;
    }

    .stats-item {
        margin-bottom: 24px;
    }

    .footer-top .cols-container {
        padding: 44px 15px 60px;
    }

    .footer-bottom {
        text-align: center;
        padding: 20px 15px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }

    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 30px;
    }

    .footer-form-btn {
        padding: 15px 20px;
        font-size: 14px;
    }

    .footer-from-input {
        padding: 15px 20px;
    }

    .deal-listing-hero {
        padding: 30px 20px;
    }
    .deals-listing-heading {
        font-size: clamp(24px, 6vw, 36px);
    }
    .list-deal-from .input-wrapper {
        padding: 0 15px;
    }
    .list-deal-from .input-wrapper input {
        padding: 14px 6px;
    }

    .breadcrumb-item a {
        font-size: 20px;
    }
    #p-id-3 .deal-off-text,
    #p-id-3 .brand-name {
        font-size: 20px;
    }
    #p-id-3 .deal-price-old {
        font-size: 16px;
    }
    #p-id-3 .deal-price-new {
        font-size: 18px;
    }
    #p-id-3 .brand-location-text {
        font-size: 14px;
    }
    #p-id-3 .claim-deal {
        font-size: 15px;
    }
    #p-id-3 .deal-brand__logo img {
        width: 80px;
        height: 80px;
    }
    #p-id-3 .rating-text {
        font-size: 12px;
    }
    #p-id-3 .stars-container i {
        font-size: 16px !important;
    }
    #p-id-3 .deal-info,
    #p-id-3 .deal-brand-info {
        padding: 0.875rem !important;
    }
    #p-id-3 .flash-deal-label {
        padding: 10px 12px;
        font-size: 14px;
    }
    #p-id-3 .deal-price-off {
        font-size: 12px;
        padding: 2px 8px;
    }

    #p-id-3 .review-text,
    .dg-section-text {
        font-size: 18px;
        line-height: 150%;
        font-weight: 400;
    }

    .redeem-container {
        padding: 0 10px;
    }

    .redeem-container {
        font-size: 1rem;
    }

    .title-underline {
        width: 8rem;
        height: 6px;
        margin-bottom: 30px;
    }

    .review-section-title,
    .review-date {
        font-size: 1rem;
    }

    .title-underline {
        width: 10rem;
        height: 6px;
    }

    .rating-number {
        font-size: 1.75rem;
    }

    .reviewer-info {
        min-width: unset;
        margin-left: 8px;
    }

    .review-text {
        font-size: 1.25rem;
        line-height: 1.8;
    }

    .reviewer-name {
        font-size: 1.1rem;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }

    .star-rating {
        display: flex;
        gap: 0px;
        margin-bottom: 15px;
    }

    .review-meta {
        gap: 15px;
        justify-content: space-between;
    }

    .profile-hero-bg {
        min-height: 400px;
    }

    .profile-info-container {
        padding: 0 30px;
        margin-top: -60px;
        gap: 15px;
    }

    .profile-logo-wrapper {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .profile-logo-img {
        width: 120px;
    }

    .profile-heading {
        font-size: 32px;
        text-align: center;
    }

    .profile-description-heading {
        font-size: 20px;
        text-align: center;
    }

    .profile-description-text {
        font-size: 18px;
        text-align: center;
    }

    .profile-contact-container {
        padding: 40px 0px;
    }

    #p-id-4 .contact-header,
    #p-id-4 .location-hours-header {
        font-size: 20px;
        text-align: center;
    }

    #p-id-4 .contact-info,
    #p-id-4 .location-info {
        font-size: 18px;
        text-align: center;
    }

    #p-id-4 .days-column,
    #p-id-4 .hours-column {
        font-size: 18px;
        line-height: 32px;
        text-align: center;
    }

    #p-id-4 .icon {
        width: 28px;
        height: 28px;
        margin: 0 auto 10px;
        display: block;
    }

    #p-id-4 .d-flex.align-items-center,
    #p-id-4 .d-flex.align-items-start {
        flex-direction: column;
        text-align: center;
    }

    #p-id-4 .days-and-hour-icon-desktop {
        display: none;
    }
    #p-id-4 .days-and-hour-icon-mob-wrapper,
    #p-id-4 .days-and-hour-icon-mob {
        display: block;
    }

    #p-id-4 .hours-column-wrapper {
        margin-top: 0 !important;
    }

    .deal-profile-heading {
        font-size: 1.5rem;
    }

    .deal-profile-overall-heading {
        font-size: 1.5rem;
    }

    .deal-profile-review-text {
        font-size: 1.25rem;
        line-height: 1.8;
    }

    .deal-profile-reviewer-name {
        font-size: 1.1rem;
    }

    .deal-profile-reviewer-avatar {
        width: 50px;
        height: 50px;
    }

    .deal-profile-reviewer-info {
        min-width: unset;
        margin-left: 8px;
    }

    .deal-profile-review-meta {
        gap: 15px;
        margin-bottom: 40px;
    }

    .deal-profile-star-rating {
        gap: 3px;
    }

    .deal-profile-load-more-btn {
        font-size: 16px;
        width: 200px;
    }

    #p-id-5 .section-title {
        font-size: 2rem;
    }
    #p-id-5 .subsection-title {
        font-size: 1.4rem;
    }
    #p-id-5 .content-text,
    #p-id-5 .content-text li {
        font-size: 1rem;
        line-height: 1.5;
    }
    #p-id-5 .header-underline {
        width: 180px;
        border-width: 6px;
    }

    .dv-content-row {
        flex-direction: column;
    }

    .dv-voucher {
        padding: 0;
    }

    .dv-valid-card {
        margin-top: 10px;
    }

    .dv-qr-section {
        margin-right: 0;
        margin-bottom: 20px;
        align-items: center;
    }

    .dv-customer-grid {
        grid-template-columns: 1fr;
    }

    .dv-action-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .btn-login {
        padding: 12px 20px !important;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .deal-dashers {
        padding: 20px 15px;
    }

    .deal-heading {
        font-size: 28px;
    }

    .deal-tag {
        font-size: 20px;
        padding: 6px 20px;
    }

    .deal-description {
        font-size: 14px;
    }

    .stores-logo-container {
        flex-direction: column;
    }

    .stores-logo-container img {
        height: 45px;
        border: none;
    }

    .store-logo-container {
        flex-direction: column;
    }

    .store-logo-container .store-btn {
        width: 100%;
        max-width: 175px;
    }

    .footer-form-container {
        border-radius: 60px;
    }

    .footer-form-btn {
        border-radius: 60px;
    }

    .breadcrumb-item a {
        font-size: 18px;
    }
    #p-id-3 .deal-off-text,
    #p-id-3 .brand-name {
        font-size: 18px;
    }
    #p-id-3 .deal-price-old {
        font-size: 15px;
    }
    #p-id-3 .deal-price-new {
        font-size: 17px;
    }
    #p-id-3 .brand-location-text {
        font-size: 13px;
    }
    #p-id-3 .claim-deal {
        font-size: 14px;
        padding: 10px 15px;
    }
    #p-id-3 .deal-brand__logo img {
        width: 70px;
        height: 70px;
    }
    #p-id-3 .rating-text {
        font-size: 11px;
    }
    #p-id-3 .stars-container i {
        font-size: 14px !important;
    }
    #p-id-3 .deal-info,
    #p-id-3 .deal-brand-info {
        padding: 0.75rem !important;
    }
    #p-id-3 .flash-deal-label {
        padding: 8px 10px;
        font-size: 13px;
    }
    #p-id-3 .deal-price-off {
        font-size: 11px;
        padding: 1px 6px;
    }
    #p-id-3 .thumbnail-icons-wrapper {
        top: 15px;
        right: 15px;
    }
    #p-id-3 .thumbnail-icon-container {
        width: 35px;
        height: 35px;
    }
    .thumbnail-icon-container i {
        font-size: 14px !important;
    }
    .active-thumbnail-img {
        border-radius: 20px;
    }
    .deal-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        max-width: 100%;
    }
    #p-id-3 .timer-value {
        padding: 1px 4px;
        font-size: 12px;
    }
    .gallery-main-image img {
        max-height: 50vh;
    }
    .gallery-thumb {
        width: 60px;
        height: 60px;
    }

    #p-id-3 .section-navigation {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #p-id-3 .section-navigation ul {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;

        margin-bottom: 20px;
    }

    .section-navigation a {
        padding-bottom: 4px;
    }

    #description-section,
    #redeem-section,
    #experience-section {
        padding: 20px 30px;
    }

    #p-id-3 .gallery-nav {
        border: solid #f57c17;
    }
    #p-id-3 .gallery-nav > i {
        color: #f57c17;
    }

    #p-id-3 .counter-box {
        width: 45px;
        height: 45px;
    }

    .profile-hero-bg {
        min-height: 350px;
    }

    .profile-info-container {
        padding: 0 20px;
        margin-top: -50px;
    }

    .profile-logo-wrapper {
        width: 140px;
        height: 140px;
    }

    .profile-logo-img {
        width: 100px;
    }

    .profile-heading {
        font-size: 28px;
    }

    .profile-description-heading {
        font-size: 18px;
    }

    .profile-description-text {
        font-size: 16px;
    }

    .profile-contact-container {
        padding: 30px 0px;
    }

    #p-id-4 .contact-header,
    #p-id-4 .location-hours-header {
        font-size: 18px;
    }

    #p-id-4 .contact-info,
    #p-id-4 .location-info,
    #p-id-4 .days-column,
    #p-id-4 .hours-column {
        font-size: 16px;
    }

    #p-id-4 .days-column,
    #p-id-4 .hours-column {
        line-height: 28px;
    }

    #p-id-4 .days-and-hour-icon-desktop {
        display: none;
    }

    .deal-profile-reviews-section {
        padding: 20px;
    }

    .deal-profile-review-text {
        font-size: 1.1rem;
    }

    .deal-profile-review-meta {
        flex-direction: column;
        gap: 15px;
    }

    .deal-profile-review-date {
        margin-left: 95px; /* Avatar width + margin */
    }

    #p-id-5 .section-title {
        font-size: 1.8rem;
    }
    #p-id-5 .subsection-title {
        font-size: 1.2rem;
    }
    #p-id-5 .content-text,
    #p-id-5 .content-text li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    #p-id-5 .header-underline {
        width: 150px;
        border-width: 5px;
    }

    .dv-code-label,
    .dv-code-value {
        text-align: center;
    }

    .dv-voucher-code-container {
        flex-direction: column;
    }

    /* Login CSS Resonponsive Starts*/
    .dd-login-container {
        padding: 15px;
    }

    .dd-login-card {
        padding: 24px;
    }
    /* Login CSS Resonponsive Ends*/

    .cta-img {
        width: 80%;
    }
}

@media (max-width: 400px) {
    #p-id-3 .deal-off-text,
    #p-id-3 .brand-name {
        font-size: 16px;
    }
    #p-id-3 .deal-price-old {
        font-size: 14px;
    }
    #p-id-3 .deal-price-new {
        font-size: 16px;
    }
    #p-id-3 .brand-location-text {
        font-size: 12px;
    }
    #p-id-3 .claim-deal {
        font-size: 13px;
        padding: 8px 12px;
    }
    #p-id-3 .deal-brand__logo img {
        width: 60px;
        height: 60px;
    }
    #p-id-3 .flash-deal-label {
        font-size: 12px;
        padding: 6px 8px;
    }
    #p-id-3 .deal-info,
    #p-id-3 .deal-brand-info {
        padding: 0.625rem !important;
    }

    .dd-form-header-logo {
        width: 200px;
    }
    .dd-remember-forgot {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        font-size: 14px;
    }

    .signup-register-btn {
        font-size: 16px;
        font-weight: 700;
        margin: 40px auto;
    }
}

@media (max-width: 376px) {
    #p-id-4 .days-column,
    #p-id-4 .hours-column {
        font-size: 13px;
    }
}

/* Min Width */
@media (min-width: 992px) {
    .cta-section {
        padding: 30px 70px;
    }

    .cta-heading {
        font-size: 48px;
    }

    .cta-description {
        font-size: 24px;
    }

    .cta-btn {
        font-size: 20px;
        padding: 24px 30px;
    }

    .watch-and-follow img {
        width: 187px;
        margin-right: -25px;
    }

    .cta-img {
        max-width: unset;
        width: 400px;
    }

    #p-id-3 .col-lg-2.modify-col-lg-2 {
        width: 11.8% !important;
    }

    .deal-listing-content-container {
        flex-direction: row;
        gap: 40px;
        padding: 30px;
        padding-top: 0;
    }

    .listing-filter-container {
        max-width: 300px;
        min-width: 280px;
    }
}
