.promo-bar {
    background: black;
    color: #fff;
    padding: 10px 15px;
    position: relative;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.promo-text {
    font-size: 14px;
    line-height: 1.4;
}

.promo-btn {
    background: #fff;
    color: #1e3a8a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.promo-btn:hover {
    background: #f1f5f9;
}

.promo-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    opacity: 0.8;
}

.promo-close:hover {
    opacity: 1;
}

@media (max-width: 576px) {
    .promo-text {
        font-size: 12px;
    }

    .promo-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}



/* ════════════════════════════════
   DESKTOP MEGA MENU — Enhanced
   ════════════════════════════════ */
.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -20px;
    width: 780px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 0, 160, 0.13), 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #ede0ff;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.menu-item:hover .mega-menu,
.menu-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ── HEADER ── */
.mega-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6600a0 0%, #9333ea 100%);
    gap: 12px;
}

.mega-menu__header span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.mega-menu__badge {
    background: rgba(255, 255, 255, 0.18);
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── SEARCH BAR inside mega menu ── */
.mega-menu__search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 20px 8px;
    background: #f6f0ff;
    border: 1.5px solid #e0cff5;
    border-radius: 10px;
    padding: 9px 14px;
    transition: border-color 0.2s;
}

.mega-menu__search:focus-within {
    border-color: #9333ea;
    background: #faf5ff;
}

.mega-menu__search i {
    font-size: 16px;
    a color: #6600a0;
    flex-shrink: 0;
}

.mega-menu__search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    color: #1a1a2e;
    width: 100%;
}

.mega-menu__search input::placeholder {
    color: #aaa;
}

/* ── GRID ── */
.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px 16px 16px;
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c9a8e0 transparent;
}

.mega-menu__grid::-webkit-scrollbar {
    width: 4px;
}

.mega-menu__grid::-webkit-scrollbar-thumb {
    background: #c9a8e0;
    border-radius: 4px;
}

/* ── EACH ITEM ── */
.mega-menu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
    border: 1.5px solid transparent;
}

.mega-menu__item:hover {
    background: #f5eeff;
    border-color: #e0cff5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 0, 160, 0.08);
}

.mega-menu__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: #f0e6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 1px 4px rgba(102, 0, 160, 0.08);
}

.mega-menu__item:hover .mega-menu__icon {
    background: #e0ccff;
    transform: scale(1.08);
}

.mega-menu__name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 2px;
    line-height: 1.3;
}

.mega-menu__sub {
    font-size: 11px;
    color: #999;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-menu__item:hover .mega-menu__name {
    color: #6600a0;
}

/* ── FOOTER ── */
.mega-menu__footer {
    border-top: 1px solid #f0e8ff;
    background: #faf5ff;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu__footer-left {
    font-size: 12px;
    color: #aaa;
}

.mega-menu__footer a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #6600a0;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    background: #f0e6ff;
    border: 1.5px solid #d9b8ff;
    transition: background 0.15s, border-color 0.15s;
}

.mega-menu__footer a:hover {
    background: #e0ccff;
    border-color: #b08cd0;
}

/* No results */
.mega-menu__no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 0;
    color: #bbb;
    font-size: 13px;
    display: none;
}

/* ════════════════════════════════
   MOBILE — hide desktop mega menu
   ════════════════════════════════ */
@media (max-width: 991px) {
    .mega-menu {
        display: none !important;
    }
}



/* ════════════════════════════════
   MOBILE STYLES — untouched
   ════════════════════════════════ */
.mobile-cat-overlay,
.mobile-cat-sheet {
    display: none;
}

@media (max-width: 991px) {
    .mobile-cat-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s;
        backdrop-filter: blur(2px);
    }

    .mobile-cat-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-cat-sheet {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 24px 24px 0 0;
        z-index: 10001;
        max-height: 85vh;
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        padding-bottom: env(safe-area-inset-bottom, 16px);
    }

    .mobile-cat-sheet.active {
        transform: translateY(0);
    }

    .mobile-cat-sheet__handle {
        width: 40px;
        height: 4px;
        background: #ddd;
        border-radius: 4px;
        margin: 12px auto 0;
        flex-shrink: 0;
    }

    .mobile-cat-sheet__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px 12px;
        flex-shrink: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-cat-sheet__title {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 2px;
    }

    .mobile-cat-sheet__count {
        font-size: 12px;
        color: #888;
    }

    .mobile-cat-sheet__close {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1.5px solid #e0e0e0;
        background: #f8f8f8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #444;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.15s;
    }

    .mobile-cat-sheet__close:hover {
        background: #f0e6ff;
        border-color: #c9a8e0;
        color: #6600a0;
    }

    .mobile-cat-sheet__search {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 12px 16px;
        background: #f6f0ff;
        border: 1.5px solid #e0cff5;
        border-radius: 12px;
        padding: 10px 14px;
        flex-shrink: 0;
    }

    .mobile-cat-sheet__search i {
        font-size: 18px;
        color: #6600a0;
        flex-shrink: 0;
    }

    .mobile-cat-sheet__search input {
        border: none;
        background: transparent;
        outline: none;
        font-size: 14px;
        color: #1a1a2e;
        width: 100%;
    }

    .mobile-cat-sheet__search input::placeholder {
        color: #aaa;
    }

    .mobile-cat-sheet__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 4px 16px 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mobile-cat-sheet__grid::-webkit-scrollbar {
        display: none;
    }

    .mobile-cat-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 8px;
        background: #f9f5ff;
        border: 1.5px solid #ede0ff;
        border-radius: 14px;
        text-decoration: none;
        transition: background 0.15s, transform 0.15s, border-color 0.15s;
        text-align: center;
    }

    .mobile-cat-card:hover,
    .mobile-cat-card:active {
        background: #ede0ff;
        border-color: #b08cd0;
        transform: scale(0.97);
    }

    .mobile-cat-card__icon {
        font-size: 26px;
        line-height: 1;
        width: 48px;
        height: 48px;
        background: #fff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(102, 0, 160, 0.10);
    }

    .mobile-cat-card__name {
        font-size: 11px;
        font-weight: 600;
        color: #3a0060;
        line-height: 1.3;
        word-break: break-word;
    }

    @media (max-width: 360px) {
        .mobile-cat-sheet__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}



* {
    box-sizing: border-box;
}

.trending-bar {
    background: #eadcf2;
    padding: 0;
    overflow: hidden;
}

.trending-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    height: 52px;
}

/* TOP DEALS TITLE */
.trending-title {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    flex-shrink: 0;
    height: 100%;
    padding-right: 16px;
    border-right: 1.5px solid #c9a8e0;
}

.trending-title i {
    font-size: 18px;
    color: #6600a0;
}

.trending-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 16px);
    height: 3px;
    background: #1da1f2;
    border-radius: 10px;
}

/* CIRCLE ARROW BUTTONS */
.scroll-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    border: 1.5px solid #b08cd0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6600a0;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.18s ease;
    box-shadow: 0 1px 4px rgba(102, 0, 160, 0.12);
    padding: 0;
    outline: none;
}

.scroll-btn:hover:not(:disabled) {
    background: #6600a0;
    border-color: #6600a0;
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 0, 160, 0.25);
}

.scroll-btn:active:not(:disabled) {
    transform: scale(0.93);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: default;
    box-shadow: none;
}

/* LINKS SCROLL */
.trending-links {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
    height: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.trending-links::-webkit-scrollbar {
    display: none;
}

/* EACH LINK */
.trending-links a {
    text-decoration: none;
    color: #5d189b;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    transition: color 0.18s;
}

.trending-links a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 3px;
    background: #1da1f2;
    border-radius: 10px 10px 0 0;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.trending-links a i {
    font-size: 15px;
    color: #6600a0;
    transition: color 0.18s;
}

.trending-links a:hover {
    color: #1da1f2;
}

.trending-links a:hover i {
    color: #1da1f2;
}

.trending-links a:hover::after {
    transform: scaleX(1);
}

.trending-links a.active {
    color: #1da1f2;
    font-weight: 600;
}

.trending-links a.active i {
    color: #1da1f2;
}

.trending-links a.active::after {
    transform: scaleX(1);
}

/* MOBILE */
@media (max-width: 576px) {
    .trending-title {
        font-size: 13px;
        padding-right: 12px;
    }

    .trending-links a {
        font-size: 12px;
        padding: 0 10px;
    }

    .scroll-btn {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 14px;
    }
}


    {
        {
        -- CSS --
    }
}

.brands-marquee-section {
    padding: 60px 0 20px;
}

.brands-heading {
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 10px;
}

.brands-sub {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin: 0 0 40px;
}

.brands-highlight {
    background: #e8e6fd;
    color: #534AB7;
    border-radius: 4px;
    padding: 2px 8px;
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.marquee-track {
    display: flex;
    gap: 10px;
    width: max-content;
}

.bcard {
    flex-shrink: 0;
    width: 150px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    background: #f4f4f8;
    text-decoration: none;
}

.bcard img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

@media (max-width: 768px) {
    .brands-heading {
        font-size: 28px;
    }

    .brands-sub {
        font-size: 14px;
    }

    .bcard {
        width: 110px;
        height: 70px;
    }

    .brands-marquee-section {
        padding: 36px 0 24px;
    }
}

@media (max-width: 480px) {
    .brands-heading {
        font-size: 22px;
    }

    .bcard {
        width: 90px;
        height: 58px;
    }
}



.banner-section.index-two .container-fluid h1 {
    font-size: clamp(1.8rem, 5vw, 5.5rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -3.5px;
    margin: 0 auto;
    max-width: 70rem;
    margin-top: 5rem;
    color: rgb(90 11 133);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}

.banner-section.index-two .container-fluid h1 .highlight-word {
    color: #c052ff;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.banner-section.index-two .container-fluid h1 .highlight-word::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, rgb(90 11 133), rgb(90 11 133));
    border-radius: 2px;
    animation: underlineGrow 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(192, 82, 255, 0.08);
    border: 1px solid rgba(192, 82, 255, 0.25);
    color: #c052ff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.05s;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #c052ff;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #888;
    margin-top: 1rem;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.6s;
}

.hero-divider {
    width: 0px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(192, 82, 255, 0.3), transparent);
    margin: 1.8rem auto 0;
    border-radius: 2px;
    animation: dividerExpand 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.9s;
}

/* Keyframes */
@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGrow {
    to {
        width: 100%;
    }
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

@keyframes dividerExpand {
    to {
        width: 200px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .banner-section.index-two .container-fluid h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        letter-spacing: 0;
        margin-top: 3rem;
    }

    .hero-divider {
        animation: none;
        display: none;
    }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 992px) {
    .banner-section.index-two .container-fluid h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .banner-section.index-two .container-fluid h1 {
        font-size: 5.5rem;
        line-height: 1.2;
    }
}



.store-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 4px;
}

.store-stars svg {
    width: 15px;
    height: 15px;
}

.rating-badge {
    font-size: 11px;
    font-weight: 700;
    color: #92400e;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 20px;
}



.reviewer-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--s1-bg-color, #ede9fe);
    color: var(--s1-color, #7c3aed);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Equal height cards via Swiper */
.customers-feedback-carousel .swiper-wrapper {
    align-items: stretch;
}

.customers-feedback-carousel .swiper-slide {
    height: auto;
}

.customers-feedback-carousel .single-item {
    height: 100%;
    min-height: 220px;
}


/* ── Badge ── */
.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3e8ff;
    border: 1px solid #d8b4fe;
    color: #7e22ce;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
}

.sec-badge .dot {
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

/* ── Category Grid ── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 3.5rem;
}

.cat-card {
    border-radius: 18px;
    padding: 1.4rem 1.2rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.cat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cc-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    border-radius: 18px 18px 0 0;
}

li.n17-color {
    font-size: 1rem !important;
    list-style: dics;
}

.cat-card:hover::after {
    transform: scaleX(1);
}

.cat-card:hover {
    transform: translateY(-6px);
    border-color: var(--cc-accent);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
}

.cc-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    background: var(--cc-bg);
    color: var(--cc-accent);
    transition: transform .25s;
}

.cat-card:hover .cc-icon {
    transform: scale(1.12) rotate(-4deg);
}

.cc-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .35rem;
    line-height: 1.3;
}

.cc-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .68;
    flex: 1;
}

.cc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cc-accent);
    margin-top: .85rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity .2s, transform .2s;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cat-card:hover .cc-link {
    opacity: 1;
    transform: translateX(0);
}

/* ── Two Column Info Cards ── */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-card {
    border-radius: 20px;
    padding: 1.7rem 1.6rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: box-shadow .25s, transform .25s;
}

.info-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.ic-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ic-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--ic-bg);
    color: var(--ic-color);
}

.ic-title {
    font-size: 1.50rem;
    font-weight: 800;
    line-height: 1.25;
}

.ic-body {
    font-size: 1.15rem;
    line-height: 1.75;
    opacity: .75;
    margin-bottom: .9rem;
}

.ic-note {
    font-size: 1rem;
    line-height: 1.65;
    opacity: .68;
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    font-style: italic;
}

/* ── Pills ── */
.pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid;
    transition: transform .18s, box-shadow .18s;
    cursor: default;
}

.pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
}

.pill i {
    font-size: 0.82rem;
}

.pill-purple {
    background: #faf5ff;
    border-color: #e9d5ff;
    color: #6b21a8;
}

.pill-purple i {
    color: #a855f7;
}

.pill-blue {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

.pill-blue i {
    color: #3b82f6;
}

/* ── Bottom Row ── */
.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Newsletter */
.newsletter-card {
    border-radius: 20px;
    padding: 1.7rem 1.6rem;
    background: #f0fdf9;
    border: 1.5px solid #a7f3d0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-top {
    display: flex;
    align-items: center;
    gap: 11px;
}

.nl-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    flex-shrink: 0;
    background: #d1fae5;
    color: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.nl-title {
    font-size: 1.50rem;
    font-weight: 800;
    color: #064e3b;
}

.nl-body {
    font-size: 1rem;
    color: #065f46;
    line-height: 1.72;
    opacity: .85;
}

.nl-strong {
    font-size: 1rem;
    font-weight: 700;
    color: #065f46;
}

.newsletter-input {
    width: 100%;
    padding: 10px 15px;
    border: 1.5px solid #6ee7b7;
    border-radius: 11px;
    font-size: 0.88rem;
    outline: none;
    background: #fff;
    transition: border-color .22s, box-shadow .22s;
}

.newsletter-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #059669;
    color: #fff;
    padding: 10px 20px;
    border-radius: 11px;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.newsletter-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* CTA */
.cta-card {
    border-radius: 20px;
    padding: 1.7rem 1.6rem;
    background: #fdf4ff;
    border: 1.5px solid #e9d5ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 11px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(168, 85, 247, .07);
    top: -60px;
    right: -60px;
}

.cta-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(168, 85, 247, .05);
    bottom: -35px;
    left: -35px;
}

.cta-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #f3e8ff;
    color: #9333ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: 1.50rem;
    font-weight: 800;
    color: #581c87;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1rem;
    color: #6b21a8;
    line-height: 1.72;
    opacity: .82;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #9333ea;
    color: #fff !important;
    padding: 11px 26px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .22s, transform .22s, box-shadow .22s;
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    background: #7e22ce;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(147, 51, 234, .35);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .two-col-grid,
    .bottom-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}




.nl-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: stretch;
}

.nl-form .newsletter-input {
    flex: 1;
    min-width: 0;
}

.nl-form .newsletter-btn {
    white-space: nowrap;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.nl-form .newsletter-btn i {
    font-size: 18px;
}

/* mobile responsive */
@media (max-width: 576px) {
    .nl-form {
        flex-direction: column;
    }

    .nl-form .newsletter-btn {
        width: 100%;
    }
}



.faq-heading {
    font-size: 55px;
    font-weight: 400;
    color: rgb(48 0 75);
}

.faq-item {
    background: rgb(245 226 255) !important;
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.faq-btn {
    background: rgb(245 226 255) !important;
    font-weight: 400;
    box-shadow: none !important;
    font-size: 1.75rem;
}

.faq-btn:not(.collapsed) {
    color: black;
}

.faq-body a {
    color: #7F77DD;
    text-decoration: none;
}

@media (max-width: 640px) {
    .faq-section-wrapper .row {
        flex-direction: column;
    }

    .faq-heading {
        font-size: 28px;
        margin-bottom: 24px;
    }
}



.store-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 4px;
}

.store-stars svg {
    width: 15px;
    height: 15px;
}

.rating-badge {
    font-size: 11px;
    font-weight: 700;
    color: #92400e;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 20px;
}



.partner-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partner-marquee-wrapper::before,
.partner-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partner-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.partner-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.partner-marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.partner-marquee-track:hover {
    animation-play-state: paused;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.08);
}

.partner-item img {
    height: 40px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .partner-item img {
        height: 28px;
        max-width: 90px;
    }

    .partner-marquee-track {
        gap: 30px;
        animation-duration: 15s;
    }

    .partner-marquee-wrapper::before,
    .partner-marquee-wrapper::after {
        width: 50px;
    }
}



/* ── FAB BUTTON ── */
.calc-fab {
    position: fixed;
    bottom: 28px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6600a0, #9333ea);
    color: #fff;
    padding: 12px 20px 12px 16px;
    border-radius: 50px 0 0 50px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: -4px 4px 20px rgba(102, 0, 160, 0.35);
    transition: all 0.25s ease;
    border: none;
    outline: none;
}

.calc-fab:hover {
    padding-right: 26px;
    box-shadow: -6px 6px 28px rgba(102, 0, 160, 0.45);
}

.calc-fab i {
    font-size: 24px;
    flex-shrink: 0;
}

.calc-fab__text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* ── PANEL ── */
.calc-panel {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(102, 0, 160, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1.5px solid #ede0ff;
    z-index: 9998;
    overflow: hidden;
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}

.calc-panel.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* ── HEADER ── */
.calc-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #6600a0, #9333ea);
    color: #fff;
}

.calc-panel__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
}

.calc-panel__title i {
    font-size: 20px;
}

.calc-panel__close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s;
}

.calc-panel__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* ── BODY ── */
.calc-panel__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 75vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.calc-panel__body::-webkit-scrollbar {
    display: none;
}

/* ── FIELDS ── */
.calc-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #6600a0;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-label-hint {
    font-weight: 400;
    color: #bbb;
    text-transform: none;
    letter-spacing: 0;
}

.calc-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0cff5;
    border-radius: 10px;
    overflow: hidden;
    background: #faf5ff;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.calc-input-wrap:focus-within {
    border-color: #9333ea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.08);
}

.calc-prefix,
.calc-suffix {
    padding: 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #6600a0;
    background: #f0e6ff;
    height: 42px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.calc-icon-left {
    padding: 0 10px;
    font-size: 17px;
    color: #6600a0;
    background: #f0e6ff;
    height: 42px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.calc-input-wrap input {
    border: none;
    outline: none;
    background: transparent;
    padding: 0 12px;
    font-size: 14px;
    color: #1a1a2e;
    width: 100%;
    height: 42px;
}

.calc-input-wrap input::placeholder {
    color: #ccc;
}

/* ── BUTTON ── */
.calc-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #6600a0, #9333ea);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: opacity 0.18s, transform 0.18s;
}

.calc-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.calc-btn i {
    font-size: 18px;
}

/* ── RESULT ── */
.calc-result {
    background: #f9f5ff;
    border: 1.5px solid #e8d8ff;
    border-radius: 12px;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.calc-result.show {
    display: flex;
    animation: calcPop 0.3s ease;
}

.calc-result__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.calc-result__row span:first-child {
    font-weight: 500;
}

.calc-result__row.discount .calc-save-amount {
    font-weight: 700;
    color: #e00;
    font-size: 15px;
}

.calc-result__row.final {
    border-top: 1.5px dashed #d8b8ff;
    padding-top: 10px;
    margin-top: 2px;
}

.calc-result__row.final span:first-child {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.calc-final-amount {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #6600a0 !important;
}

.calc-coupon-used {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #edfaf3;
    border: 1px solid #6fcf97;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #27ae60;
    font-weight: 500;
}

.calc-coupon-used i {
    font-size: 16px;
    flex-shrink: 0;
}

/* ── TIP ── */
.calc-tip {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: #aaa;
    background: #faf5ff;
    border-radius: 8px;
    padding: 10px 12px;
    margin: 0;
    line-height: 1.5;
}

.calc-tip i {
    font-size: 15px;
    color: #f5a623;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── MOBILE ── */
@media (max-width: 576px) {
    .calc-fab {
        bottom: 20px;
        padding: 10px 16px 10px 14px;
    }

    .calc-fab__text {
        font-size: 11px;
    }

    .calc-fab i {
        font-size: 20px;
    }

    .calc-panel {
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        bottom: 72px;
    }
}

@keyframes calcPop {
    0% {
        transform: scale(0.97);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



.search-store-card {
    cursor: pointer;
}

.search-store-card .store-logo-wrap {
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.search-store-card:hover .store-logo-wrap {
    box-shadow: 0 6px 24px rgba(108, 99, 255, 0.10);
    transform: translateY(-4px);
    border-color: #c4b5fd !important;
}

.search-store-card .store-info-wrap p {
    transition: color 0.18s;
}

.search-store-card:hover .store-info-wrap p {
    color: #7c3aed !important;
}



.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 16px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .promo-list {
        grid-template-columns: 1fr;
    }
}



.store-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 4px;
}

.store-stars svg {
    width: 15px;
    height: 15px;
}

.rating-badge {
    font-size: 11px;
    font-weight: 700;
    color: #92400e;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 20px;
}