:root {
    --ink: #221230;
    --muted: #6f5f7c;
    --surface: #ffffff;
    --soft: #fcf9fe;
    --line: rgba(34, 18, 48, 0.08);
    --teal: #d63384; /* Pink Brand Color */
    --teal-dark: #b01a60; /* Pink Brand Dark */
    --coral: #7933e5; /* Purple Accent */
    --sun: #ff6496; /* Light Pink Accent */
    --leaf: #a155e8; /* Light Purple Accent */
    --blue: #4f46e5; /* Indigo/Blue */
    --violet: #9b5de5; /* Violet */
    --pink: #d63384;
    --pink-dark: #b01a60;
    --purple: #7933e5;
    --purple-dark: #5a1cb5;
    --shadow: 0 18px 45px rgba(34, 18, 48, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    letter-spacing: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.topbar {
    background: var(--ink);
    color: #fff;
    font-size: 0.9rem;
    padding: 0.55rem 0;
}

.topbar a,
.topbar span {
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.topbar a:hover {
    color: #fff;
}

.topbar-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.1rem;
    min-width: 0;
}

.topbar-group > * {
    min-width: 0;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.25s ease, background 0.25s ease;
    z-index: 1000;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 30px rgba(23, 33, 43, 0.08);
}

.navbar {
    min-height: 76px;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--ink);
    min-width: 0;
}

.brand:hover {
    color: var(--ink);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05;
}

.brand strong {
    font-size: 1.2rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.76rem;
    margin-top: 0.2rem;
}

.brand-mark {
    width: 46px;
    height: 46px;
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 46px;
}

.brand-mark span {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(23, 33, 43, 0.16);
}

.brand-mark span:nth-child(1) {
    background: var(--coral);
    transform: translate(-8px, -8px) rotate(-8deg);
}

.brand-mark span:nth-child(2) {
    background: var(--teal);
    transform: translate(8px, -3px) rotate(10deg);
}

.brand-mark span:nth-child(3) {
    background: var(--sun);
    transform: translate(0, 11px) rotate(4deg);
}

.nav-link {
    color: var(--ink);
    font-weight: 650;
    padding-inline: 0.85rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
}

.btn {
    border-radius: 8px;
    font-weight: 750;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    white-space: normal;
}

.btn-brand {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 14px 26px rgba(15, 143, 140, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus {
    background: #fff;
    color: var(--ink);
}

.hero-slider,
.hero-slide {
    position: relative;
}

.hero-slide {
    min-height: clamp(560px, 78vh, 760px);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(34, 18, 48, 0.88) 0%, rgba(34, 18, 48, 0.6) 43%, rgba(34, 18, 48, 0.1) 100%),
        linear-gradient(0deg, rgba(34, 18, 48, 0.5) 0%, rgba(34, 18, 48, 0) 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.min-vh-hero {
    min-height: clamp(560px, 78vh, 760px);
    padding: 4rem 0 5.5rem;
}

.section-kicker {
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 850;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}

.section-kicker::before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.section-kicker.light {
    color: #fff;
}

.hero-content h1 {
    max-width: 760px;
    font-size: 5rem;
    line-height: 0.96;
    font-weight: 900;
    margin-bottom: 1.1rem;
    overflow-wrap: break-word;
}

.hero-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: clamp(42px, 6vw, 72px);
}

.carousel-indicators {
    margin-bottom: 1.6rem;
}

.carousel-indicators [data-bs-target] {
    width: 38px;
    height: 5px;
    border-radius: 999px;
    border: 0;
}

.trust-strip {
    background: var(--surface);
    transform: translateY(-32px);
    position: relative;
    z-index: 5;
}

.trust-strip .container-xl {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.trust-item {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem;
    text-align: center;
}

.trust-item strong {
    font-size: 2.45rem;
    line-height: 1;
    color: var(--teal);
}

.trust-item span {
    color: var(--muted);
    font-weight: 700;
}

.section-pad {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
}

h2 {
    font-size: 3.2rem;
    line-height: 1.02;
    font-weight: 900;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
}

.section-heading p,
.section-lead,
.about-section p,
.contact-panel p {
    color: var(--muted);
    font-size: 1.05rem;
}

.category-card {
    display: flex;
    gap: 1.1rem;
    padding: 1.35rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.category-icon,
.recent-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.35rem;
}

.category-card h3,
.product-card h3,
.recent-card h3 {
    font-size: 1.2rem;
    font-weight: 850;
    margin-bottom: 0.45rem;
}

.category-card span,
.product-body > span,
.recent-card span {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 850;
}

.category-card p,
.product-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.tone-teal .category-icon { background: var(--teal); }
.tone-coral .category-icon { background: var(--coral); }
.tone-sun .category-icon { background: var(--sun); color: var(--ink); }
.tone-leaf .category-icon { background: var(--leaf); }
.tone-blue .category-icon { background: var(--blue); }
.tone-violet .category-icon { background: var(--violet); }
.tone-pink .category-icon { background: var(--pink); color: #fff; }
.tone-purple .category-icon { background: var(--purple); color: #fff; }

.play-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #fbf5fc 100%);
}

.play-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.play-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.play-label {
    position: absolute;
    left: 1.15rem;
    bottom: 1.15rem;
    max-width: min(300px, calc(100% - 2.3rem));
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 28px rgba(23, 33, 43, 0.16);
}

.play-label strong,
.play-label span {
    display: block;
}

.play-label strong {
    color: var(--teal);
    font-size: 1.55rem;
    line-height: 1;
}

.play-label span {
    color: var(--muted);
    font-weight: 750;
    margin-top: 0.25rem;
}

.play-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.play-point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--muted);
    font-weight: 700;
}

.play-point i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--coral);
    color: #fff;
    font-size: 1.15rem;
}

.product-band {
    background: var(--soft);
}

.link-action {
    color: var(--teal);
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.link-action:hover {
    color: var(--teal-dark);
}

.product-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.product-media {
    height: 270px;
    position: relative;
    overflow: hidden;
    background: #f4f1ec;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--coral);
    color: #fff;
    border-radius: 8px;
    padding: 0.4rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 850;
}

.product-body {
    padding: 1.35rem;
}

.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    margin-top: 1.2rem;
    padding-top: 1rem;
}

.icon-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #25d366;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-link:hover {
    color: #fff;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    background: #1ebd56;
}

.icon-link i::before,
.floating-whatsapp i::before,
.trust-card-icon i::before {
    vertical-align: 0;
}

.recent-image {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1.8rem;
    box-shadow: var(--shadow);
}

.recent-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.recent-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 118px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.recent-icon {
    background: var(--teal);
}

.recent-card h3 {
    margin-bottom: 0;
}

.parallax-section {
    min-height: 520px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
}

.parallax-bg,
.parallax-shade {
    position: absolute;
    inset: 0;
}

.parallax-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
}

.parallax-shade {
    background:
        linear-gradient(90deg, rgba(13, 28, 35, 0.9), rgba(13, 28, 35, 0.48)),
        rgba(13, 28, 35, 0.2);
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin-left: 0;
    padding: 5rem 0;
}

.parallax-content h2 {
    color: #fff;
}

.parallax-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
}

.about-section {
    background: #fff;
}

.about-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-note {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    max-width: min(280px, calc(100% - 2.4rem));
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 14px 28px rgba(23, 33, 43, 0.18);
}

.about-note strong,
.about-note span {
    display: block;
}

.about-note strong {
    color: var(--coral);
    font-size: 2rem;
    line-height: 1;
}

.about-note span {
    color: var(--muted);
    font-weight: 750;
}

.about-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.about-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 750;
}

.about-list i {
    color: var(--teal);
    font-size: 1.25rem;
    line-height: 1.2;
}

.contact-section {
    background: linear-gradient(135deg, #fdf4f8 0%, #f4f0fd 100%);
    padding: 5rem 0;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr auto;
    gap: 1.6rem 2rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: clamp(1.4rem, 4vw, 2.5rem);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
}

.contact-details {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.contact-details a,
.contact-details span {
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 1.6rem 0;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1001;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    font-size: 1.85rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    color: #fff;
    transform: scale(1.12) translateY(-4px) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .hero-overlay {
        background: linear-gradient(90deg, rgba(8, 22, 31, 0.88) 0%, rgba(8, 22, 31, 0.56) 70%, rgba(8, 22, 31, 0.22) 100%);
    }

    .hero-content h1 {
        font-size: 4.25rem;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 68px;
    }

    .navbar-collapse {
        padding: 1rem 0 0.7rem;
    }

    .nav-link {
        padding: 0.65rem 0 !important;
    }

    .hero-slide,
    .min-vh-hero {
        min-height: 620px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(8, 22, 31, 0.9), rgba(8, 22, 31, 0.58));
    }

    .hero-content h1 {
        font-size: 3.65rem;
    }

    h2 {
        font-size: 2.75rem;
    }

    .trust-strip {
        transform: none;
        padding: 1.5rem 0 0;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        font-size: 0.82rem;
    }

    .brand {
        max-width: calc(100vw - 92px);
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .brand-mark span {
        width: 21px;
        height: 21px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .hero-slide,
    .min-vh-hero {
        min-height: 650px;
    }

    .min-vh-hero {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }

    .hero-content h1 {
        font-size: 2.45rem;
        line-height: 1.04;
        max-width: 340px;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 340px;
    }

    .hero-content .d-flex {
        max-width: 340px;
    }

    h2 {
        font-size: 2.2rem;
    }

    .trust-item strong {
        font-size: 2.1rem;
    }

    .btn-lg {
        width: 100%;
        min-height: 50px;
    }

    .category-card {
        flex-direction: column;
    }

    .product-media {
        height: 235px;
    }

    .play-media img {
        aspect-ratio: 4 / 3;
    }

    .parallax-section {
        min-height: 560px;
    }

    .about-media img {
        min-height: 340px;
    }
}

@media (max-width: 575.98px) {
    .topbar-group {
        width: 100%;
        justify-content: flex-start;
    }

    .topbar a,
    .topbar span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .trust-strip .container-xl {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .trust-item {
        padding: 0.55rem;
    }

    .section-pad {
        padding: 3.4rem 0;
    }

    .contact-section {
        padding: 3.4rem 0;
    }

    .section-heading {
        max-width: 340px;
    }

    h2 {
        font-size: 1.9rem;
    }

    .category-card .d-flex {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 0.3rem !important;
    }

    .contact-actions .btn {
        width: 100%;
    }
}

@media (max-width: 359.98px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Categories & Product Detail Extensions
   ========================================================================== */

/* Categories Page Layout */
.category-page-header {
    background: linear-gradient(135deg, var(--ink) 0%, #3e1b5c 100%);
    color: #fff;
    padding: 3.5rem 0;
    text-align: center;
}
.category-page-header h1 {
    font-size: 2.8rem;
    font-weight: 900;
}
.category-page-header p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.category-sidebar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 96px;
}

.category-sidebar-title {
    font-size: 1.15rem;
    font-weight: 850;
    margin-bottom: 1.25rem;
    color: var(--ink);
    border-bottom: 2px solid var(--line);
    padding-bottom: 0.75rem;
}

.category-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 700;
    transition: all 0.2s ease;
}

.category-menu-item a i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    transition: transform 0.2s ease;
}

.category-menu-item a .cat-name-wrap {
    display: flex;
    align-items: center;
}

.category-menu-item a .badge-count {
    font-size: 0.76rem;
    background: var(--soft);
    color: var(--ink);
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.category-menu-item a:hover {
    background: var(--soft);
    color: var(--pink);
}

.category-menu-item a:hover i {
    transform: scale(1.15);
}

.category-menu-item.active a {
    background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
    color: #fff;
}

.category-menu-item.active a .badge-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Product Detail Page Layout */
.breadcrumb-nav {
    background: var(--soft);
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.breadcrumb-nav a {
    color: var(--purple);
}
.breadcrumb-nav span {
    color: var(--muted);
}

/* Cloud Zoom Component */
.product-gallery-wrapper {
    position: relative;
}

.main-image-container {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 4/3;
    display: grid;
    place-items: center;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

/* Glassmorphic lens magnifier */
.zoom-lens {
    position: absolute;
    border: 2px solid var(--pink);
    background: rgba(214, 51, 132, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    width: 130px;
    height: 130px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
    border-radius: 4px;
}

/* Zoom window showing high res image */
.zoom-window {
    position: absolute;
    top: 0;
    left: calc(100% + 20px);
    width: 100%;
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background-color: #fff;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.zoom-window.active,
.main-image-container:hover .zoom-lens {
    opacity: 1;
}

.thumbnail-list {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0;
    list-style: none;
}

.thumbnail-item {
    width: 70px;
    height: 70px;
    border: 2px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--pink);
    transform: translateY(-2px);
}

/* Product Info */
.product-info-panel {
    padding-left: 1rem;
}
@media (max-width: 991.98px) {
    .product-info-panel {
        padding-left: 0;
        margin-top: 2rem;
    }
    .zoom-window {
        display: none !important; /* disable side zoom window on tablet/mobile and fall back to click lightbox/none */
    }
    .main-image-container {
        cursor: default;
    }
}

.product-detail-badge {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 850;
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.product-info-panel h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.product-info-panel .product-cat-link {
    color: var(--purple);
    font-weight: 850;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.product-tagline {
    font-size: 1.15rem;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.product-quote-card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.product-quote-card .price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
}

.product-quote-card .price-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--pink);
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.btn-whatsapp-inquiry {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    width: 100%;
}
.btn-whatsapp-inquiry:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    color: #fff;
}

/* Specs Table */
.specs-table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
}

.specs-table th {
    font-weight: 800;
    color: var(--ink);
    width: 35%;
    text-align: left;
}

.specs-table td {
    color: var(--muted);
    font-weight: 600;
}

.specs-table tr:nth-child(even) {
    background-color: var(--soft);
}

/* Features checklist */
.features-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.6rem;
}

.features-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-weight: 700;
    color: var(--ink);
}

.features-checklist li i {
    color: var(--pink);
    font-size: 1.15rem;
}

/* Responsive sidebar button on mobile categories */
.mobile-filter-btn {
    display: none;
    width: 100%;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 750;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 991.98px) {
    .mobile-filter-btn {
        display: flex;
    }
    .category-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 290px;
        height: 100vh;
        z-index: 1050;
        border-radius: 0;
        overflow-y: auto;
        box-shadow: 0 0 30px rgba(0,0,0,0.25);
        padding-top: 5rem;
        transition: transform 0.3s ease;
    }
    .category-sidebar.show {
        display: block;
    }
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(34, 18, 48, 0.4);
        backdrop-filter: blur(4px);
        z-index: 1040;
    }
    .sidebar-overlay.show {
        display: block;
    }
}

/* ==========================================================================
   Header Line, Infinite Marquee & Trust Strip Redesign
   ========================================================================== */

/* Header Gradient Line */
.header-gradient-line {
    height: 4px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
    width: 100%;
}

/* Infinite Marquee */
.marquee-container {
    background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 100%);
    color: #fff;
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    font-weight: 750;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(121, 51, 229, 0.15);
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 24s linear infinite;
    gap: 3rem;
    padding-right: 3rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.marquee-item i {
    color: var(--sun);
    font-size: 1.1rem;
}

/* Trust Strip Redesign */
.trust-strip-redesign {
    background: linear-gradient(135deg, #180927 0%, #29123e 100%);
    padding: 4.5rem 0;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-card-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trust-card-new:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--pink);
    box-shadow: 0 15px 35px rgba(214, 51, 132, 0.15);
}

.trust-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 99px;
    display: grid;
    place-items: center;
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.trust-card-new:nth-child(1) .trust-card-icon,
.trust-card-new:nth-of-type(1) .trust-card-icon { background: linear-gradient(135deg, #ff477e 0%, #ff85a2 100%); }
.trust-card-new:nth-child(2) .trust-card-icon,
.trust-card-new:nth-of-type(2) .trust-card-icon { background: linear-gradient(135deg, #7933e5 0%, #9b5de5 100%); }
.trust-card-new:nth-child(3) .trust-card-icon,
.trust-card-new:nth-of-type(3) .trust-card-icon { background: linear-gradient(135deg, #ff9f1c 0%, #ffbf69 100%); }
.trust-card-new:nth-child(4) .trust-card-icon,
.trust-card-new:nth-of-type(4) .trust-card-icon { background: linear-gradient(135deg, #00bbf9 0%, #00f5d4 100%); }

.trust-card-new strong {
    font-size: 2.3rem;
    line-height: 1;
    color: #fff;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.trust-card-new span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
