* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f6f8fb;
}

.top-bar {
    background-color: #f1f1f1;
    color: #19798d;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.banner-section {
    width: 100%;
    margin: 20px 0;
    padding: 0 20px;
    /* Small padding on edges for full width */
}

.banner-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

/* Left Carousel Layout */
.carousel-left {
    flex: 0 0 calc(70% - 10px);
    /* 70% width accounting for gap */
    max-width: calc(70% - 10px);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Right Carousel Layout */
.carousel-right {
    flex: 0 0 calc(30% - 10px);
    /* 30% width accounting for gap */
    max-width: calc(30% - 10px);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.carousel-track-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    line-height: 1;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Right Banner Dots */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* Top Brands Slider */
.top-brands-section {
    background-color: #f6f8fb;
    padding: 35px 0 55px;
    margin-top: 20px;
}

.top-brands-header {
    text-align: center;
    margin-bottom: 30px;
}

.top-brands-header h2 {
    color: #19798d;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

/* Gradient fades for the edges of the marquee */
.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f6f8fb 0%, transparent 100%);
}

.brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f6f8fb 0%, transparent 100%);
}

.brands-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 45s linear infinite;
}

.brands-marquee-track:hover {
    animation-play-state: paused;
}

.brand-card {
    background: #fff;
    border-radius: 14px;
    width: 280px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(25, 121, 141, 0.14);
    border-color: rgba(25, 121, 141, 0.2);
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
    filter: grayscale(20%);
}

.brand-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(25, 121, 141, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(25, 121, 141, 0);
    }
}

/* Amazon Deals Section */
.deals-section {
    width: 100%;
}

.deals-header {
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
}

.deals-header h2 {
    color: #19798d;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deals-bg {
    background-color: #f6f8fb;
    padding: 40px 0;
}

.deals-carousel-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.deals-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    /* Space for box-shadow */
}

.deals-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.deal-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 0 0 calc(25% - 15px);
    /* 4 cards visible */
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    scroll-snap-align: start;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Animated gradient top accent bar */
.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9 0%, #6366f1 50%, #ec4899 100%);
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.deal-card:hover::before {
    transform: scaleX(1);
}

.deal-card:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow: 0 26px 52px rgba(14, 165, 233, 0.18);
}

.deal-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

/* Shine sweep on hover */
.deal-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.7s ease;
}

.deal-card:hover .deal-img-wrapper::after {
    left: 125%;
}

.deal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.deal-card:hover .deal-img-wrapper img {
    transform: scale(1.08);
}

.deal-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.store-tag {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.deal-content h3 {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-weight: 700;
}

.deal-desc {
    font-size: 12px;
    color: #888;
    margin-bottom: 18px;
    line-height: 1.5;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 8px;
}

.deal-discount {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.discount-amount {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
    font-weight: 800;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(134, 239, 172, 0.6);
    white-space: nowrap;
}

.discount-type {
    color: #bbb;
    font-size: 10px;
    font-weight: 500;
    padding-left: 2px;
}

/* Gradient button with ripple */
.btn-grab {
    background: linear-gradient(135deg, #19798d 0%, #0ea5e9 100%);
    color: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-grab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 1;
}

.btn-grab:hover::before {
    width: 200px;
    height: 200px;
    opacity: 0;
}

.btn-grab:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.deals-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #444;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.deals-nav:hover {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    transform: translateY(-50%) scale(1.12);
}

.prev-deal {
    left: -10px;
}

.next-deal {
    right: -10px;
}

/* Full Width Promotional Banner */
.promo-banner-section {
    width: 100%;
    background-color: #f6f8fb;
    padding: 10px 0 40px;
    /* Extra padding at bottom, seamlessly continuing from deals section */
}

.promo-banner-container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.promo-banner-img {
    width: 100%;
    max-height: 287px;
    /* Constrain height */
    object-fit: cover;
    object-position: center;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-banner-container a {
    display: block;
    overflow: hidden;
}

.promo-banner-container a:hover .promo-banner-img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Deals of the Day Section */
.dod-section {
    width: 100%;
}

.dod-header {
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
}

.dod-header h2 {
    color: #19798d;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dod-bg {
    background-color: #f6f8fb;
    padding: 40px 0;
}

.dod-carousel-container {
    width: 100%;
    margin: 0;
    position: relative;
    padding: 0 20px;
    /* Small padding at edges for full width */
}

.dod-track-wrapper {
    overflow-x: auto;
    width: 100%;
    padding: 10px 0 25px 0;
    /* Extra bottom padding for scrollbar */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar for cleaner look */
.dod-track-wrapper::-webkit-scrollbar {
    display: none;
}

.dod-track-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dod-track {
    display: flex;
    gap: 30px;
    /* Slightly bigger gap for big cards */
}

.dod-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dod-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 24px 52px rgba(25, 121, 141, 0.2);
}

.dod-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

/* Teal gradient overlay slides in from bottom on hover */
.dod-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 121, 141, 0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dod-card:hover .dod-img-wrapper::after {
    opacity: 1;
}

.dod-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dod-card:hover .dod-img-wrapper img {
    transform: scale(1.08);
}

.dod-footer {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-top: 2px solid #f0f9fb;
}

.dod-brand-logo {
    max-width: 160px;
    max-height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dod-card:hover .dod-brand-logo {
    transform: scale(1.06);
}

.btn-grab-dod {
    background: linear-gradient(135deg, #19798d 0%, #0ea5e9 100%);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-grab-dod:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 26px rgba(25, 121, 141, 0.48);
}

/* Top Coupons Section */
.top-coupons-section {
    width: 100%;
}

.top-coupons-header {
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
}

.top-coupons-header h2 {
    color: #19798d;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-coupons-bg {
    background-color: #f6f8fb;
    padding: 40px 0;
}

.coupons-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
}

.coupons-track-wrapper {
    overflow-x: auto;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

/* Hide scrollbar */
.coupons-track-wrapper::-webkit-scrollbar {
    display: none;
}

.coupons-track-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.coupons-track {
    display: flex;
    gap: 20px;
}

/* Ticket-style coupon card */
.coupon-card {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eef1f6;
    flex: 0 0 calc(20% - 16px);
    display: flex;
    flex-direction: column;
    padding: 20px 20px 20px 20px;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.coupon-card::before {
    display: none;
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.coupon-tags {
    display: none;
}

.tag-used {
    background: linear-gradient(135deg, #19798d, #0ea5e9);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 12px;
    letter-spacing: 0.3px;
}

.tag-trending {
    background: linear-gradient(135deg, #e54c53, #ff6b6b);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 12px;
    animation: pulseBadge 2s ease infinite;
    letter-spacing: 0.3px;
}

/* Logo area */
.coupon-logo-wrapper {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.coupon-logo-wrapper img {
    width: 100%;
    max-width: 220px;
    height: 90px;
    padding: 10px 16px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    object-fit: contain;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.coupon-card:hover .coupon-logo-wrapper img {
    transform: scale(1.08);
}

.coupon-offer {
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a24;
    margin-bottom: 15px;
    line-height: 1.4;
}

.coupon-code-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e6f4f5;
    border: 1.5px dashed #9bcaca;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.coupon-code {
    font-size: 13px;
    font-weight: 800;
    color: #19798d;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.icon-copy {
    width: 15px;
    height: 15px;
    opacity: 0.45;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.icon-copy:hover {
    opacity: 1;
    transform: scale(1.2);
}

.btn-grab-coupon {
    background: linear-gradient(135deg, #19798d 0%, #0ea5e9 100%);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.btn-grab-coupon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 26px rgba(25, 121, 141, 0.48);
}

.coupons-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 30px;
}

.coupons-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active dot becomes a pill */
.coupons-dots .dot.active {
    background: linear-gradient(135deg, #19798d, #0ea5e9);
    width: 22px;
    height: 7px;
    border-radius: 4px;
}

/* Latest Article Section */
.latest-article-section {
    width: 100%;
}

.latest-article-header {
    text-align: center;
    /* background-color: #fff; */
    padding: 20px 0;
}

.latest-article-header h2 {
    color: #19798d;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.latest-article-bg {
    background-color: #f6f8fb;
    padding: 40px 0 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
}

.article-card {
    background: linear-gradient(165deg, #0d5a6b 0%, #19798d 35%, #7eb2bc 70%, #ffffff 100%);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle radial highlight in top-right corner */
.article-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.article-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 50px rgba(25, 121, 141, 0.28);
}

.article-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.6s ease;
}

.article-card:hover img {
    transform: scale(1.06);
}

/* 'Read More' overlay appears on image hover */
.article-img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
}

.article-img-wrapper::after {
    content: 'Read More →';
    position: absolute;
    inset: 0;
    background: rgba(13, 90, 107, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 8px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.article-card:hover .article-img-wrapper::after {
    opacity: 1;
}

.article-card h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 auto 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Glassmorphism-style button */
.btn-learn-more {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 7px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 14px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    letter-spacing: 0.3px;
}

.btn-learn-more:hover {
    background: #fff;
    color: #19798d;
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* About Us Section */
.about-us-section {
    width: 100%;
}

.about-us-header {
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
}

.about-us-header h2 {
    color: #19798d;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-us-bg {
    background-color: #f6f8fb;
    padding: 40px 0 60px;
}

.about-us-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

.about-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-card h3 {
    color: #19798d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-card p {
    color: #777;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.about-card ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}

.about-card ul li {
    margin-bottom: 5px;
}

.about-card a {
    color: #19798d;
    font-weight: 600;
    text-decoration: none;
}

.about-card a:hover {
    text-decoration: underline;
}

/* Latest Article Slider Styles */
.articles-carousel-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.articles-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.articles-track {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease-in-out;
}

.articles-track .article-card {
    flex: 0 0 calc(25% - 18.75px);
}

@media (max-width: 992px) {
    .articles-track .article-card {
        flex: 0 0 calc(50% - 12.5px);
    }
}

@media (max-width: 576px) {
    .articles-track .article-card {
        flex: 0 0 100%;
    }
}

.article-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.article-nav:hover {
    background: #0071E3;
    color: #fff;
}

.article-prev {
    left: 0;
}

.article-next {
    right: 0;
}

.about-card strong {
    color: #555;
}

/* =============================================
   RESPONSIVE DESIGN - ALL BREAKPOINTS
   ============================================= */

/* --- Large Desktop (max 1400px) --- */
@media (max-width: 1400px) {
    .deals-carousel-container {
        max-width: 100%;
        padding: 0 50px;
    }

    .articles-grid {
        max-width: 100%;
        padding: 0 30px;
    }

    .coupons-container {
        max-width: 100%;
        padding: 0 30px;
    }
}

/* --- Laptop / Small Desktop (max 1200px) --- */
@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .deal-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .brand-card {
        width: 220px;
        height: 85px;
    }

    .dod-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .coupon-card {
        flex: 0 0 calc(25% - 15px);
    }
}

/* --- Tablet Landscape / Small Desktop (max 1024px) --- */
@media (max-width: 1024px) {
    .banner-section {
        padding: 0 15px;
        margin: 15px 0;
    }

    .banner-container {
        flex-direction: column;
        gap: 15px;
    }

    .carousel-right {
        display: none;
    }

    .carousel-left {
        flex: 0 0 100%;
        max-width: 100%;
        height: 280px;
    }

    .deals-carousel-container {
        padding: 0 45px;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 18px;
    }

    .about-us-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
        gap: 20px;
    }

    .coupons-container {
        padding: 0 20px;
    }

    .coupon-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* --- Tablet Portrait (max 992px) --- */
@media (max-width: 992px) {
    .top-bar {
        font-size: 12px;
        padding: 10px 15px;
        line-height: 1.4;
    }

    .top-brands-section {
        padding: 25px 0 40px;
    }

    .top-brands-header h2,
    .deals-header h2,
    .dod-header h2,
    .top-coupons-header h2,
    .latest-article-header h2,
    .about-us-header h2 {
        font-size: 18px;
    }

    .about-us-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }

    .coupon-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .deal-card {
        flex: 0 0 calc(50% - 10px);
    }

    .deals-carousel-container {
        padding: 0 40px;
    }

    .dod-card {
        flex: 0 0 calc(50% - 10px);
    }

    .dod-carousel-container {
        padding: 0 15px;
    }

    .brand-card {
        width: 180px;
        height: 70px;
    }
}

/* --- Mobile Landscape / Large Mobile (max 768px) --- */
@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
        padding: 8px 12px;
    }

    .banner-section {
        padding: 0 10px;
        margin: 10px 0;
    }

    .carousel-left {
        height: 220px;
        border-radius: 6px;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .prev-btn {
        left: 8px;
    }

    .next-btn {
        right: 8px;
    }

    /* Brands */
    .top-brands-section {
        padding: 20px 0 35px;
    }

    .top-brands-header {
        margin-bottom: 20px;
    }

    .top-brands-header h2 {
        font-size: 16px;
    }

    .brand-card {
        width: 160px;
        height: 60px;
    }

    .brands-marquee-wrapper::before,
    .brands-marquee-wrapper::after {
        width: 60px;
    }

    /* Deals section */
    .deals-bg {
        padding: 25px 0;
    }

    .deals-carousel-container {
        padding: 0 35px;
    }

    .deals-nav {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .prev-deal {
        left: -5px;
    }

    .next-deal {
        right: -5px;
    }

    .deal-card {
        flex: 0 0 100%;
    }

    .deal-content {
        padding: 14px;
    }

    .deal-content h3 {
        font-size: 15px;
    }

    .deal-desc {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .discount-amount {
        font-size: 12px;
    }

    .btn-grab {
        padding: 7px 12px;
        font-size: 11px;
    }

    /* Promo banner */
    .promo-banner-img {
        max-height: 180px;
    }

    /* DOD section */
    .dod-bg {
        padding: 25px 0;
    }

    .dod-carousel-container {
        padding: 0 10px;
    }

    .dod-card {
        flex: 0 0 100%;
    }

    .dod-footer {
        padding: 12px;
    }

    .dod-brand-logo {
        max-width: 140px;
        max-height: 40px;
    }

    .btn-grab-dod {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Top Coupons */
    .top-coupons-bg {
        padding: 25px 0;
    }

    .coupons-container {
        padding: 0 15px;
    }

    /* Hide the second row slider on mobile */
    .coupons-container>.coupons-track-wrapper:nth-child(3),
    .coupons-container>.coupons-dots:nth-child(4) {
        display: none !important;
    }

    .coupon-card {
        flex: 0 0 100%;
    }

    .coupon-logo-wrapper {
        height: 120px;
    }

    .coupon-logo-wrapper img {
        width: 100%;
        max-width: 280px;
        height: 100px;
        padding: 10px;
    }

    /* Articles */
    .latest-article-bg {
        padding: 25px 0 40px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 15px;
    }

    .article-card h3 {
        font-size: 14px;
    }

    /* About Us */
    .about-us-bg {
        padding: 25px 0 40px;
    }

    .about-us-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 15px;
    }

    .about-card h3 {
        font-size: 16px;
    }

    .about-card p,
    .about-card ul {
        font-size: 13px;
    }
}

/* --- Small Mobile (max 576px) --- */
@media (max-width: 576px) {
    .top-bar {
        font-size: 10px;
        padding: 8px 10px;
        letter-spacing: 0;
    }

    .banner-section {
        padding: 0 8px;
        margin: 8px 0;
    }

    .carousel-left {
        height: 190px;
        border-radius: 4px;
    }

    .nav-btn {
        width: 26px;
        height: 26px;
        font-size: 18px;
    }

    /* Brands */
    .top-brands-header h2,
    .deals-header h2,
    .dod-header h2,
    .top-coupons-header h2,
    .latest-article-header h2,
    .about-us-header h2 {
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    .brand-card {
        width: 140px;
        height: 55px;
        border-radius: 8px;
    }

    /* Deals */
    .deals-carousel-container {
        padding: 0 40px;
    }

    .deals-nav {
        width: 30px;
        height: 30px;
        font-size: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .prev-deal {
        left: 2px;
    }

    .next-deal {
        right: 2px;
    }

    .deals-track {
        gap: 12px;
    }

    .deal-card {
        flex: 0 0 100%;
    }

    .deal-content h3 {
        font-size: 14px;
    }

    /* Promo banner */
    .promo-banner-img {
        max-height: 140px;
    }

    /* DOD */
    .dod-card {
        flex: 0 0 100%;
    }

    .dod-track {
        gap: 12px;
    }

    .dod-footer {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .dod-brand-logo {
        max-width: 120px;
        max-height: 35px;
    }

    .btn-grab-dod {
        padding: 7px 12px;
        font-size: 11px;
    }

    /* Top Coupons */
    .coupon-card {
        flex: 0 0 100%;
    }

    .coupons-track {
        gap: 12px;
    }

    .coupons-container {
        padding: 0 10px;
    }

    .coupon-logo-wrapper {
        height: 110px;
        margin-bottom: 15px;
    }

    .coupon-logo-wrapper img {
        width: 100%;
        max-width: 250px;
        height: 90px;
        padding: 8px;
    }

    .coupon-offer {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .btn-grab-coupon {
        padding: 10px;
        font-size: 13px;
    }

    .coupon-tags {
        margin-bottom: 14px;
    }

    /* Articles */
    .articles-grid {
        padding: 0 10px;
        gap: 12px;
    }

    .article-card {
        padding: 10px;
        border-radius: 8px;
    }

    .article-card h3 {
        font-size: 13px;
    }

    .btn-learn-more {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* About */
    .about-us-container {
        padding: 0 10px;
        gap: 12px;
    }

    .about-card {
        padding: 18px;
        border-radius: 6px;
    }

    .about-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

/* --- Extra Small Mobile (max 420px) --- */
@media (max-width: 420px) {
    .top-bar {
        font-size: 9.5px;
        padding: 7px 8px;
    }

    .carousel-left {
        height: 165px;
    }

    .nav-btn {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .brand-card {
        width: 120px;
        height: 50px;
    }

    .deal-card {
        flex: 0 0 100%;
    }

    .deals-carousel-container {
        padding: 0 40px;
    }

    .dod-card {
        flex: 0 0 100%;
    }

    .coupon-card {
        flex: 0 0 100%;
    }

    .promo-banner-img {
        max-height: 110px;
    }

    .top-brands-header h2,
    .deals-header h2,
    .dod-header h2,
    .top-coupons-header h2,
    .latest-article-header h2,
    .about-us-header h2 {
        font-size: 14px;
    }
}/* ==========================================================================
   SLICK SLIDER OVERRIDES FOR UI STABILITY
   ========================================================================== */
.slick-slider {
    display: block !important;
}

/* Ensure track wrappers don't clip dots or shadows */
.mbs-track-wrapper, .ps-track-wrapper, .dod-track-wrapper, .deals-track-wrapper, .articles-track-wrapper, .coupons-track-wrapper, .carousel-track-wrapper {
    overflow: visible !important;
}

.slick-list {
    overflow: hidden !important;
    margin: 0 -10px;
}

.slick-slide {
    margin: 0 10px;
}







/* Hero/Banner carousels should have 0 margin */
#track-left .slick-slide, #track-right .slick-slide { margin: 0; }
#track-left.slick-slider .slick-list, #track-right.slick-slider .slick-list { margin: 0; }

/* Fix Slick dots positioning and style */
.slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 15px 0 0 0;
    list-style: none;
    bottom: -30px;
}
.slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}
.slick-dots li button, .slick-dots li .dot, .slick-dots li .ps-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0;
    display: block;
    transition: all 0.3s ease;
}
.slick-dots li.slick-active button, .slick-dots li.slick-active .dot, .slick-dots li.slick-active .ps-dot {
    background: #007bff;
    width: 25px;
    border-radius: 10px;
}

.ps-slide { display: grid !important; } .dod-card { display: flex !important; } .deal-card { display: flex !important; } .article-card { display: flex !important; } .coupon-card { display: flex !important; }
.slick-gap-wrapper { box-sizing: border-box; }
.mbs-wrapper { padding: 0 8px; }
.dod-wrapper { padding: 0 15px; }
.ps-wrapper { padding: 0 4px; }
.deals-wrapper { padding: 0 10px; }
.articles-wrapper { padding: 0 12px; }
.coupons-wrapper { padding: 0 10px; }

.mbs-card, .ps-slide, .dod-card, .article-card, .deal-card, .coupon-card { width: 100% !important; }


.mbs-track, .ps-track, .ps-featured-track, #dod-track, #articles-track, .deals-track, .coupons-track { width: 100% !important; min-width: 0 !important; }


.slick-slider { display: block !important; }


.mbs-track.slick-slider .slick-list { margin: 0 -8px; }
.dod-track.slick-slider .slick-list { margin: 0 -15px; }
.ps-track.slick-slider .slick-list, .ps-featured-track.slick-slider .slick-list { margin: 0 -4px; }
.deals-track.slick-slider .slick-list { margin: 0 -10px; }
.articles-track.slick-slider .slick-list { margin: 0 -12px; }
.coupons-track.slick-slider .slick-list { margin: 0 -10px; }

