/*
 * homepage.css — Session 12
 * All homepage-specific styles. Enqueued on front page only.
 * Uses --silure- design tokens exclusively. No hardcoded colours.
 * No border-radius. No jQuery. SILURE layout.
 *
 * "was -0.03em" / "was Italiana, see file header" markers (Session 30
 * close-out, letter-spacing + Italiana removal sweeps): the live
 * homepage has since been rebuilt as an Elementor page (post ID 4240),
 * so none of this file's own .silure-hero__*/.silure-*__headline
 * classes are actually present in current homepage markup at all --
 * fully orphaned selectors, not live bugs. Corrected the stale
 * -0.03em / Italiana values on them anyway (the site's real standard
 * is Mulish 700, -0.01em, and CLAUDE.md permanently bans Italiana)
 * rather than leave dead code sitting at the wrong, banned values, in
 * case any of these classes are ever reused.
 */

/* ─────────────────────────────────────────────────────────────────────
   HERO — full viewport height, video/image background, 18% overlay
   ───────────────────────────────────────────────────────────────────── */

.silure-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Elementor-generated background overlay — set to rgba(5,5,5,0.18) in builder */
.silure-hero > .elementor-background-overlay {
    z-index: 1;
}

/* CSS fallback overlay for non-Elementor rendering */
.silure-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.18);
    z-index: 1;
    pointer-events: none;
}

.silure-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.silure-hero__headline {
    font-family: 'Mulish', sans-serif; /* was Italiana, see file header */
    font-size: clamp(72px, 11vw, 130px);
    font-weight: 400;
    letter-spacing: -0.01em; /* was -0.03em, see file header */
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--silure-on-dark, #FBF9F6);
    margin: 0 0 32px;
}

.silure-hero__subtext {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7em;
    color: rgba(251, 249, 246, 0.85);
    margin: 0 0 40px;
}

/* Ghost CTA — transparent + white border on dark background */
.silure-hero__cta,
.silure-hero .silure-btn-ghost {
    display: inline-block;
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.7em;
    color: var(--silure-on-dark, #FBF9F6);
    border: 1px solid rgba(251, 249, 246, 0.65);
    padding: 14px 40px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.silure-hero__cta:hover,
.silure-hero .silure-btn-ghost:hover {
    background: rgba(251, 249, 246, 0.12);
    border-color: var(--silure-on-dark, #FBF9F6);
}

/* ─────────────────────────────────────────────────────────────────────
   LIFESTYLE GRID — 3 equal columns with hover overlay + label
   ───────────────────────────────────────────────────────────────────── */

.silure-lifestyle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.silure-lifestyle__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: block;
    text-decoration: none;
}

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

.silure-lifestyle__item:hover img {
    transform: scale(1.04);
}

/* Dark hover overlay — slides from 0 to 0.38 opacity */
.silure-lifestyle__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0);
    transition: background 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.silure-lifestyle__item:hover::after {
    background: rgba(5, 5, 5, 0.38);
}

/* Category label — fades up on hover */
.silure-lifestyle__label {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.7em;
    color: var(--silure-on-dark, #FBF9F6);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 2;
}

.silure-lifestyle__item:hover .silure-lifestyle__label {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────
   BRAND STATEMENT — centre-aligned Italiana + Mulish
   ───────────────────────────────────────────────────────────────────── */

.silure-brand-statement {
    padding: 120px 40px;
    text-align: center;
    background: var(--silure-bg, #FBF9F6);
}

.silure-brand-statement__headline {
    font-family: 'Mulish', sans-serif; /* was Italiana, see file header */
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.01em; /* was -0.03em, see file header */
    line-height: 0.90;
    text-transform: uppercase;
    color: var(--silure-primary, #050505);
    max-width: 800px;
    margin: 0 auto 28px;
}

.silure-brand-statement__text {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7em;
    color: var(--silure-text, #444444);
    max-width: 520px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────────
   FEATURE COLLECTION — full-width image with headline overlay
   ───────────────────────────────────────────────────────────────────── */

.silure-feature-collection {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    display: block;
    text-decoration: none;
}

.silure-feature-collection img,
.silure-feature-collection__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.silure-feature-collection:hover img,
.silure-feature-collection:hover .silure-feature-collection__bg {
    transform: scale(1.02);
}

.silure-feature-collection__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.22);
    z-index: 1;
    pointer-events: none;
}

.silure-feature-collection__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 40px;
}

.silure-feature-collection__eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(251, 249, 246, 0.75);
    margin: 0 0 16px;
}

.silure-feature-collection__headline {
    font-family: 'Mulish', sans-serif; /* was Italiana, see file header */
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 400;
    letter-spacing: -0.01em; /* was -0.03em, see file header */
    line-height: 0.88;
    text-transform: uppercase;
    color: var(--silure-on-dark, #FBF9F6);
    margin: 0 0 32px;
}

.silure-feature-collection__cta {
    display: inline-block;
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silure-on-dark, #FBF9F6);
    border: 1px solid rgba(251, 249, 246, 0.65);
    padding: 12px 36px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.silure-feature-collection__cta:hover {
    background: rgba(251, 249, 246, 0.14);
    border-color: var(--silure-on-dark, #FBF9F6);
}

/* ─────────────────────────────────────────────────────────────────────
   SPLIT FEATURE — 2 columns, image left + text right
   ───────────────────────────────────────────────────────────────────── */

.silure-split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.silure-split-feature__image {
    position: relative;
    overflow: hidden;
}

.silure-split-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.silure-split-feature__image:hover img {
    transform: scale(1.03);
}

.silure-split-feature__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 80px;
    background: var(--silure-surface, #F3F0EB);
}

.silure-split-feature__eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silure-muted, #7A7672);
    margin: 0 0 20px;
}

.silure-split-feature__headline {
    font-family: 'Mulish', sans-serif; /* was Italiana, see file header */
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    letter-spacing: -0.01em; /* was -0.03em, see file header */
    line-height: 0.90;
    text-transform: uppercase;
    color: var(--silure-primary, #050505);
    margin: 0 0 24px;
}

.silure-split-feature__body {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7em;
    color: var(--silure-text, #444444);
    margin: 0 0 36px;
}

.silure-split-feature__cta {
    display: inline-block;
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silure-primary, #050505);
    border: 1px solid var(--silure-primary, #050505);
    padding: 12px 32px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.25s ease, color 0.25s ease;
}

.silure-split-feature__cta:hover {
    background: var(--silure-primary, #050505);
    color: var(--silure-on-dark, #FBF9F6);
}

/* ─────────────────────────────────────────────────────────────────────
   NEW IN — section wrapper + header row
   ───────────────────────────────────────────────────────────────────── */

.silure-new-in {
    padding: 96px 80px;
    background: var(--silure-bg, #FBF9F6);
}

.silure-new-in__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 56px;
}

.silure-new-in__title {
    font-family: 'Mulish', sans-serif; /* was Italiana, see file header */
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.01em; /* was -0.03em, see file header */
    line-height: 0.90;
    text-transform: uppercase;
    color: var(--silure-primary, #050505);
    margin: 0;
}

.silure-new-in__view-all {
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silure-primary, #050505);
    text-decoration: none;
    border-bottom: 1px solid var(--silure-primary, #050505);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.silure-new-in__view-all:hover {
    color: var(--silure-muted, #7A7672);
    border-color: var(--silure-muted, #7A7672);
}

/* ─────────────────────────────────────────────────────────────────────
   PRODUCT GRID — used by [silure_new_in] shortcode output
   3 col desktop / 2 col tablet / 1 col mobile
   ───────────────────────────────────────────────────────────────────── */

.silure-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
}

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

.silure-product-card__image-link {
    display: block;
    text-decoration: none;
}

.silure-product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--silure-surface, #F3F0EB);
}

.silure-product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

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

.silure-product-card__info {
    padding: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.silure-product-card__name {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: var(--silure-primary, #050505);
    text-decoration: none;
}

.silure-product-card__name:hover {
    color: var(--silure-muted, #7A7672);
}

.silure-product-card__price {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--silure-text, #444444);
}

/* WooCommerce price HTML inside shortcode output */
.silure-product-card__price .woocommerce-Price-amount,
.silure-product-card__price .amount {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* ─────────────────────────────────────────────────────────────────────
   EDITORIAL INSERT — full-width dark band, placed every 9th product
   In Elementor: add a separate full-width section with class silure-editorial
   between product rows as needed.
   ───────────────────────────────────────────────────────────────────── */

.silure-editorial {
    background: var(--silure-bg-dark, #050505);
    padding: 120px 80px;
    text-align: center;
    width: 100%;
}

.silure-editorial__eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(251, 249, 246, 0.55);
    margin: 0 0 20px;
}

.silure-editorial__headline {
    font-family: 'Mulish', sans-serif; /* was Italiana, see file header */
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 400;
    letter-spacing: -0.01em; /* was -0.03em, see file header */
    line-height: 0.88;
    text-transform: uppercase;
    color: var(--silure-on-dark, #FBF9F6);
    max-width: 900px;
    margin: 0 auto 28px;
}

.silure-editorial__text {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7em;
    color: rgba(251, 249, 246, 0.65);
    max-width: 520px;
    margin: 0 auto 40px;
}

.silure-editorial__cta {
    display: inline-block;
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silure-on-dark, #FBF9F6);
    border: 1px solid rgba(251, 249, 246, 0.55);
    padding: 14px 40px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.silure-editorial__cta:hover {
    background: rgba(251, 249, 246, 0.10);
    border-color: var(--silure-on-dark, #FBF9F6);
}

/* ─────────────────────────────────────────────────────────────────────
   GIFTING SECTION — dark #050505 band
   ───────────────────────────────────────────────────────────────────── */

.silure-gifting {
    background: var(--silure-bg-dark, #050505);
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.silure-gifting__eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(251, 249, 246, 0.55);
    margin: 0 0 20px;
}

.silure-gifting__headline {
    font-family: 'Mulish', sans-serif; /* was Italiana, see file header */
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 400;
    letter-spacing: -0.01em; /* was -0.03em, see file header */
    line-height: 0.88;
    text-transform: uppercase;
    color: var(--silure-on-dark, #FBF9F6);
    max-width: 800px;
    margin: 0 auto 24px;
}

.silure-gifting__text {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7em;
    color: rgba(251, 249, 246, 0.65);
    max-width: 480px;
    margin: 0 0 40px;
}

.silure-gifting__cta {
    display: inline-block;
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silure-on-dark, #FBF9F6);
    border: 1px solid rgba(251, 249, 246, 0.55);
    padding: 14px 40px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.silure-gifting__cta:hover {
    background: rgba(251, 249, 246, 0.10);
    border-color: var(--silure-on-dark, #FBF9F6);
}

/* ─────────────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .silure-new-in {
        padding: 72px 40px;
    }
    .silure-split-feature__text {
        padding: 56px 48px;
    }
    .silure-editorial,
    .silure-gifting {
        padding: 96px 40px;
    }
    .silure-brand-statement {
        padding: 96px 40px;
    }
}

@media (max-width: 768px) {
    .silure-lifestyle {
        grid-template-columns: 1fr 1fr;
    }

    .silure-lifestyle__item:last-child {
        grid-column: span 2;
        aspect-ratio: 16 / 7;
    }

    .silure-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .silure-split-feature {
        grid-template-columns: 1fr;
    }

    .silure-split-feature__image {
        aspect-ratio: 16 / 9;
    }

    .silure-split-feature__text {
        padding: 48px 32px;
    }

    .silure-feature-collection {
        aspect-ratio: 4 / 3;
    }

    .silure-new-in {
        padding: 56px 24px;
    }

    .silure-new-in__header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .silure-brand-statement {
        padding: 80px 24px;
    }

    .silure-editorial,
    .silure-gifting {
        padding: 80px 24px;
    }

    .silure-hero__content {
        padding: 0 32px;
    }
}

@media (max-width: 480px) {
    .silure-hero__headline {
        font-size: clamp(52px, 16vw, 72px);
    }

    .silure-hero__content {
        padding: 0 24px;
    }

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

    .silure-lifestyle__item:last-child {
        grid-column: auto;
        aspect-ratio: 3 / 4;
    }

    .silure-product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .silure-new-in {
        padding: 48px 16px;
    }

    .silure-editorial,
    .silure-gifting {
        padding: 64px 16px;
    }

    .silure-split-feature__text {
        padding: 40px 20px;
    }

    .silure-brand-statement {
        padding: 64px 16px;
    }

    .silure-split-feature__cta {
        align-self: stretch;
        text-align: center;
    }
}

/* Align + icon with wishlist icon in NEW IN carousel */
.elementor-element-newin001 .silure-card-info {
    padding-right: 10px !important;
}

/* Homepage Elementor Button widgets (Session 30 sitewide 13px
   standardization, second pass) -- .elementor-button has no custom
   theme CSS anywhere; typography comes from each button's own
   Elementor-editor widget settings, confirmed live: all four were
   still 10-11px Mulish weight 700. Targeted by each widget's own
   data-id (also its CSS class elementor-element-{id}) rather than a
   sitewide .elementor-button rule, since that class is used by Button
   widgets on other pages too. !important needed to reliably beat
   Elementor's own generated per-widget CSS. */
.elementor-element-herobtn1 .elementor-button,
.elementor-element-e7360db .elementor-button,
.elementor-element-newinbt1 .elementor-button,
.elementor-element-giftbtn1 .elementor-button {
    font-family: 'DM Mono', monospace !important;
    font-size: 13px !important;
    font-weight: 300 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* Silver traveling shine (Session 57, expanded Session 59) — dark
   Elementor CTAs on the homepage. Session 57 only ever wired this to
   "Explore Collection" (herobtn1) — "Shop Collection" (e7360db) was
   never actually added to the shine selectors despite sharing the same
   font-standardization rule above (a scope gap, confirmed by grep: it
   only ever appeared in that one rule, never in this block). Session 59
   adds e7360db here to fix that, and giftbtn1 ("Shop Gifts") as a new
   4th confirmed CTA. newinbt1 ("View All →") stays excluded — never
   part of the confirmed CTA list. All three now share byte-identical
   values (width/gradient/timing) — no separate "wider" variant exists
   anywhere in this file or its git history (checked directly); if a
   wider/more-prominent version was intended for one of them specifically,
   it never actually shipped and needs a fresh instruction on which
   button and what value. Targets the widget's own real markup (confirmed
   live: <a class="elementor-button"><span class="elementor-button-
   content-wrapper"><span class="elementor-button-text">...) —
   .elementor-button-content-wrapper is exactly the ">*" child
   .silure-shine needs to stay above the shine layer, so no extra markup
   was needed (unlike the other two CTAs elsewhere, whose text nodes had
   to be wrapped in a <span> for the same stacking guarantee). Deliberately
   transform: translateX() for the sweep, never `left` — GPU-composited,
   not a per-frame layout recalc. */
.elementor-element-herobtn1 .elementor-button,
.elementor-element-e7360db .elementor-button,
.elementor-element-giftbtn1 .elementor-button {
    position: relative;
    overflow: hidden;
}
@keyframes silure-shine-sweep {
    0%   { transform: translateX(-160%); }
    55%  { transform: translateX(160%); }
    100% { transform: translateX(160%); }
}
.elementor-element-herobtn1 .elementor-button::before,
.elementor-element-e7360db .elementor-button::before,
.elementor-element-giftbtn1 .elementor-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 35%,
        rgba(0, 0, 0, 0.08) 42%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(0, 0, 0, 0.08) 58%,
        transparent 65%
    );
    transform: translateX(-160%);
    animation: silure-shine-sweep 3.4s ease-in-out infinite;
    animation-delay: 1s;
    will-change: transform;
    pointer-events: none;
    z-index: 0;
}
.elementor-element-herobtn1 .elementor-button > *,
.elementor-element-e7360db .elementor-button > *,
.elementor-element-giftbtn1 .elementor-button > * {
    position: relative;
    z-index: 1;
}
