:root {
    --pv-plum: #6f184f;
    --pv-plum-dark: #351126;
    --pv-rose: #b83268;
    --pv-rani: #cf2f78;
    --pv-gold: #c99a42;
    --pv-gold-soft: #f8deb0;
    --pv-cream: #fff8ef;
    --pv-blush: #fff1f7;
    --pv-ink: #28131f;
    --pv-muted: #8b7280;
    --pv-line: #f0dce7;
    --pv-shadow: 0 20px 55px rgba(66, 22, 48, .12);
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--pv-ink);
    background:
        radial-gradient(circle at top left, rgba(255, 240, 248, .9), transparent 28rem),
        linear-gradient(180deg, #fff 0%, #fffaf4 44%, #fff 100%);
}

.brand-font,
.section-title,
.hero-title {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.025em;
}

.text-gold { color: var(--pv-gold); }
.text-muted-soft { color: var(--pv-muted); }

.top-strip {
    background: linear-gradient(90deg, var(--pv-plum-dark), var(--pv-plum), var(--pv-rose));
    color: #fff;
    font-size: .84rem;
    letter-spacing: .03em;
}

.offer-strip {
    background: #fff7e8;
    color: #7a4b12;
    border-bottom: 1px solid #f5dfb8;
    font-size: .82rem;
}

.navbar-lux {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(49, 20, 37, .08);
    backdrop-filter: blur(14px);
}

.navbar-lux .nav-link {
    color: var(--pv-ink);
    font-weight: 650;
    font-size: .86rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.navbar-lux .nav-link:hover { color: var(--pv-rani); }

.brand-mark {
    color: var(--pv-plum);
    font-size: 2rem;
    line-height: 1;
}

.brand-subtitle {
    display: block;
    color: var(--pv-muted);
    font-size: .58rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    margin-top: .15rem;
}

.btn-lux {
    background: linear-gradient(135deg, var(--pv-plum), var(--pv-rani));
    color: #fff;
    border: 0;
    box-shadow: 0 12px 24px rgba(184, 50, 104, .22);
}

.btn-lux:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(.98);
}

.btn-outline-lux {
    color: var(--pv-plum);
    border-color: rgba(111, 24, 79, .28);
    background: rgba(255, 255, 255, .65);
}

.btn-outline-lux:hover {
    color: #fff;
    background: var(--pv-plum);
    border-color: var(--pv-plum);
}

.hero-slide {
    min-height: 610px;
    background:
        linear-gradient(100deg, rgba(45, 13, 33, .86) 0%, rgba(111, 24, 79, .58) 45%, rgba(255, 255, 255, .02) 100%),
        var(--hero);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 8rem;
    background: linear-gradient(180deg, transparent, rgba(255, 248, 239, .95));
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--pv-gold-soft);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .76rem;
    font-weight: 700;
}

.section-kicker {
    color: var(--pv-rani);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: .9;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.hero-copy {
    max-width: 36rem;
    color: rgba(255, 255, 255, .88);
    font-size: 1.12rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    backdrop-filter: blur(10px);
}

.section-title {
    color: var(--pv-plum);
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-shell {
    padding: 5.5rem 0;
}

.section-blush {
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 229, 242, .95), transparent 24rem),
        linear-gradient(180deg, #fff8ef, #fff);
}

.category-card,
.collection-tile,
.service-card,
.admin-card {
    border: 1px solid rgba(240, 220, 231, .95);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--pv-shadow);
}

.category-card {
    overflow: hidden;
    transition: .24s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 65px rgba(66, 22, 48, .16);
}

.category-card img,
.collection-tile img {
    height: 190px;
    width: 100%;
    object-fit: cover;
}

.category-card .card-body {
    min-height: 4.7rem;
}

.collection-tile {
    overflow: hidden;
    min-height: 320px;
    position: relative;
}

.collection-tile img {
    height: 100%;
    min-height: 320px;
    transition: transform .5s ease;
}

.collection-tile:hover img {
    transform: scale(1.05);
}

.collection-tile .collection-content {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
}

.product-card {
    border: 1px solid rgba(240, 220, 231, .95);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(43, 24, 36, .09);
    transition: .24s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(43, 24, 36, .16);
}

.product-media {
    position: relative;
    overflow: hidden;
    background: var(--pv-cream);
}

.product-media img,
.product-card img {
    height: 350px;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.045);
}

.product-actions {
    position: absolute;
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: .22s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.badge-sale {
    background: linear-gradient(135deg, var(--pv-rani), var(--pv-plum));
}

.lux-badge {
    position: absolute;
    top: .85rem;
    left: .85rem;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    color: var(--pv-plum);
    border: 1px solid rgba(201, 154, 66, .35);
    font-weight: 700;
    font-size: .72rem;
}

.price-current {
    color: var(--pv-plum);
    font-weight: 800;
}

.filter-panel {
    position: sticky;
    top: 105px;
    border: 1px solid rgba(240, 220, 231, .95);
    border-radius: 1.25rem;
    box-shadow: var(--pv-shadow);
}

.pagination {
    align-items: center;
    gap: .35rem;
    margin-bottom: 0;
}

.pagination .page-item .page-link {
    min-width: 2.4rem;
    min-height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 220, 231, .95);
    border-radius: 999px;
    color: var(--pv-plum);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 20px rgba(66, 22, 48, .06);
    font-weight: 700;
    font-size: .88rem;
    transition: .2s ease;
}

.pagination .page-item .page-link:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--pv-plum), var(--pv-rani));
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(111, 24, 79, .2);
}

.pagination .page-item.active .page-link {
    color: #fff;
    background: linear-gradient(135deg, var(--pv-plum), var(--pv-rani));
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(111, 24, 79, .22);
}

.pagination .page-item.disabled .page-link {
    color: rgba(118, 84, 101, .45);
    background: rgba(255, 255, 255, .56);
    box-shadow: none;
}

.pagination svg {
    width: 1rem;
    height: 1rem;
}

.trust-band {
    background: var(--pv-plum-dark);
    color: #fff;
}

.footer {
    background:
        radial-gradient(circle at 85% 0%, rgba(201, 154, 66, .2), transparent 22rem),
        linear-gradient(135deg, var(--pv-plum-dark), var(--pv-plum));
    color: #f8eaf3;
}

.footer a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
}

.footer a:hover { color: #fff; }

.ajax-loader { display: none; }

.mobile-app-nav {
    display: none;
}

@keyframes pvFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 26px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pvSoftZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1); }
}

@keyframes pvFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pvShimmer {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@keyframes pvPulseGlow {
    0%, 100% { box-shadow: 0 12px 24px rgba(184, 50, 104, .22); }
    50% { box-shadow: 0 18px 34px rgba(201, 154, 66, .34); }
}

.hero-slide {
    animation: pvSoftZoom 1.6s ease both;
}

.carousel-item.active .hero-kicker,
.carousel-item.active .hero-title,
.carousel-item.active .hero-copy,
.carousel-item.active .hero-slide .btn {
    animation: pvFadeUp .8s ease both;
}

.carousel-item.active .hero-title { animation-delay: .08s; }
.carousel-item.active .hero-copy { animation-delay: .16s; }
.carousel-item.active .hero-slide .btn { animation-delay: .24s; }

.hero-stat-card {
    animation: pvFloat 5s ease-in-out infinite;
}

.btn-lux {
    animation: pvPulseGlow 4.2s ease-in-out infinite;
}

.category-card,
.collection-tile,
.service-card,
.product-card,
.admin-card,
.admin-panel {
    will-change: transform;
}

.product-media::after,
.collection-tile::after,
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .28) 45%, transparent 72%);
    transform: translateX(-120%);
    pointer-events: none;
}

.product-card:hover .product-media::after,
.collection-tile:hover::after,
.category-card:hover::after {
    animation: pvShimmer .9s ease;
}

.category-card {
    position: relative;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-on-scroll:nth-child(2n) { transition-delay: .04s; }
.reveal-on-scroll:nth-child(3n) { transition-delay: .08s; }
.reveal-on-scroll:nth-child(4n) { transition-delay: .12s; }

.mobile-app-nav a.active .mobile-nav-featured,
.mobile-nav-featured {
    animation: pvFloat 3.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

.admin-body {
    background: #f8f2f6;
}

.admin-sidebar {
    min-height: 100vh;
    background:
        radial-gradient(circle at 40% 0%, rgba(201, 154, 66, .18), transparent 18rem),
        linear-gradient(180deg, #2b1021, #160811);
    box-shadow: 18px 0 45px rgba(43, 16, 33, .15);
}

.admin-sidebar a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .78rem .95rem;
    border-radius: .9rem;
    font-weight: 650;
    transition: .2s ease;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.admin-main {
    background:
        radial-gradient(circle at top right, rgba(255, 225, 240, .9), transparent 25rem),
        #f8f2f6;
}

.admin-topbar,
.admin-panel {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(240, 220, 231, .95);
    border-radius: 1.25rem;
    box-shadow: var(--pv-shadow);
}

.admin-stat {
    overflow: hidden;
    position: relative;
}

.admin-stat::after {
    content: "";
    position: absolute;
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    right: -2.6rem;
    top: -2.6rem;
    background: rgba(201, 154, 66, .16);
}

.table > :not(caption) > * > * {
    padding: 1rem .85rem;
}

.dataTables_wrapper .form-control,
.dataTables_wrapper .form-select,
.form-control,
.form-select {
    border-color: #ead5e0;
    border-radius: .85rem;
}

.dataTables_wrapper .form-control:focus,
.dataTables_wrapper .form-select:focus,
.form-control:focus,
.form-select:focus {
    border-color: var(--pv-rani);
    box-shadow: 0 0 0 .2rem rgba(207, 47, 120, .12);
}

@media (max-width: 991px) {
    .hero-slide { min-height: 520px; }
    .admin-sidebar { width: 88px !important; }
    .admin-sidebar .nav-label,
    .admin-sidebar .brand-subtitle,
    .admin-sidebar .admin-brand-text { display: none; }
}

@media (max-width: 767px) {
    body:not(.admin-body) {
        padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
        background:
            radial-gradient(circle at 20% 0%, rgba(255, 220, 239, .95), transparent 18rem),
            radial-gradient(circle at 100% 22%, rgba(248, 222, 176, .62), transparent 16rem),
            linear-gradient(180deg, #fff7ef 0%, #fff 34%, #fff3f8 100%);
    }

    .top-strip {
        padding-left: .8rem;
        padding-right: .8rem;
        font-size: .72rem;
        line-height: 1.35;
        background: linear-gradient(120deg, #2b1021 0%, #7c1a54 48%, #cf2f78 100%);
    }

    .offer-strip {
        display: flex;
        gap: .65rem;
        overflow-x: auto;
        white-space: nowrap;
        padding-left: .9rem;
        padding-right: .9rem;
        background: linear-gradient(90deg, #fff7e8, #ffe8f4, #fff7e8);
        scrollbar-width: none;
    }

    .offer-strip::-webkit-scrollbar {
        display: none;
    }

    .navbar-lux {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 241, 247, .96)),
            radial-gradient(circle at top right, rgba(201, 154, 66, .16), transparent 12rem);
        border-bottom: 1px solid rgba(240, 220, 231, .9);
    }

    .navbar-lux .container {
        align-items: center;
    }

    .brand-mark {
        font-size: 1.42rem;
        max-width: 12rem;
        white-space: normal;
    }

    .brand-subtitle {
        font-size: .46rem;
        letter-spacing: .18em;
    }

    .navbar-toggler {
        border: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, #fff, #fff0f7);
        box-shadow: 0 10px 22px rgba(111, 24, 79, .12);
        padding: .5rem .65rem;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 .18rem rgba(207, 47, 120, .14);
    }

    .navbar-collapse {
        margin-top: .85rem;
        padding: 1rem;
        border-radius: 1.25rem;
        background:
            radial-gradient(circle at top left, rgba(248, 222, 176, .28), transparent 12rem),
            linear-gradient(145deg, #fff, #fff1f7);
        border: 1px solid rgba(240, 220, 231, .95);
        box-shadow: 0 18px 45px rgba(66, 22, 48, .13);
    }

    .mobile-app-nav {
        position: fixed;
        z-index: 1040;
        left: .75rem;
        right: .75rem;
        bottom: calc(.7rem + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: end;
        gap: .2rem;
        min-height: 4.6rem;
        padding: .55rem .42rem .48rem;
        border: 1px solid rgba(255, 255, 255, .62);
        border-radius: 1.65rem;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 234, 246, .72)),
            radial-gradient(circle at 50% 0%, rgba(248, 222, 176, .5), transparent 13rem);
        box-shadow:
            0 22px 55px rgba(53, 17, 38, .24),
            inset 0 1px 0 rgba(255, 255, 255, .78);
        backdrop-filter: blur(18px);
    }

    .mobile-app-nav::before {
        content: "";
        position: absolute;
        inset: .42rem;
        border-radius: 1.25rem;
        border: 1px solid rgba(240, 220, 231, .65);
        pointer-events: none;
    }

    .mobile-app-nav a {
        position: relative;
        z-index: 1;
        display: flex;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .22rem;
        color: #765465;
        text-decoration: none;
        font-size: .64rem;
        font-weight: 800;
        letter-spacing: .01em;
        transition: transform .2s ease, color .2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-app-nav a:active {
        transform: scale(.96);
    }

    .mobile-nav-icon {
        display: grid;
        place-items: center;
        width: 2.12rem;
        height: 2.12rem;
        border-radius: 999px;
        color: var(--pv-plum);
        background: rgba(255, 255, 255, .68);
        border: 1px solid rgba(240, 220, 231, .82);
        box-shadow: 0 8px 18px rgba(66, 22, 48, .08);
        transition: .2s ease;
    }

    .mobile-nav-featured {
        width: 2.72rem;
        height: 2.72rem;
        margin-top: -1.3rem;
        color: #fff;
        background:
            radial-gradient(circle at 35% 20%, #ffe9b6 0%, var(--pv-gold) 32%, var(--pv-rani) 100%);
        border-color: rgba(255, 255, 255, .72);
        box-shadow:
            0 14px 28px rgba(207, 47, 120, .34),
            0 0 0 .32rem rgba(255, 255, 255, .66);
    }

    .mobile-app-nav a.active {
        color: var(--pv-plum);
    }

    .mobile-app-nav a.active .mobile-nav-icon {
        color: #fff;
        background: linear-gradient(135deg, var(--pv-plum), var(--pv-rani));
        border-color: rgba(255, 255, 255, .72);
        box-shadow: 0 12px 25px rgba(111, 24, 79, .26);
    }

    .mobile-app-nav a.active::after {
        content: "";
        position: absolute;
        bottom: -.32rem;
        width: .32rem;
        height: .32rem;
        border-radius: 999px;
        background: var(--pv-gold);
        box-shadow: 0 0 0 .22rem rgba(201, 154, 66, .16);
    }

    .mobile-cart-pill {
        position: absolute;
        top: -.2rem;
        right: .68rem;
        min-width: 1.1rem;
        height: 1.1rem;
        padding: 0 .25rem;
        border-radius: 999px;
        display: grid;
        place-items: center;
        color: #fff;
        background: linear-gradient(135deg, #f97316, var(--pv-rani));
        font-size: .58rem;
        border: 2px solid #fff;
        box-shadow: 0 8px 16px rgba(207, 47, 120, .24);
    }

    .section-shell,
    .section-blush,
    .trust-band {
        border-radius: 1.75rem;
        margin-left: .55rem;
        margin-right: .55rem;
        overflow: hidden;
    }

    .navbar-lux .nav-link {
        padding: .78rem .25rem;
        border-bottom: 1px solid rgba(240, 220, 231, .72);
        font-size: .82rem;
    }

    .navbar-lux .d-flex.align-items-center.gap-2 {
        width: 100%;
        flex-wrap: wrap;
        margin-top: .9rem;
    }

    .navbar-lux .position-relative {
        width: 100%;
    }

    #globalSearch {
        height: 2.75rem;
        background: rgba(255, 255, 255, .9);
    }

    .navbar-lux .btn {
        min-height: 2.45rem;
        flex: 1 1 auto;
    }

    .hero-slide {
        min-height: 520px;
        align-items: flex-end !important;
        padding: 5.5rem 0 4.25rem;
        background:
            linear-gradient(180deg, rgba(53, 17, 38, .28) 0%, rgba(53, 17, 38, .62) 42%, rgba(53, 17, 38, .9) 100%),
            var(--hero);
        background-position: center top;
        border-bottom-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
        overflow: hidden;
    }

    .hero-slide::after {
        height: 5.5rem;
        background: linear-gradient(180deg, transparent, rgba(255, 247, 239, .98));
    }

    .hero-kicker,
    .section-kicker {
        font-size: .64rem;
        letter-spacing: .16em;
    }

    .hero-title {
        font-size: clamp(2.65rem, 15vw, 4.1rem);
        line-height: .92;
        max-width: 21rem;
    }

    .hero-copy {
        font-size: .98rem;
        max-width: 20rem;
    }

    .hero-slide .btn {
        width: 100%;
        justify-content: center;
        padding-top: .82rem;
        padding-bottom: .82rem;
    }

    .section-shell {
        padding: 3.35rem 0;
    }

    .section-title {
        font-size: clamp(2rem, 11vw, 2.75rem);
        line-height: 1;
    }

    .section-blush {
        background:
            radial-gradient(circle at 0% 0%, rgba(255, 214, 236, .85), transparent 16rem),
            linear-gradient(180deg, #fff7ed, #fff, #fff1f7);
    }

    .category-card {
        border-radius: 1.1rem;
        box-shadow: 0 14px 35px rgba(66, 22, 48, .1);
        background: linear-gradient(180deg, #fff, #fff8fb);
    }

    .category-card img {
        height: 135px;
    }

    .category-card .card-body {
        min-height: 4rem;
        padding: .72rem .45rem;
        font-size: .84rem;
    }

    .collection-tile {
        min-height: 260px;
        border-radius: 1.2rem;
        box-shadow: 0 18px 44px rgba(66, 22, 48, .13);
    }

    .collection-tile img {
        min-height: 260px;
    }

    .collection-tile .collection-content {
        inset: auto .75rem .75rem .75rem;
        padding: .85rem;
        border-radius: .95rem;
        background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 239, 247, .9));
    }

    .service-card {
        border-radius: 1.15rem;
        background:
            radial-gradient(circle at top right, rgba(248, 222, 176, .28), transparent 10rem),
            linear-gradient(145deg, #fff, #fff5fa);
        box-shadow: 0 16px 38px rgba(66, 22, 48, .1);
    }

    .product-media img,
    .product-card img {
        height: 255px;
    }

    .product-card {
        border-radius: 1.05rem;
        box-shadow: 0 12px 30px rgba(43, 24, 36, .1);
        background: linear-gradient(180deg, #fff, #fff9fc);
    }

    .product-card .card-body {
        padding: .78rem;
    }

    .product-card .card-title {
        font-size: .86rem;
        line-height: 1.25;
        min-height: 2.15rem;
        margin-bottom: .45rem;
    }

    .product-card .small {
        font-size: .68rem;
    }

    .price-current {
        font-size: .94rem;
    }

    .product-actions {
        opacity: 1;
        transform: none;
        left: .55rem;
        right: .55rem;
        bottom: .55rem;
    }

    .product-actions .btn {
        min-height: 2.15rem;
        font-size: .76rem;
        border-radius: 999px;
    }

    .lux-badge {
        top: .55rem;
        left: .55rem;
        font-size: .64rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 238, 247, .96));
    }

    .product-card .card-footer {
        padding: 0 .78rem .85rem;
    }

    .filter-panel {
        position: static;
        border-radius: 1.15rem;
        background:
            radial-gradient(circle at 10% 0%, rgba(248, 222, 176, .28), transparent 12rem),
            linear-gradient(145deg, #fff, #fff4fa);
        margin-top: -1rem;
    }

    .pagination {
        justify-content: center;
        flex-wrap: wrap;
        gap: .42rem;
    }

    .pagination .page-item .page-link {
        min-width: 2.25rem;
        min-height: 2.25rem;
        padding: .42rem .72rem;
        font-size: .8rem;
    }

    .trust-band {
        background:
            radial-gradient(circle at top left, rgba(201, 154, 66, .22), transparent 12rem),
            linear-gradient(135deg, #2b1021, #6f184f, #9f2a63);
    }

    .trust-band .col {
        padding: .85rem .4rem;
        font-size: .82rem;
    }

    .footer {
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
        background:
            radial-gradient(circle at 15% 0%, rgba(248, 222, 176, .26), transparent 15rem),
            linear-gradient(160deg, #260d1c 0%, #6f184f 52%, #b83268 120%);
    }

    .footer .input-group {
        flex-direction: column;
        gap: .65rem;
    }

    .footer .input-group > .form-control,
    .footer .input-group > .btn {
        width: 100%;
        border-radius: 999px !important;
    }

    #quickViewModal .modal-dialog {
        margin: .75rem;
    }

    #quickViewModal .modal-content {
        background:
            radial-gradient(circle at top right, rgba(248, 222, 176, .26), transparent 12rem),
            linear-gradient(180deg, #fff, #fff4fa);
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .row.row-cols-2 {
        --bs-gutter-x: .78rem;
        --bs-gutter-y: 1rem;
    }

    .product-media img,
    .product-card img {
        height: 210px;
    }

    .product-card .card-title {
        font-size: .78rem;
    }

    .product-card .card-footer .small {
        display: none;
    }

    .product-card .card-footer {
        justify-content: flex-end !important;
    }

    .category-card img {
        height: 118px;
    }

    .collection-tile {
        min-height: 235px;
    }

    .collection-tile img {
        min-height: 235px;
    }

    .service-card.p-4 {
        padding: 1.15rem !important;
    }

    .badge.rounded-pill {
        white-space: normal;
        text-align: left;
    }
}
