/* ==========================================================================
   Eliea Cosmetics — Professionals — Shared Design System
   Maison-minimal: wine, white, and silence. No black, no ornament.
   ========================================================================== */

:root {
    --color-ink: #7b175d;
    --color-ink-soft: #5c1146;
    --color-primary: #7b175d;
    /* alias for inline style="color: var(--color-primary)" usages */

    --color-paper: #ffffff;
    --color-paper-soft: #f7f7f5;
    --color-offwhite: #f0f0ee;

    --color-wine: #7b175d;
    --color-gold: #7b175d;
    --color-gold-light: #ffffff;

    --color-muted: #767676;
    --color-secondary: #767676;
    --color-text-light: #ffffff;

    --color-bg-body: var(--color-paper);
    --color-card-bg: var(--color-paper);
    --color-card: var(--color-paper);
    --color-border: #e2e2e0;
    --color-line: rgba(123, 23, 93, 0.16);

    --shadow-sm: none;
    --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);

    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;

    --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--color-ink);
    background: var(--color-paper);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 0;
    font-weight: 400;
}

body > h1, body > h2, section h2, header h1 {
    color: var(--color-ink);
}

a { color: inherit; }

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

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

/* ---------------------------------------------------------------------- */
/* Navigation                                                              */
/* ---------------------------------------------------------------------- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #ffffff;
    border-bottom: 1px solid var(--color-line);
    transition: var(--transition);
}

.site-nav.is-scrolled {
    padding: 1rem 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.site-nav.is-scrolled .logo-img {
    height: 28px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu a {
    text-decoration: none;
    color: var(--color-ink);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--color-ink);
    transition: width 0.35s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-ink);
    display: block;
    transition: var(--transition);
}

.nav-bag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--color-ink);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-bag:hover {
    opacity: 0.5;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ---------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2.6rem;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: var(--transition);
    border: 1px solid var(--color-ink);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-ink);
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-ink);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--color-ink);
    border-color: #ffffff;
}

/* ---------------------------------------------------------------------- */
/* Hero — full-bleed, monochrome                                           */
/* ---------------------------------------------------------------------- */
.hero {
    padding: 6rem 2rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../hero.jpeg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--color-ink);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(60% 70% at 50% 45%, rgba(20, 4, 14, 0.15) 0%, rgba(20, 4, 14, 0.4) 100%);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-cue span {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-scroll-cue .scroll-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
    animation: scrollPulse 2.4s ease-in-out infinite;
    letter-spacing: normal;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.hero-inner {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.6rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.hero-inner h1 {
    color: #ffffff;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-inner h1 em {
    font-style: italic;
    color: #ffffff;
    font-weight: 400;
}

.hero-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 1.7rem 0 1.8rem;
}

.hero-rule .line {
    width: 64px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-rule .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.hero-inner p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2.1rem;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.hero-stats .sep {
    color: rgba(255, 255, 255, 0.4);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

/* ---------------------------------------------------------------------- */
/* Section / Product Grid                                                  */
/* ---------------------------------------------------------------------- */
.section {
    padding: 4.5rem 2rem 6rem;
    max-width: 1320px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-ink);
}

.section-heading p {
    color: var(--color-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0.9rem auto 0;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--color-ink);
}

.shop-filters {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    color: var(--color-muted);
    padding: 0 0 4px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

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

.filter-btn.active {
    color: var(--color-ink);
    border-bottom-color: var(--color-ink);
}

.grid-count {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-muted);
}

.grid-count span {
    color: var(--color-ink);
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 1px;
    background: var(--color-line);
    border-top: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
}

.product-card.is-filtered-out {
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: opacity, transform;
}

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

.product-card {
    background: var(--color-paper);
    border: none;
    padding: 0;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-decoration: none;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: none;
}

.product-card:not(.upcoming):active {
    opacity: 0.85;
}

.p-image {
    width: 42%;
    flex-shrink: 0;
    background: var(--color-offwhite);
    position: relative;
    overflow: hidden;
}

.p-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .p-image img {
    transform: scale(1.045);
}

/* Hover image swap: when a card has a .p-image-alt, it crossfades in on hover. */
.p-image.has-alt img {
    position: absolute;
    inset: 0;
    transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-image .p-image-alt {
    opacity: 0;
}

.product-card:hover .p-image-primary {
    opacity: 0;
}

.product-card:hover .p-image-alt {
    opacity: 1;
}

.p-quick-buy {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .p-quick-buy {
    opacity: 1;
    transform: translateY(0);
}

.p-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: 2.4rem 2.4rem 2.2rem;
    position: relative;
}

.p-meta-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    margin-bottom: 0.7rem;
}

.p-cat {
    color: var(--color-muted);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
}

.p-stock {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
}

.p-stock i {
    font-size: 0.35rem;
    color: var(--color-ink);
}

.p-title {
    font-size: 1.55rem;
    line-height: 1.25;
    margin: 0 0 0.9rem;
    font-weight: 400;
    color: var(--color-ink);
}

.p-divider {
    display: none;
}

.p-desc {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--color-muted);
    margin: 0 0 1.5rem;
    font-weight: 300;
    max-width: 30ch;
}

.p-cta {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--color-ink);
}

.p-cta i {
    transition: transform 0.3s ease;
    font-size: 0.6rem;
}

.product-card:hover .p-cta i {
    transform: translateX(4px);
}

.p-launching {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: auto;
}

.product-card.upcoming {
    cursor: default;
}

.product-card.upcoming .p-image img {
    filter: grayscale(0.5) brightness(0.8);
}

.upcoming-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-ink);
    color: #fff;
    padding: 6px 12px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.58rem;
    z-index: 2;
    white-space: nowrap;
}

/* ---------------------------------------------------------------------- */
/* Feature Strip                                                           */
/* ---------------------------------------------------------------------- */
.feature-strip {
    background: transparent;
    border: none;
    border-top: 1px solid var(--color-ink);
    padding: 3rem 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
}

.feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 0;
    border: none;
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin: 0 0 0.3rem;
    font-size: 0.8rem;
    color: var(--color-ink);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.feature-item p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* ---------------------------------------------------------------------- */
/* Product Detail Page                                                     */
/* ---------------------------------------------------------------------- */
.breadcrumbs {
    font-size: 0.66rem;
    color: var(--color-muted);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumbs a {
    color: var(--color-ink);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    opacity: 0.6;
}

.product-main {
    display: flex;
    gap: 5rem;
    padding: 3.5rem 0 4.5rem;
    align-items: flex-start;
}

.gallery-col {
    flex: 1;
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-gallery {
    background: var(--color-offwhite);
    border: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.gallery-thumbs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 64px;
    height: 64px;
    padding: 0;
    border: 1px solid var(--color-border);
    background: var(--color-offwhite);
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--color-ink);
}

.product-gallery img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
    color: var(--color-ink);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--color-muted);
    font-size: 0.64rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
    border-radius: 0;
    margin-bottom: 1.6rem;
}

.status-pill.is-live {
    color: var(--color-ink);
}

.status-pill::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

.product-title {
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--color-ink);
    font-weight: 400;
}

.product-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-ink-soft);
    margin-bottom: 2.2rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid var(--color-line);
    font-weight: 300;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-bottom: 2.6rem;
}

.feature-pill {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-ink);
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
}

/* Buy-on-Amazon module */
.buy-box {
    background: transparent;
    border: none;
    border-top: 1px solid var(--color-ink);
    padding: 1.9rem 0 0;
}

.buy-box-label {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-muted);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.btn-amazon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-ink);
    color: #fff;
    padding: 1.1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--color-ink);
}

.btn-amazon:hover {
    background: transparent;
    color: var(--color-ink);
}

.btn-amazon i.fa-cart-shopping {
    font-size: 0.9rem;
}

.amazon-logo-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--color-line);
}

.amazon-logo-wrap svg {
    height: 22px;
    width: auto;
}

.buy-box-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--color-muted);
    margin-top: 0.9rem;
}

/* ---------------------------------------------------------------------- */
/* Science / Ingredients Section                                           */
/* ---------------------------------------------------------------------- */
.details-section {
    padding: 6rem 0;
    border-top: 1px solid var(--color-ink);
}

.inci-block {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-line);
}

.inci-block h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-ink);
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.inci-block p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--color-muted);
    font-weight: 300;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
    color: var(--color-ink);
}

.section-header p {
    color: var(--color-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem 2.5rem;
}

.ingredient-card {
    background: transparent;
    border: none;
    border-top: 1px solid var(--color-ink);
    padding: 1.8rem 0 0;
    box-shadow: none;
    transition: var(--transition);
}

.ingredient-card:hover {
    opacity: 0.7;
}

.ingredient-icon {
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--color-ink);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.ingredient-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--color-ink);
    font-weight: 400;
}

.property-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.65rem;
    line-height: 1.55;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.property-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 1px;
    background: var(--color-ink);
}

/* ---------------------------------------------------------------------- */
/* Static Legal Pages                                                      */
/* ---------------------------------------------------------------------- */
.legal-page {
    background: var(--color-paper);
    color: var(--color-ink-soft);
    border: none;
    border-top: 1px solid var(--color-ink);
    border-radius: 0;
    margin: 2.5rem 0 4rem;
    padding: 4rem 0 0;
}

.legal-page h1 {
    color: var(--color-ink);
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.legal-page h2 {
    color: var(--color-ink);
    font-size: 1.1rem;
    margin-top: 2.6rem;
    margin-bottom: 0.9rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.legal-page p, .legal-page li {
    line-height: 1.85;
    font-size: 0.95rem;
    font-weight: 300;
}

.legal-page ul {
    padding-left: 1.4rem;
}

.legal-updated {
    color: var(--color-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

/* ---------------------------------------------------------------------- */
/* Footer — solid wine                                                     */
/* ---------------------------------------------------------------------- */
footer {
    background: var(--color-ink);
    color: rgba(255, 255, 255, 0.65);
    padding: 4.5rem 0 2.5rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    transition: 0.3s;
    cursor: pointer;
    font-size: 0.85rem;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-logo-img {
    height: 34px;
    width: auto;
    margin-bottom: 1.3rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-badge {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
}

.address-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.address-row svg {
    color: rgba(255, 255, 255, 0.55) !important;
}

.address-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}

.address-text strong {
    color: rgba(255, 255, 255, 0.9);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.8rem;
    margin-top: 2.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffffff;
}

/* ---------------------------------------------------------------------- */
/* Page transition overlay                                                 */
/* ---------------------------------------------------------------------- */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-ink);
    z-index: 5000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
}

.page-transition-overlay.is-active {
    opacity: 1;
    pointer-events: all;
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                               */
/* ---------------------------------------------------------------------- */
@media (max-width: 900px) {
    .hero {
        padding: 3rem 1.5rem 3rem;
        min-height: 58vh;
        background-position: 65% center;
    }

    .hero-scroll-cue {
        display: none;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        background: var(--color-paper);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .menu.is-open {
        max-height: 400px;
        padding: 0.5rem 0;
    }

    .menu a {
        width: 100%;
        padding: 0.9rem 2rem;
    }

    .nav-toggle { display: flex; }

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

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

    .p-image {
        width: 100%;
        height: 300px;
    }

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

    .product-main {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .gallery-col {
        width: 100%;
        position: static;
    }

    .product-gallery {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .copyright-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-page {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 560px) {
    .feature-strip {
        grid-template-columns: 1fr;
    }
}
