:root {
    --pj-navy: #225688;
    --pj-navy-deep: #225688;
    --pj-navy-soft: #1f4f96;
    --pj-gold: #c4a35a;
    --pj-gold-bright: #d8bc74;
    --pj-pearl: #f3f5f8;
    --pj-white: #ffffff;
    --pj-ink: #121826;
    --pj-muted: #667085;
    --pj-line: rgba(20, 58, 120, 0.12);
    --pj-shadow: 0 18px 50px rgba(10, 32, 72, 0.12);
    --pj-radius: 18px;
    --pj-font-display: "Cormorant Garamond", Georgia, serif;
    --pj-font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--pj-font-body);
    color: var(--pj-ink);
    background:
        radial-gradient(1200px 500px at 10% -10%, rgba(196, 163, 90, 0.12), transparent 55%),
        radial-gradient(900px 420px at 100% 0%, rgba(20, 58, 120, 0.08), transparent 50%),
        var(--pj-pearl);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

/* Header */
.pj-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(243, 245, 248, 0.86);
    border-bottom: 1px solid var(--pj-line);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.pj-header__inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pj-logo img {
    height: 42px;
    width: auto;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.pj-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.pj-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pj-navy-deep);
    position: relative;
    transition: color 0.3s ease;
}

.pj-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: var(--pj-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.pj-nav a:hover::after {
    transform: scaleX(1);
}

.pj-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pj-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--pj-navy);
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.7);
    transition: 0.25s ease;
}

.pj-icon-btn:hover {
    background: var(--pj-navy);
    color: var(--pj-white);
}

.pj-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--pj-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.pj-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--pj-navy);
    transition: background 0.3s ease;
}

/* Home: transparent menu over banner */
.pj-home .pj-header--overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(7, 22, 48, 0.42), rgba(7, 22, 48, 0));
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.pj-home .pj-header--overlay .pj-logo img {
    filter: brightness(0) invert(1);
}

.pj-home .pj-header--overlay .pj-nav a {
    color: rgba(255, 255, 255, 0.92);
}

.pj-home .pj-header--overlay .pj-nav a:hover {
    color: var(--pj-gold-bright);
}

.pj-home .pj-header--overlay .pj-icon-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.pj-home .pj-header--overlay .pj-icon-btn:hover {
    background: var(--pj-gold);
    border-color: var(--pj-gold);
    color: var(--pj-navy-deep);
}

.pj-home .pj-header--overlay .pj-menu-btn {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.pj-home .pj-header--overlay .pj-menu-btn span {
    background: #fff;
}

/* Home: sticky premium bar after scroll */
.pj-home .pj-header--overlay.is-scrolled {
    /* background: rgba(10, 32, 72, 0.78); */
    background: var(--pj-navy);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(196, 163, 90, 0.28);
    box-shadow: 0 10px 36px rgba(7, 22, 48, 0.28);
}

.pj-home .pj-header--overlay.is-scrolled .pj-nav a {
    color: rgba(255, 255, 255, 0.94);
}

.pj-home .pj-hero {
    margin-top: 0;
}

.pj-home .pj-hero__content {
    padding-top: 7.5rem;
}

.pj-mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 32, 72, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1100;
}

.pj-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.pj-mobile-menu__panel {
    width: min(320px, 86vw);
    height: 100%;
    margin-left: auto;
    background: linear-gradient(180deg, #ffffff, #eef2f8);
    padding: 1.25rem;
    transform: translateX(20px);
    transition: transform 0.3s ease;
}

.pj-mobile-menu.is-open .pj-mobile-menu__panel {
    transform: translateX(0);
}

.pj-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.pj-mobile-menu__top img {
    height: 36px;
}

.pj-mobile-close {
    border: 0;
    background: transparent;
    font-size: 1.4rem;
    color: var(--pj-navy);
    cursor: pointer;
}

.pj-mobile-menu nav {
    display: grid;
    gap: 1rem;
}

.pj-mobile-menu nav a {
    font-family: var(--pj-font-display);
    font-size: 1.8rem;
    color: var(--pj-navy-deep);
    border-bottom: 1px solid var(--pj-line);
    padding-bottom: 0.75rem;
}

/* Hero */
.pj-hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--pj-white);
}

.pj-hero__media {
    position: absolute;
    inset: 0;
}

.pj-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: pjKenBurns 18s ease-in-out infinite alternate;
}

.pj-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(7, 22, 48, 0.78) 10%, rgba(20, 58, 120, 0.45) 48%, rgba(7, 22, 48, 0.55) 100%),
        linear-gradient(to top, rgba(7, 22, 48, 0.55), transparent 45%);
}

.pj-hero__content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 2rem));
    text-align: center;
    padding: 5rem 0 4rem;
    animation: pjRise 1s ease both;
}

.pj-hero__brand {
    height: 58px;
    margin: 0 auto 1.4rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.pj-hero h1 {
    font-family: var(--pj-font-display);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0 0 1rem;
}

.pj-hero p {
    margin: 0 auto 1.8rem;
    max-width: 34rem;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
}

.pj-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.pj-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    display: grid;
    place-items: start center;
    padding-top: 8px;
    z-index: 2;
}

.pj-hero__scroll span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pj-gold-bright);
    animation: pjScrollDot 1.6s ease-in-out infinite;
}

/* Buttons */
.pj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: 0.25s ease;
    background: var(--pj-navy);
    color: var(--pj-white);
}

.pj-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 32, 72, 0.22);
}

.pj-btn--gold {
    background: linear-gradient(135deg, var(--pj-gold), var(--pj-gold-bright));
    color: var(--pj-navy-deep);
}

.pj-btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--pj-white);
}

.pj-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pj-btn--sm {
    min-height: 38px;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
}

/* Sections */
.pj-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

/* Offers banner — match other section spacing */
#products.pj-section {
    padding-bottom: 0;
}

.pj-offers {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.pj-offers-banner {
    display: block;
    overflow: hidden;
    border-radius: calc(var(--pj-radius) + 2px);
    box-shadow: var(--pj-shadow);
}

.pj-offers-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.pj-section--soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
        radial-gradient(700px 280px at 80% 0%, rgba(196, 163, 90, 0.12), transparent 60%);
}

/* Live video consultation (home) */
.pj-consult-banner {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background:
        linear-gradient(135deg, rgba(10, 32, 72, 0.04), rgba(196, 163, 90, 0.08)),
        var(--pj-pearl);
}

.pj-consult-banner__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.pj-consult-banner__copy h2 {
    margin: 0 0 0.75rem;
    font-family: var(--pj-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pj-navy-deep);
    font-weight: 600;
}

.pj-consult-banner__copy p {
    margin: 0 0 1.4rem;
    max-width: 34rem;
    color: var(--pj-muted);
}

.pj-consult-banner__visual {
    position: relative;
    border-radius: calc(var(--pj-radius) + 4px);
    overflow: hidden;
    box-shadow: var(--pj-shadow);
    border: 1px solid var(--pj-line);
}

.pj-consult-banner__visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.pj-consult-banner__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--pj-navy-deep);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.pj-consult-banner__badge i {
    color: #e11d48;
}

@media (max-width: 860px) {
    .pj-consult-banner__inner {
        grid-template-columns: 1fr;
    }
}

/* 5-Step Quality Check */
.pj-quality-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.pj-quality-viewport {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: calc(var(--pj-radius) + 4px);
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--pj-shadow);
}

.pj-quality-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.pj-quality-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.pj-quality-slide__media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.pj-quality-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pj-quality-step {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(10, 32, 72, 0.82);
    color: var(--pj-gold-bright);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pj-quality-slide__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 245, 248, 0.96));
}

.pj-quality-slide__copy h3 {
    margin: 0 0 0.85rem;
    font-family: var(--pj-font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--pj-navy-deep);
    font-weight: 600;
    line-height: 1.2;
}

.pj-quality-slide__copy p {
    margin: 0;
    color: var(--pj-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.pj-quality-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--pj-line);
    background: #fff;
    color: var(--pj-navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 8px 20px rgba(10, 32, 72, 0.08);
}

.pj-quality-arrow:hover {
    background: var(--pj-navy);
    border-color: var(--pj-navy);
    color: #fff;
}

.pj-quality-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.pj-quality-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(20, 58, 120, 0.22);
    cursor: pointer;
    transition: 0.25s ease;
}

.pj-quality-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--pj-gold);
}

@media (max-width: 900px) {
    .pj-quality-carousel {
        position: relative;
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .pj-quality-viewport {
        min-height: 0;
    }

    .pj-quality-slide {
        position: relative;
        grid-template-columns: 1fr;
        display: none;
        transform: none;
    }

    .pj-quality-slide.is-active {
        display: grid;
    }

    .pj-quality-slide__media {
        min-height: 240px;
        aspect-ratio: 16 / 10;
    }

    .pj-quality-slide__copy {
        padding: 1.35rem 1.2rem 1.5rem;
    }

    .pj-quality-arrow {
        position: absolute;
        top: 38%;
        z-index: 3;
        width: 42px;
        height: 42px;
    }

    .pj-quality-arrow--prev {
        left: 0.6rem;
    }

    .pj-quality-arrow--next {
        right: 0.6rem;
    }
}

/* Consultation page form */
.pj-consult-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.pj-consult-info h2 {
    margin: 0 0 0.85rem;
    font-family: var(--pj-font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--pj-navy-deep);
}

.pj-consult-info > p {
    margin: 0 0 1.25rem;
    color: var(--pj-muted);
}

.pj-consult-points {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.pj-consult-points li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--pj-navy-deep);
    font-weight: 500;
}

.pj-consult-points i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(196, 163, 90, 0.16);
    color: var(--pj-navy);
    font-size: 0.85rem;
}

.pj-consult-slots {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.8);
}

.pj-consult-slots h3 {
    margin: 0 0 0.55rem;
    font-family: var(--pj-font-display);
    font-size: 1.3rem;
    color: var(--pj-navy-deep);
}

.pj-consult-slots p {
    margin: 0 0 0.35rem;
    color: var(--pj-muted);
    font-size: 0.94rem;
}

.pj-consult-form-wrap {
    padding: 1.4rem;
    border-radius: calc(var(--pj-radius) + 2px);
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--pj-shadow);
}

.pj-consult-form h3 {
    margin: 0 0 1.1rem;
    font-family: var(--pj-font-display);
    font-size: 1.55rem;
    color: var(--pj-navy-deep);
}

.pj-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem 1rem;
    margin-bottom: 1.2rem;
}

.pj-field {
    display: grid;
    gap: 0.4rem;
    margin: 0;
}

.pj-field--full {
    grid-column: 1 / -1;
}

.pj-field span,
.pj-field legend {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--pj-navy-deep);
}

.pj-field em {
    color: #c2410c;
    font-style: normal;
}

.pj-field input,
.pj-field textarea {
    width: 100%;
    border: 1px solid var(--pj-line);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font: inherit;
    color: var(--pj-ink);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pj-field input:focus,
.pj-field textarea:focus {
    border-color: var(--pj-gold);
    box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.18);
}

.pj-field small {
    color: #b91c1c;
    font-size: 0.8rem;
}

.pj-field--full legend {
    margin-bottom: 0.45rem;
    padding: 0;
    width: 100%;
    float: none;
    text-align: left;
}

.pj-time-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    justify-items: stretch;
}

.pj-time-option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    width: 100%;
    margin: 0;
    padding: 0.85rem 0.9rem;
    border: 1px solid var(--pj-line);
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    text-align: left;
    transition: 0.2s ease;
}

.pj-time-option:has(input:checked) {
    border-color: var(--pj-gold);
    background: rgba(196, 163, 90, 0.1);
    box-shadow: 0 0 0 1px var(--pj-gold);
}

.pj-time-option input[type="radio"] {
    appearance: auto;
    width: 16px;
    height: 16px;
    margin: 0;
    flex: 0 0 16px;
    accent-color: var(--pj-navy);
    position: static;
}

.pj-time-option span {
    display: block;
    flex: 1;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--pj-navy-deep);
    text-align: left;
    line-height: 1.35;
}

.pj-alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.92rem;
}

.pj-alert--success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.28);
    color: #166534;
}

.pj-consult-form .pj-btn {
    width: 100%;
}

@media (max-width: 900px) {
    .pj-consult-layout,
    .pj-form-grid,
    .pj-time-options {
        grid-template-columns: 1fr;
    }
}

.pj-section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.pj-eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--pj-gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pj-section__head h2 {
    margin: 0 0 0.7rem;
    font-family: var(--pj-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pj-navy-deep);
    font-weight: 600;
}

.pj-section__head p {
    margin: 0;
    color: var(--pj-muted);
}

.pj-section__cta {
    margin-top: 2rem;
    text-align: center;
}

/* Categories */
.pj-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.pj-category {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--pj-radius);
    isolation: isolate;
    box-shadow: var(--pj-shadow);
}

.pj-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.pj-category::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 22, 48, 0.82), rgba(7, 22, 48, 0.1) 55%);
}

.pj-category__meta {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
    color: var(--pj-white);
}

.pj-category__meta h3 {
    margin: 0 0 0.25rem;
    font-family: var(--pj-font-display);
    font-size: 1.8rem;
    font-weight: 600;
}

.pj-category__meta span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pj-gold-bright);
}

.pj-category:hover img {
    transform: scale(1.08);
}

/* Products */
.pj-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}

.pj-product {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--pj-line);
    border-radius: calc(var(--pj-radius) + 2px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 32, 72, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pj-product__media {
    position: relative;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    background: #e8edf5;
}

.pj-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pj-product:hover .pj-product__media img {
    transform: scale(1.06);
}

.pj-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--pj-navy);
    color: var(--pj-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pj-badge--gold {
    background: linear-gradient(135deg, var(--pj-gold), var(--pj-gold-bright));
    color: var(--pj-navy-deep);
}

.pj-product__quick {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translate(-50%, 12px);
    opacity: 0;
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--pj-navy-deep);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: 0.3s ease;
}

.pj-product:hover .pj-product__quick {
    opacity: 1;
    transform: translate(-50%, 0);
}

.pj-product__body {
    padding: 1rem 1.05rem 1.15rem;
}

.pj-product__cat {
    margin: 0 0 0.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pj-muted);
}

.pj-product__body h3 {
    margin: 0 0 0.85rem;
    font-family: var(--pj-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--pj-navy-deep);
    line-height: 1.25;
}

.pj-product__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.pj-price {
    font-weight: 600;
    color: var(--pj-navy);
    letter-spacing: 0.02em;
}

/* Footer */
.pj-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--pj-navy-deep), var(--pj-navy));
    color: rgba(255, 255, 255, 0.86);
    padding: 3.5rem 0 1.5rem;
}

.pj-footer__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -80px;
    top: -140px;
    border-radius: 50%;
    /* background: radial-gradient(circle, rgba(196, 163, 90, 0.22), transparent 65%); */
    pointer-events: none;
}

.pj-footer__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pj-footer__brand img {
    height: 42px;
    margin-bottom: 0.9rem;
    filter: brightness(0) invert(1);
}

.pj-footer__brand p {
    margin: 0;
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.72);
}

.pj-ig-feed {
    margin-top: 1.25rem;
}

.pj-ig-feed__head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pj-ig-feed__head span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pj-gold-bright);
    font-weight: 500;
}

.pj-ig-feed__head a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(196, 163, 90, 0.45);
}

.pj-ig-feed__head a:hover {
    color: var(--pj-gold-bright);
}

.pj-footer h4 {
    margin: 0 0 1rem;
    font-family: var(--pj-font-display);
    font-size: 1.35rem;
    color: var(--pj-gold-bright);
}

.pj-footer__address {
    font-style: normal;
    margin: 0 0 1rem;
    display: grid;
    gap: 0.28rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    text-align: left;
}

.pj-footer__address span {
    display: block;
}

.pj-footer__company {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.pj-footer__phone {
    margin: 0;
}

.pj-footer__phone a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pj-gold-bright);
    font-weight: 500;
    line-height: 1.4;
}

.pj-footer__phone a:hover {
    color: #fff;
}

.pj-footer__phone i {
    width: 1em;
    text-align: center;
    flex-shrink: 0;
}

.pj-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.pj-footer a:hover {
    color: var(--pj-gold-bright);
}

.pj-footer__bottom {
    position: relative;
    padding-top: 1.25rem;
    text-align: center;
}

.pj-footer__bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.pj-footer__sep {
    margin: 0 0.45rem;
    opacity: 0.55;
}

.pj-footer__bottom a {
    color: var(--pj-gold-bright);
    font-weight: 500;
    white-space: nowrap;
}

.pj-footer__bottom a:hover {
    color: #fff;
}

/* Motion */
@keyframes pjKenBurns {
    from { transform: scale(1.04) translateY(0); }
    to { transform: scale(1.12) translateY(-1.5%); }
}

@keyframes pjRise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pjScrollDot {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(16px); opacity: 1; }
}

.pj-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1100px) {
    .pj-products {
        grid-template-columns: repeat(3, 1fr);
    }

    .pj-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .pj-nav {
        display: none;
    }

    .pj-menu-btn {
        display: flex;
    }

    .pj-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .pj-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .pj-header__inner {
        min-height: 68px;
    }

    .pj-logo img {
        height: 34px;
    }

    .pj-hero {
        min-height: 78vh;
    }

    .pj-hero__brand {
        height: 44px;
    }

    .pj-hero__cta {
        flex-direction: column;
    }

    .pj-hero__cta .pj-btn {
        width: 100%;
    }

    .pj-categories,
    .pj-products {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .pj-category {
        min-height: 220px;
    }

    .pj-category__meta h3 {
        font-size: 1.35rem;
    }

    .pj-product__body h3 {
        font-size: 1.15rem;
    }

    .pj-product__quick {
        opacity: 1;
        transform: translate(-50%, 0);
        font-size: 0.72rem;
        padding: 0.5rem 0.85rem;
    }

    .pj-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1rem;
    }

    .pj-footer__brand {
        grid-column: 1 / -1;
    }

    .pj-footer__address,
    .pj-footer ul {
        font-size: 0.84rem;
    }

    .pj-footer h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pj-categories {
        grid-template-columns: 1fr;
    }

    .pj-products {
        grid-template-columns: 1fr;
    }

    .pj-category {
        min-height: 240px;
    }
}

.pj-link-label {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pj-gold);
}

.pj-product {
    display: block;
    color: inherit;
}

.pj-product__quick {
    border: 0;
}

/* ========== Product Detail ========== */
.pj-detail-page {
    padding: 1.5rem 0 4rem;
}

.pj-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    color: var(--pj-muted);
}

.pj-breadcrumb a:hover {
    color: var(--pj-navy);
}

.pj-detail {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.pj-detail__gallery {
    position: sticky;
    top: 96px;
}

.pj-zoom {
    position: relative;
    z-index: 1;
}

.pj-zoom.is-active {
    z-index: 40;
}

.pj-zoom__stage {
    position: relative;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    border-radius: calc(var(--pj-radius) + 4px);
    background: #e8edf5;
    border: 1px solid var(--pj-line);
    cursor: crosshair;
    touch-action: pan-y;
}

.pj-gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}

.pj-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.pj-zoom__stage img,
.pj-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    display: block;
}

.pj-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--pj-navy-deep);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(10, 32, 72, 0.14);
    transition: 0.2s ease;
}

.pj-gallery-nav:hover {
    background: var(--pj-navy);
    border-color: var(--pj-navy);
    color: #fff;
}

.pj-gallery-nav--prev {
    left: 0.85rem;
}

.pj-gallery-nav--next {
    right: 0.85rem;
}

.pj-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.4rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.pj-gallery-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(20, 58, 120, 0.28);
    cursor: pointer;
    transition: 0.2s ease;
}

.pj-gallery-dots button.is-active {
    width: 22px;
    border-radius: 999px;
    background: var(--pj-gold);
}

.pj-zoom__lens {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(196, 163, 90, 0.95);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 1px rgba(10, 32, 72, 0.15);
    pointer-events: none;
    z-index: 2;
}

.pj-zoom__hint {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--pj-navy-deep);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.pj-zoom__result {
    display: none;
    position: absolute;
    left: calc(100% + 1.25rem);
    top: 0;
    width: min(560px, 46vw);
    height: min(560px, 46vw);
    border-radius: calc(var(--pj-radius) + 4px);
    border: 1px solid var(--pj-line);
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: 0 0;
    box-shadow: 0 18px 48px rgba(10, 32, 72, 0.18);
    z-index: 50;
}

.pj-zoom.is-active .pj-zoom__result {
    display: block;
}

.pj-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.pj-thumb {
    padding: 0;
    border: 1px solid var(--pj-line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    aspect-ratio: 1;
    transition: 0.2s ease;
}

.pj-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pj-thumb.is-active,
.pj-thumb:hover {
    border-color: var(--pj-gold);
    box-shadow: 0 0 0 1px var(--pj-gold);
}

.pj-detail__info h1 {
    margin: 0 0 0.35rem;
    font-family: var(--pj-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pj-navy-deep);
    font-weight: 600;
    line-height: 1.15;
}

.pj-detail__sku {
    margin: 0 0 0.85rem;
    color: var(--pj-muted);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.pj-detail__lead {
    margin: 0 0 1.25rem;
    color: var(--pj-muted);
    max-width: 36rem;
}

.pj-detail__price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.55rem 1rem;
    margin-bottom: 1.25rem;
}

.pj-price--lg {
    font-size: 1.75rem;
    color: var(--pj-navy);
}

.pj-detail__mrp {
    font-size: 0.95rem;
    color: var(--pj-muted);
    text-decoration: line-through;
}

.pj-detail__purity {
    font-size: 0.9rem;
    color: var(--pj-gold);
    font-weight: 500;
}

.pj-option {
    margin-bottom: 1.15rem;
}

.pj-option__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.pj-option__head h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pj-navy-deep);
}

.pj-option__head span {
    font-size: 0.88rem;
    color: var(--pj-gold);
    font-weight: 600;
}

.pj-option__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.pj-gold-swatch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--pj-line);
    border-radius: 999px;
    background: #fff;
    color: var(--pj-navy-deep);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.pj-gold-swatch:hover,
.pj-gold-swatch.is-active {
    border-color: var(--pj-navy);
    background: rgba(20, 58, 120, 0.06);
    color: var(--pj-navy);
}

.pj-gold-swatch.is-active {
    box-shadow: inset 0 0 0 1px var(--pj-navy);
}

.pj-gold-swatch__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.pj-gold-swatch__dot--yellow {
    background: linear-gradient(145deg, #f6e27a, #d4a017);
}

.pj-gold-swatch__dot--rose {
    background: linear-gradient(145deg, #f0c2b0, #c98672);
}

.pj-gold-swatch__dot--white {
    background: linear-gradient(145deg, #f5f5f5, #c8c8c8);
}

.pj-size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
    gap: 0.45rem;
    max-width: 28rem;
}

.pj-size-btn {
    min-height: 42px;
    border: 1px solid var(--pj-line);
    border-radius: 10px;
    background: #fff;
    color: var(--pj-navy-deep);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.pj-size-btn:hover {
    border-color: var(--pj-gold);
    color: var(--pj-navy);
}

.pj-size-btn.is-active {
    background: var(--pj-navy);
    border-color: var(--pj-navy);
    color: #fff;
}

.pj-breakup {
    margin-bottom: 1.4rem;
    border: 1px solid var(--pj-line);
    border-radius: var(--pj-radius);
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.pj-breakup__head {
    padding: 1rem 1.1rem 0.55rem;
}

.pj-breakup__head h2 {
    margin: 0;
    font-family: var(--pj-font-display);
    font-size: 1.5rem;
    color: var(--pj-navy-deep);
}

.pj-breakup__head p {
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
    color: var(--pj-muted);
}

.pj-purity-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.1rem 0.9rem;
}

.pj-purity-tabs button {
    min-width: 64px;
    min-height: 38px;
    border: 1px solid var(--pj-line);
    border-radius: 999px;
    background: #fff;
    color: var(--pj-navy-deep);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.pj-purity-tabs button.is-active,
.pj-purity-tabs button:hover {
    background: var(--pj-navy);
    border-color: var(--pj-navy);
    color: #fff;
}

.pj-breakup-panel {
    display: none;
}

.pj-breakup-panel.is-active {
    display: block;
}

.pj-breakup-table {
    width: 100%;
    border-collapse: collapse;
}

.pj-breakup-table td {
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--pj-line);
    vertical-align: top;
    font-size: 0.9rem;
    color: var(--pj-navy-deep);
}

.pj-breakup-table td:first-child {
    width: 48%;
    color: var(--pj-ink);
    font-weight: 500;
}

.pj-breakup-table td:nth-child(2) {
    width: 30%;
    color: var(--pj-muted);
}

.pj-breakup-table td:last-child {
    width: 22%;
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
}

.pj-breakup-table tr.is-sale td {
    background: rgba(196, 163, 90, 0.1);
    color: var(--pj-navy);
    font-weight: 700;
}

.pj-breakup-table tr.is-mrp td {
    background: rgba(20, 58, 120, 0.04);
    color: var(--pj-muted);
}

.pj-price-old {
    margin-right: 0.35rem;
    color: var(--pj-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.pj-offer-tag {
    color: #b45309;
    font-weight: 600;
}

@media (max-width: 720px) {
    .pj-breakup-table,
    .pj-breakup-table tbody,
    .pj-breakup-table tr,
    .pj-breakup-table td {
        display: block;
        width: 100%;
    }

    .pj-breakup-table tr {
        padding: 0.85rem 1rem;
        border-top: 1px solid var(--pj-line);
    }

    .pj-breakup-table td {
        border-top: 0;
        padding: 0.15rem 0;
        text-align: left;
        white-space: normal;
    }

    .pj-breakup-table td:last-child {
        text-align: left;
        margin-top: 0.25rem;
        font-size: 1rem;
    }

    .pj-breakup-table td:nth-child(2):empty {
        display: none;
    }
}

.pj-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.pj-btn--outline {
    background: transparent;
    border-color: var(--pj-navy);
    color: var(--pj-navy);
}

.pj-btn--outline:hover {
    background: var(--pj-navy);
    color: #fff;
}

.pj-btn--whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.pj-btn--whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    color: #fff;
}

.pj-detail__actions .pj-btn {
    gap: 0.45rem;
}

.pj-detail__actions .pj-btn i {
    font-size: 1.05em;
}

.pj-trust {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 1rem 1.1rem;
    display: grid;
    gap: 0.7rem;
    border-radius: var(--pj-radius);
    border: 1px solid var(--pj-line);
    background: linear-gradient(135deg, rgba(20, 58, 120, 0.05), rgba(196, 163, 90, 0.08));
}

.pj-trust li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--pj-navy-deep);
    font-weight: 500;
}

.pj-trust i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(196, 163, 90, 0.18);
    color: var(--pj-navy);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pj-assurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.pj-assurance article {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.8);
}

.pj-assurance h3 {
    margin: 0 0 0.45rem;
    font-family: var(--pj-font-display);
    font-size: 1.25rem;
    color: var(--pj-navy-deep);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.pj-assurance h3 i {
    color: var(--pj-gold);
    font-size: 0.95rem;
}

.pj-assurance p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--pj-muted);
}

.pj-specs,
.pj-related {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.pj-section__head--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.pj-specs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pj-specs__card {
    padding: 1.2rem;
    border-radius: var(--pj-radius);
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 28px rgba(10, 32, 72, 0.05);
}

.pj-specs__card h3 {
    margin: 0 0 0.9rem;
    font-family: var(--pj-font-display);
    font-size: 1.4rem;
    color: var(--pj-navy-deep);
}

.pj-specs__card dl {
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.pj-specs__card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px dashed var(--pj-line);
    padding-bottom: 0.55rem;
}

.pj-specs__card dt {
    color: var(--pj-muted);
    font-size: 0.86rem;
}

.pj-specs__card dd {
    margin: 0;
    font-weight: 500;
    color: var(--pj-navy-deep);
    text-align: right;
    font-size: 0.9rem;
}

/* Mobile price cards (hidden on desktop) */
.pj-breakup-cards {
    display: none;
    padding: 0 0.9rem 1rem;
    gap: 0.75rem;
}

.pj-breakup-card {
    width: 100%;
    text-align: left;
    border: 1px solid var(--pj-line);
    border-radius: 14px;
    background: #fff;
    padding: 0.9rem 1rem;
    cursor: pointer;
    transition: 0.2s ease;
    color: inherit;
    font: inherit;
}

.pj-breakup-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.pj-breakup-card__purity {
    font-family: var(--pj-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--pj-navy-deep);
}

.pj-breakup-card__total {
    font-weight: 700;
    color: var(--pj-navy);
    font-size: 1.05rem;
}

.pj-breakup-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.pj-breakup-card li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.86rem;
    color: var(--pj-muted);
    border-bottom: 1px dashed var(--pj-line);
    padding-bottom: 0.35rem;
}

.pj-breakup-card li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.pj-breakup-card li strong {
    color: var(--pj-navy-deep);
    font-weight: 600;
}

.pj-breakup-card.is-selected {
    border-color: var(--pj-gold);
    box-shadow: 0 0 0 1px var(--pj-gold), 0 10px 24px rgba(10, 32, 72, 0.08);
    background: linear-gradient(180deg, rgba(196, 163, 90, 0.08), #fff);
}

.pj-zoom__hint-mobile {
    display: none;
}

.pj-zoom__stage img,
.pj-gallery-slide img {
    transition: transform 0.25s ease;
}

.pj-related .pj-products {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .pj-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pj-detail__gallery {
        position: static;
    }

    .pj-zoom.is-active .pj-zoom__result {
        display: none;
    }

    .pj-zoom__hint-desktop {
        display: none;
    }

    .pj-zoom__hint-mobile {
        display: inline;
    }

    .pj-table-wrap {
        display: none;
    }

    .pj-breakup-cards {
        display: grid;
    }

    .pj-related .pj-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .pj-detail-page {
        padding: 1rem 0 3rem;
    }

    .pj-specs__grid,
    .pj-assurance {
        grid-template-columns: 1fr;
    }

    .pj-detail__actions {
        position: sticky;
        bottom: 0;
        z-index: 20;
        margin: 0 -0.25rem 1.25rem;
        padding: 0.75rem 0.25rem;
        background: linear-gradient(180deg, rgba(243, 245, 248, 0), rgba(243, 245, 248, 0.96) 28%, rgba(243, 245, 248, 0.98));
    }

    .pj-detail__actions .pj-btn {
        flex: 1 1 calc(50% - 0.4rem);
        min-width: 0;
    }

    .pj-related .pj-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .pj-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        gap: 0.3rem;
    }

    .pj-zoom__stage {
        aspect-ratio: 1 / 1;
        border-radius: 14px;
    }

    .pj-gallery-nav {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .pj-gallery-nav--prev {
        left: 0.55rem;
    }

    .pj-gallery-nav--next {
        right: 0.55rem;
    }

    .pj-gallery-dots {
        bottom: 0.65rem;
    }

    .pj-zoom__hint {
        left: 0.7rem;
        bottom: 2.4rem;
        font-size: 0.72rem;
        padding: 0.4rem 0.7rem;
    }

    .pj-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .pj-thumb {
        border-radius: 10px;
    }

    .pj-detail__info h1 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .pj-price--lg {
        font-size: 1.45rem;
    }

    .pj-breakup__head {
        padding: 0.9rem 0.95rem 0.55rem;
    }

    .pj-breakup__head h2 {
        font-size: 1.3rem;
    }

    .pj-trust {
        padding: 0.9rem;
        gap: 0.6rem;
    }

    .pj-trust li {
        font-size: 0.88rem;
        align-items: flex-start;
    }

    .pj-assurance article {
        padding: 0.9rem;
    }

    .pj-specs__card {
        padding: 1rem;
    }

    .pj-specs__card dl > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .pj-specs__card dd {
        text-align: left;
    }

    .pj-related .pj-products {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .pj-detail-page .container {
        width: min(100% - 1.25rem, 1180px);
    }

    .pj-detail__actions .pj-btn {
        flex: 1 1 100%;
    }

    .pj-related .pj-products {
        grid-template-columns: 1fr;
    }

    .pj-breakup-card__top {
        flex-wrap: wrap;
    }
}

/* ========== Product List / Category ========== */
.pj-list-page {
    padding: 0;
}

.pj-list-hero {
    margin-bottom: 1.75rem;
}

.pj-list-hero h1 {
    margin: 0 0 0.45rem;
    font-family: var(--pj-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pj-navy-deep);
    font-weight: 600;
}

.pj-list-hero p {
    margin: 0;
    color: var(--pj-muted);
    max-width: 36rem;
}

.pj-list-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.75rem;
    align-items: start;
}

.pj-filters {
    position: sticky;
    top: 96px;
    padding: 1.15rem;
    border: 1px solid var(--pj-line);
    border-radius: var(--pj-radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 28px rgba(10, 32, 72, 0.05);
}

.pj-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--pj-line);
}

.pj-filters__head h2 {
    margin: 0;
    font-family: var(--pj-font-display);
    font-size: 1.5rem;
    color: var(--pj-navy-deep);
}

.pj-filters__close {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.2rem;
    color: var(--pj-navy);
    cursor: pointer;
}

.pj-filter-group {
    margin-bottom: 1.2rem;
}

.pj-filter-group h3 {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pj-gold);
    font-weight: 600;
}

.pj-filter-group label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    color: var(--pj-navy-deep);
    cursor: pointer;
}

.pj-filter-group input {
    accent-color: var(--pj-navy);
    width: 16px;
    height: 16px;
}

.pj-filters__reset {
    width: 100%;
    margin-top: 0.25rem;
}

.pj-filters-backdrop {
    display: none;
}

.pj-list-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--pj-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
}

.pj-list-count {
    margin: 0;
    color: var(--pj-muted);
    font-size: 0.92rem;
}

.pj-list-count strong {
    color: var(--pj-navy-deep);
}

.pj-list-toolbar__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.pj-filters-toggle {
    display: none;
    min-height: 42px;
    padding: 0.55rem 1rem;
    gap: 0.4rem;
}

.pj-sort {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--pj-muted);
}

.pj-sort select {
    min-height: 42px;
    border: 1px solid var(--pj-line);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    background: #fff;
    color: var(--pj-navy-deep);
    font: inherit;
    cursor: pointer;
}

.pj-products--list {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
    .pj-products--list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 920px) {
    .pj-list-layout {
        grid-template-columns: 1fr;
    }

    .pj-filters-toggle {
        display: inline-flex;
    }

    .pj-filters {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1200;
        width: min(320px, 88vw);
        max-height: 100vh;
        overflow-y: auto;
        border-radius: 0;
        transform: translateX(-105%);
        transition: transform 0.3s ease;
        box-shadow: 0 20px 50px rgba(10, 32, 72, 0.25);
    }

    .pj-filters.is-open {
        transform: translateX(0);
    }

    .pj-filters__close {
        display: block;
    }

    .pj-filters-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1150;
        background: rgba(10, 32, 72, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .pj-filters-backdrop.is-open {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 720px) {
    .pj-list-page {
        padding: 0;
    }

    .pj-list-toolbar {
        padding: 0.75rem;
    }

    .pj-sort span {
        display: none;
    }

    .pj-products--list {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pj-products--list {
        grid-template-columns: 1fr;
    }

    .pj-list-toolbar__right {
        width: 100%;
    }

    .pj-filters-toggle,
    .pj-sort,
    .pj-sort select {
        flex: 1;
    }
}

.pj-categories-page {
    padding: 0 0 0;
}

.pj-list-page {
    padding: 0;
}

.pj-list-page .pj-breadcrumb,
.pj-categories-page .pj-breadcrumb {
    margin-bottom: 1.5rem;
}

.pj-categories--page {
    margin-top: 0.5rem;
}

.pj-category-group + .pj-category-group {
    margin-top: 3rem;
}

.pj-category-group__head {
    margin-bottom: 1.25rem;
}

.pj-category-group__head h2 {
    margin: 0;
    font-family: var(--pj-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--pj-navy-deep);
    font-weight: 600;
}

.pj-cat-carousel {
    position: relative;
}

.pj-cat-carousel__arrow {
    display: none;
}

.pj-categories--page {
    grid-template-columns: repeat(5, 1fr);
}

.pj-categories--men {
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
}

@media (max-width: 1100px) {
    .pj-categories--page {
        grid-template-columns: repeat(3, 1fr);
    }

    .pj-categories--men {
        max-width: none;
    }
}

@media (max-width: 860px) {
    .pj-cat-carousel {
        margin-inline: -0.25rem;
    }

    .pj-cat-carousel__arrow {
        display: grid;
        place-items: center;
        position: absolute;
        top: 42%;
        z-index: 4;
        width: 40px;
        height: 40px;
        border: 1px solid var(--pj-line);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.96);
        color: var(--pj-navy);
        box-shadow: 0 8px 20px rgba(10, 32, 72, 0.14);
        cursor: pointer;
        transform: translateY(-50%);
    }

    .pj-cat-carousel__arrow--prev {
        left: 0.15rem;
    }

    .pj-cat-carousel__arrow--next {
        right: 0.15rem;
    }

    .pj-cat-carousel__arrow:disabled {
        opacity: 0.35;
        cursor: default;
    }

    .pj-categories--page,
    .pj-categories--men,
    .pj-cat-carousel [data-cat-track] {
        display: flex;
        gap: 0.85rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 0.15rem 2.4rem 0.5rem;
        max-width: none;
        scrollbar-width: none;
    }

    .pj-categories--page::-webkit-scrollbar,
    .pj-categories--men::-webkit-scrollbar,
    .pj-cat-carousel [data-cat-track]::-webkit-scrollbar {
        display: none;
    }

    .pj-categories--page .pj-category,
    .pj-categories--men .pj-category,
    .pj-cat-carousel [data-cat-track] .pj-category,
    .pj-cat-carousel [data-cat-track] .pj-product {
        flex: 0 0 78%;
        min-height: 260px;
        scroll-snap-align: start;
    }

    .pj-cat-carousel [data-cat-track].pj-products .pj-product {
        min-height: 0;
    }

    .pj-cat-carousel [data-cat-track].pj-products .pj-product__quick {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ========== About ========== */
.pj-about-hero {
    position: relative;
    min-height: 42vh;
    display: grid;
    place-items: end start;
    overflow: hidden;
    color: #fff;
}

.pj-about-hero__media,
.pj-about-hero__veil {
    position: absolute;
    inset: 0;
}

.pj-about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pj-about-hero__veil {
    background: linear-gradient(120deg, rgba(7, 22, 48, 0.78), rgba(20, 58, 120, 0.4));
}

.pj-about-hero__content {
    position: relative;
    z-index: 1;
    padding: 5.5rem 0 2.5rem;
}

.pj-about-hero h1 {
    margin: 0 0 0.6rem;
    font-family: var(--pj-font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
}

.pj-about-hero p {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.88);
}

.pj-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.pj-about-copy h2 {
    margin: 0 0 1rem;
    font-family: var(--pj-font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--pj-navy-deep);
}

.pj-about-copy p {
    margin: 0 0 1rem;
    color: var(--pj-muted);
}

.pj-about-image {
    border-radius: calc(var(--pj-radius) + 4px);
    overflow: hidden;
    box-shadow: var(--pj-shadow);
    border: 1px solid var(--pj-line);
}

.pj-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.05;
}

.pj-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pj-about-values article {
    padding: 1.25rem;
    border-radius: var(--pj-radius);
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.84);
}

.pj-about-values h3 {
    margin: 0 0 0.5rem;
    font-family: var(--pj-font-display);
    font-size: 1.45rem;
    color: var(--pj-navy-deep);
}

.pj-about-values p {
    margin: 0;
    color: var(--pj-muted);
    font-size: 0.94rem;
}

.pj-about-cta {
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 860px) {
    .pj-about-grid,
    .pj-about-values {
        grid-template-columns: 1fr;
    }
}

/* ========== Contact ========== */
.pj-contact-hero {
    min-height: 48vh;
}

.pj-contact-hero .pj-about-hero__veil {
    background: linear-gradient(115deg, rgba(7, 22, 48, 0.84) 12%, rgba(20, 58, 120, 0.45) 55%, rgba(7, 22, 48, 0.7) 100%);
}

.pj-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-bottom: 2rem;
}

.pj-contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.pj-contact-map-wrap {
    padding: 1.4rem;
    border-radius: calc(var(--pj-radius) + 2px);
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--pj-shadow);
}

.pj-contact-map-wrap h3 {
    margin: 0 0 1rem;
    font-family: var(--pj-font-display);
    font-size: 1.55rem;
    color: var(--pj-navy-deep);
}

.pj-contact-map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--pj-line);
    background: #e8edf5;
}

.pj-contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pj-contact-map-address {
    margin: 0.9rem 0 0;
    color: var(--pj-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.pj-contact-card {
    padding: 1.4rem 1.3rem;
    border-radius: var(--pj-radius);
    border: 1px solid var(--pj-line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 28px rgba(10, 32, 72, 0.05);
}

.pj-contact-card h2 {
    margin: 0 0 0.85rem;
    font-family: var(--pj-font-display);
    font-size: 1.55rem;
    color: var(--pj-navy-deep);
}

.pj-contact-card address,
.pj-contact-address {
    font-style: normal;
    display: grid;
    gap: 0.3rem;
    line-height: 1.45;
    color: var(--pj-muted);
    text-align: left;
}

.pj-contact-address span {
    display: block;
}

.pj-contact-company {
    color: var(--pj-navy-deep);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.pj-contact-card address strong {
    color: var(--pj-navy-deep);
}

.pj-contact-phone,
.pj-contact-social {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--pj-navy);
    font-weight: 500;
}

.pj-contact-phone:hover,
.pj-contact-social:hover {
    color: var(--pj-gold);
}

.pj-contact-note {
    margin: 0.75rem 0 0;
    color: var(--pj-muted);
    font-size: 0.9rem;
}

.pj-contact-card p {
    margin: 0 0 0.7rem;
}

@media (max-width: 860px) {
    .pj-contact-grid,
    .pj-contact-main {
        grid-template-columns: 1fr;
    }

    .pj-contact-map {
        aspect-ratio: 16 / 11;
    }
}
