@font-face {
    font-family: 'BRCandor';
    src: url('../fonts/BRCandor-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'BRCandor';
    src: url('../fonts/BRCandor-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --cream: #f2faf7;
    --dark: #0f1a16;
    --mid: #163328;
    --gold: #1aab8a;
    --gold-light: #22ccaa;
    --navy-1: #0f1a16;
    --navy-2: #163328;
    --navy-3: #1d4035;
    --teal: #17A493;
    --teal-light: #1fbfac;
    --teal-glow: rgba(23, 164, 147, 0.18);
    --orange: #17A493;
    --orange-light: #1fbfac;
    --orange-glow: rgba(23, 164, 147, 0.2);
    --nav-h: 56px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: 'BRCandor', sans-serif;
    background: var(--navy-1);
    color: var(--cream);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(15, 26, 22, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(23, 164, 147, 0.15);
}

.nav-burger {
    display: none;
}

.nav-drawer {
    display: none;
}

.nav-logo {
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 2px solid var(--teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'BRCandor', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -0.02em;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-main {
    font-family: 'BRCandor', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #FEFEFE;
    line-height: 1;
}

.logo-main em {
    font-style: normal;
    color: #ffffff;
}

.logo-sub {
    font-family: 'BRCandor', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(254, 254, 254, 0.5);
    padding-left: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-links a {
    color: rgba(240, 237, 230, 0.65);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
    background: rgba(23, 164, 147, 0.12);
}

.nav-enquire-btn {
    background: var(--teal) !important;
    color: #f0ede6 !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    transition: all 0.3s !important;
    white-space: nowrap;
}

.nav-enquire-btn:hover {
    background: var(--teal-light) !important;
    color: #f0ede6 !important;
}

.nav-logo-desktop {
    display: block;
}

@media (max-width: 900px) {
    .nav-logo-desktop {
        display: none;
    }

    .nav-top-row {
        display: flex !important;
    }

    .nav-enquire-li {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --nav-h: 104px;
    }

    nav {
        height: auto;
        min-height: var(--nav-h);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: 0;
        gap: 0;
    }

    .nav-top-row {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        height: 46px;
        flex-shrink: 0;
        border-bottom: 1px solid rgba(23, 164, 147, 0.2);
    }

    .nav-links {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 2px;
        padding: 4px 8px;
        height: auto;
        overflow: visible;
    }

    .nav-links li {
        flex-shrink: 0;
    }

    .nav-links a {
        font-size: 0.65rem;
        padding: 4px 7px;
    }

    .nav-enquire-btn {
        padding: 6px 14px !important;
        font-size: 0.68rem !important;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.48rem;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-h: 96px;
    }

    nav {
        min-height: var(--nav-h);
    }

    .nav-top-row {
        height: 42px;
        padding: 0 12px;
        border-bottom: 1px solid rgba(23, 164, 147, 0.2);
    }

    .nav-links {
        padding: 3px 6px;
        gap: 1px;
    }

    .nav-links a {
        font-size: 0.62rem;
        padding: 4px 6px;
    }

    .nav-enquire-btn {
        padding: 5px 12px !important;
        font-size: 0.62rem !important;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.44rem;
    }
}

/* ── SECTIONS ── */
section {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

section>*:not(.home-bg):not(.home-grid-overlay):not(.scroll-indicator) {
    position: relative;
    z-index: 2;
}

/* ── LANDING PAGE ── */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-1);
}

.home-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 72% 45%, rgba(23, 164, 147, 0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 55% at 18% 75%, rgba(23, 164, 147, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(15, 26, 22, 0.9) 0%, transparent 70%);
}

.home-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(23, 164, 147, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 164, 147, 0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(23, 164, 147, 0.45);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-family: 'BRCandor', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(240, 237, 230, 0.65);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s ease both;
}

.btn-primary {
    background: var(--teal);
    color: #0f1a16;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'BRCandor', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(23, 164, 147, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(240, 237, 230, 0.25);
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'BRCandor', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--teal);
    color: var(--gold);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s 0.8s ease both;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.4);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(23, 164, 147, 0.9), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ── PRODUCT PAGES ── */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    padding-top: var(--nav-h);
}

.product-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.product-visual-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
}

.product-icon-display {
    position: relative;
    z-index: 2;
    font-size: 180px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.product-img-wrap {
    position: relative;
    z-index: 2;
    width: 82%;
    height: 78%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(23, 164, 147, 0.12);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.product-img-wrap:hover .product-img {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .product-img-wrap {
        position: absolute;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: none;
        border-radius: 0;
        box-shadow: none;
    }
}

.product-number {
    position: absolute;
    bottom: 40px;
    left: 48px;
    font-family: 'BRCandor', sans-serif;
    font-size: 7rem;
    font-weight: 700;
    opacity: 0.06;
    line-height: 1;
    color: var(--cream);
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 56px 32px 52px;
    overflow: hidden;
    height: 100%;
    gap: 0;
}

.product-tag {
    display: none;
}

.product-sku {
    display: inline-block;
    font-family: 'BRCandor', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    width: fit-content;
}

.product-composition {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    background: rgba(23, 164, 147, 0.06);
    border: 1px solid rgba(23, 164, 147, 0.18);
    border-radius: 10px;
}

.composition-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    white-space: nowrap;
    flex-shrink: 0;
}

.composition-value {
    font-size: 0.82rem;
    color: rgba(242, 250, 247, 0.72);
    line-height: 1.4;
}

.product-name {
    font-family: 'BRCandor', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 14px;
}

.product-tagline {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(240, 237, 230, 0.5);
    font-style: italic;
    margin-bottom: 18px;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(240, 237, 230, 0.72);
    margin-bottom: 22px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-chip {
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(23, 164, 147, 0.07);
    border: 1px solid rgba(23, 164, 147, 0.2);
    color: rgba(240, 237, 230, 0.8);
}

.variants-section {
    margin-bottom: 20px;
}

.variants-title {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.4);
    margin-bottom: 10px;
}

.variants-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.variant-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(23, 164, 147, 0.05);
    border: 1px solid rgba(23, 164, 147, 0.15);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: rgba(240, 237, 230, 0.7);
}

.variant-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    background: var(--teal) !important;
    color: #0f1a16 !important;
    font-family: 'BRCandor', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: 4px;
}

.product-enquire-btn:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(23, 164, 147, 0.35);
}

/* ── ENQUIRY MODAL ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 10, 8, 0.85);
    backdrop-filter: blur(8px);
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #163328;
    border: 1px solid rgba(23, 164, 147, 0.3);
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    padding: 48px;
    position: relative;
    margin: auto;
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@media (max-width: 767px) {
    .modal-overlay {
        padding: 16px;
        align-items: flex-start;
    }

    .modal {
        padding: 24px 18px 32px;
        border-radius: 16px;
        margin: 0 auto;
        width: 100%;
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(23, 164, 147, 0.08);
    border: none;
    color: var(--cream);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(23, 164, 147, 0.15);
}

.modal-title {
    font-family: 'BRCandor', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: rgba(240, 237, 230, 0.45);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.45);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(23, 164, 147, 0.05);
    border: 1px solid rgba(23, 164, 147, 0.18);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--cream);
    font-family: 'BRCandor', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group select option {
    background: #163328;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-submit {
    width: 100%;
    background: var(--teal);
    color: #0f1a16;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: 'BRCandor', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-msg {
    text-align: center;
    padding: 32px 0;
    display: none;
}

.success-msg .check {
    font-size: 3rem;
    margin-bottom: 16px;
}

.success-msg h3 {
    font-family: 'BRCandor', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.success-msg p {
    color: rgba(240, 237, 230, 0.6);
}

/* ── COLOUR BUTTONS ── */
.color-btn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.color-btn {
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(23, 164, 147, 0.25);
    background: rgba(23, 164, 147, 0.06);
    color: rgba(242, 250, 247, 0.7);
    font-family: 'BRCandor', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.color-btn:hover {
    border-color: rgba(23, 164, 147, 0.5);
    background: rgba(23, 164, 147, 0.12);
    color: var(--cream);
}

.color-btn.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #0f1a16;
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(23, 164, 147, 0.2);
}


/* ── PRODUCT SLIDER ── */
.product-slider {
    position: relative;
    width: 82%;
    height: 78%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(23, 164, 147, 0.12);
    z-index: 2;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slide .product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--navy-1);
    will-change: transform;
    image-rendering: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 26, 22, 0.6);
    border: 1px solid rgba(23, 164, 147, 0.3);
    color: var(--cream);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(6px);
}

.slider-btn:hover {
    background: rgba(23, 164, 147, 0.25);
    border-color: var(--teal);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(242, 250, 247, 0.35);
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid rgba(242, 250, 247, 0.3);
}

.slider-dot.active {
    background: var(--teal);
    border-color: var(--teal);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .product-slider {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .slider-track {
        width: 100%;
        height: 100%;
    }

    .slide {
        min-width: 100%;
        width: 100%;
        height: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide .product-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        padding: 4px;
    }

    .nav-burger {
        display: flex;
    }

    .product-section {
        grid-template-columns: 1fr 1fr;
    }

    .product-info {
        padding: 20px 28px 20px 24px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 4rem);
    }
}

@media (max-width: 767px) {
    :root {
        --nav-h: 56px;
    }

    nav {
        padding: 0 16px;
    }

    .nav-links {
        padding-bottom: 0.5rem;
    }

    .nav-burger {
        display: flex;
    }

    .product-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        padding-top: var(--nav-h);
        height: 100vh;
        overflow: hidden;
    }

    .product-visual {
        height: 38vh;
        min-height: 160px;
    }

    .product-number {
        font-size: 4rem;
        bottom: 8px;
        left: 16px;
    }

    .product-info {
        height: calc(100vh - var(--nav-h) - 38vh);
        padding: 12px 18px 12px;
        overflow: hidden;
        justify-content: flex-start;
    }

    .product-tag {
        margin-bottom: 6px;
        padding: 4px 12px;
        font-size: 0.65rem;
    }

    .product-name {
        font-size: clamp(1.2rem, 5vw, 1.7rem);
        margin-bottom: 4px;
    }

    .product-tagline {
        font-size: 0.78rem;
        margin-bottom: 6px;
    }

    .product-description {
        font-size: 0.78rem;
        line-height: 1.5;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-features {
        gap: 4px;
        margin-bottom: 8px;
    }

    .feature-chip {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .variants-section {
        margin-bottom: 8px;
    }

    .variants-title {
        font-size: 0.62rem;
        margin-bottom: 6px;
    }

    .variant-pill {
        font-size: 0.7rem;
        padding: 3px 9px;
    }

    .product-enquire-btn {
        padding: 10px 20px;
        font-size: 0.82rem;
    }

    #home {
        padding: 0;
        padding-top: var(--nav-h);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 28px;
    }

    .hero-ctas {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    #home::before,
    #home::after {
        display: none;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 380px) {
    :root {
        --nav-h: 96px;
    }

    .product-visual {
        height: 32vh;
    }

    .product-info {
        height: calc(100vh - var(--nav-h) - 32vh);
    }

    .product-description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}