/* ==========================================================================
   Fashion One — section skin ("Editorial Lookbook")
   --------------------------------------------------------------------------
   Loaded once per request by partials/section-skin.blade.php whenever a
   fashion-one section or the fashion-one-trending card renders. Scoped under
   .f1 so nothing else inherits it.

   Shape language: sharp corners + hairlines, serif display type with italic
   accents, arch-shaped imagery, index numerals, underline tabs, paper tones.
   ========================================================================== */

.f1 {
    --f1-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --f1-sans: 'Jost', var(--primary-font, 'Public Sans'), sans-serif;
    --f1-wine: var(--primary-color, #821f40);
    --f1-wine-deep: color-mix(in srgb, var(--f1-wine) 80%, #1a0810);
    --f1-ink: #17130f;
    --f1-muted: #7b7168;
    --f1-paper: #f6f1ea;
    --f1-paper-2: #ede5d9;
    --f1-white: #fffdfa;
    --f1-line: color-mix(in srgb, var(--f1-ink) 14%, transparent);
    --f1-line-strong: color-mix(in srgb, var(--f1-ink) 60%, transparent);
    --f1-blush: color-mix(in srgb, var(--f1-wine) 10%, #f6f1ea);
    --f1-arch: 999px 999px 0 0;
    --f1-ease: cubic-bezier(.2, .8, .2, 1);

    /* Sharp corners everywhere the appearance hooks apply inside this skin. */
    /* Shape language of this skin, but the Appearance settings win whenever an
       admin actually sets a radius (--ui-* is emitted only when configured). */
    --appearance-card-border-radius: var(--ui-card-radius, 0px);
    --appearance-product-card-border-radius: var(--ui-product-card-radius, 0px);
    --appearance-button-border-radius: var(--ui-button-radius, 0px);
    --appearance-input-border-radius: var(--ui-input-radius, 0px);

    position: relative;
    font-family: var(--f1-sans);
    color: var(--f1-ink);
}

body[data-theme="dark"] .f1 {
    --f1-ink: #f1ebe3;
    --f1-muted: #a89d92;
    --f1-paper: #1c1815;
    --f1-paper-2: #262019;
    --f1-white: #14110e;
    --f1-line: color-mix(in srgb, #ffffff 14%, transparent);
    --f1-line-strong: color-mix(in srgb, #ffffff 55%, transparent);
    --f1-blush: color-mix(in srgb, var(--f1-wine) 18%, #1c1815);
}

.f1 *, .f1 *::before, .f1 *::after { box-sizing: border-box; }
.f1 a { color: inherit; text-decoration: none; }
.f1 img { max-width: 100%; }
.f1 h1, .f1 h2, .f1 h3, .f1 h4 { font-family: var(--f1-serif) !important; color: inherit; margin: 0; font-weight: 500; }
.f1 h1 em, .f1 h2 em, .f1 h3 em { font-style: italic; color: var(--f1-wine); }

/* ---- Section header --------------------------------------------------- */
.f1-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--f1-line);
}
.f1-head--center { flex-direction: column; align-items: center; text-align: center; border-bottom: 0; padding-bottom: 0; }
.f1-head--bare { border-bottom: 0; padding-bottom: 0; }
.f1-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--f1-wine);
}
.f1-eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.f1-head--center .f1-eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; }
.f1-title {
    margin-top: 10px;
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.08;
}
.f1-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--f1-ink);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s, border-color .2s, gap .2s;
}
.f1-link i { font-size: 11px; }
.f1-link:hover { color: var(--f1-wine); border-color: var(--f1-wine); gap: 16px; }

/* ---- Buttons ----------------------------------------------------------- */
.f1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border: 1px solid var(--f1-ink);
    border-radius: var(--appearance-button-border-radius, 0px) !important;
    background: var(--f1-ink);
    color: var(--f1-white) !important;
    font: inherit;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.f1-btn:hover { background: var(--f1-wine); border-color: var(--f1-wine); color: #fff !important; }
.f1-btn i { font-size: 11px; transition: transform .25s; }
.f1-btn:hover i { transform: translateX(4px); }
.f1-btn--ghost { background: transparent; color: var(--f1-ink) !important; }
.f1-btn--ghost:hover { background: var(--f1-ink); color: var(--f1-white) !important; border-color: var(--f1-ink); }
.f1-btn--wine { background: var(--f1-wine); border-color: var(--f1-wine); }
.f1-btn--wine:hover { background: var(--f1-wine-deep); border-color: var(--f1-wine-deep); }
.f1-btn--sm { padding: 12px 18px; font-size: 11px; }
body[data-theme="dark"] .f1-btn { background: var(--f1-ink); color: var(--f1-white) !important; }

/* ---- Hero -------------------------------------------------------------- */
.f1-hero { background: var(--f1-paper); overflow: hidden; }
.f1-hero__item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 56px 0 0;
}
.f1-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: end;
    gap: 40px;
    width: 100%;
}
.f1-hero__copy { padding-bottom: 72px; }
.f1-hero__index {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--f1-wine);
}
.f1-hero__index::before { content: ''; width: 36px; height: 1px; background: currentColor; }
.f1-hero__title {
    font-size: clamp(44px, 6.8vw, 96px);
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: .98;
    margin-bottom: 26px;
}
.f1-hero__desc { max-width: 46ch; margin: 0 0 32px; font-size: 16px; line-height: 1.7; color: var(--f1-muted); }
.f1-hero__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.f1-hero__media { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.f1-hero__arch {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 4 / 5;
    background: var(--f1-paper-2);
    border-radius: var(--f1-arch);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.f1-hero__arch::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid color-mix(in srgb, var(--f1-ink) 22%, transparent);
    border-radius: var(--f1-arch);
    pointer-events: none;
    z-index: 2;
}
.f1-hero__arch img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    padding: 8% 6% 0;
    transition: transform 1.2s var(--f1-ease);
}
.f1-hero__item:hover .f1-hero__arch img { transform: scale(1.03); }
.f1-hero__counter {
    position: absolute;
    right: -8px;
    top: 8px;
    font-family: var(--f1-serif);
    font-size: 15px;
    letter-spacing: .1em;
    color: var(--f1-muted);
    writing-mode: vertical-rl;
}
.f1-hero__counter b { font-weight: 500; color: var(--f1-ink); }
.f1-hero__badge {
    position: absolute;
    left: -16px;
    bottom: 34px;
    width: 124px;
    height: 124px;
    display: grid;
    place-items: center;
    z-index: 3;
}
.f1-hero__badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: f1-spin 22s linear infinite; }
.f1-hero__badge text { font-family: var(--f1-sans); font-size: 12px; font-weight: 500; letter-spacing: .22em; fill: var(--f1-ink); }
.f1-hero__badge-core {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--f1-wine);
    color: #fff;
    display: grid; place-items: center;
    font-family: var(--f1-serif);
    font-style: italic;
    font-size: 20px;
}
.f1-hero__side {
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 11px;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--f1-muted);
    pointer-events: none;
}
/* owl chrome inside the fashion hero (style.css targets .hero-section .hero-parent.owl-carousel) */
.f1-hero #sliderOne.owl-carousel .owl-dots {
    position: absolute;
    right: 0;
    left: auto;
    bottom: 30px;
    top: auto;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    z-index: 3;
}
.f1-hero #sliderOne.owl-carousel .owl-dots .owl-dot {
    width: 34px; height: 2px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
    border-radius: 0 !important;
    background: color-mix(in srgb, var(--f1-ink) 22%, transparent);
    transition: background .25s, width .25s;
}
.f1-hero #sliderOne.owl-carousel .owl-dots .owl-dot span { display: none; }
.f1-hero #sliderOne.owl-carousel .owl-dots .owl-dot.active { width: 54px; background: var(--f1-wine); }
.f1-hero #sliderOne.owl-carousel .owl-nav { position: absolute; left: 0; bottom: 18px; display: flex; gap: 8px; margin: 0; z-index: 3; }
.f1-hero #sliderOne.owl-carousel .owl-nav button.owl-prev,
.f1-hero #sliderOne.owl-carousel .owl-nav button.owl-next {
    position: static;
    width: 46px; height: 46px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--f1-line-strong) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--f1-ink) !important;
    display: grid; place-items: center;
    font-size: 13px;
    transition: background .2s, color .2s, border-color .2s;
}
.f1-hero #sliderOne.owl-carousel .owl-nav button:hover { background: var(--f1-ink) !important; color: var(--f1-white) !important; border-color: var(--f1-ink) !important; }
.f1-hero #sliderOne.owl-carousel .owl-nav button.disabled { opacity: .3; }
@keyframes f1-spin { to { transform: rotate(360deg); } }

/* ---- Editorial tiles (banner-area) -------------------------------------
   The stock artwork here is wide banner strips (~558x280), so a tall portrait
   tile with object-fit:cover threw away most of the image and left the card
   empty. Card = image band at the source ratio + a caption block underneath,
   which also drops the dark gradient that was washing over white product shots.
   ------------------------------------------------------------------------ */
.f1-tiles__grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .f1-tiles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .f1-tiles__grid { grid-template-columns: repeat(var(--f1-tiles, 3), minmax(0, 1fr)); gap: 24px; } }
.f1-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--f1-white);
    border: 1px solid var(--f1-line);
    overflow: hidden;
    transition: border-color .3s var(--f1-ease);
}
.f1-tile:hover { border-color: color-mix(in srgb, var(--f1-ink) 38%, transparent); }
.f1-tile__media { display: block; position: relative; aspect-ratio: 1 / 1; background: var(--f1-paper-2); overflow: hidden; }
/* Top-anchored: these are portrait people shots, and a centred crop takes the
   head off. Anything trimmed comes off the bottom of the frame instead. */
.f1-tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 1s var(--f1-ease); }
.f1-tile:hover .f1-tile__img { transform: scale(1.05); }
.f1-tile__num {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    padding: 5px 10px;
    background: var(--f1-white);
    color: var(--f1-ink);
    font-family: var(--f1-serif);
    font-size: 13px;
    letter-spacing: .08em;
}
.f1-tile__copy { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px 26px; flex: 1; }
.f1-tile__small { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--f1-wine); }
.f1-tile__title { font-size: clamp(20px, 1.9vw, 26px); line-height: 1.15; }
.f1-tile__link {
    align-self: flex-start;
    margin-top: auto;
    padding: 12px 0 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--f1-ink);
    font-size: 11.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    transition: gap .2s, color .2s, border-color .2s;
}
.f1-tile:hover .f1-tile__link { gap: 16px; color: var(--f1-wine); border-color: var(--f1-wine); }
.f1-tile.is-center .f1-tile__copy { text-align: center; align-items: center; }
.f1-tile.is-center .f1-tile__link { align-self: center; }
.f1-tile.is-right .f1-tile__copy { text-align: right; align-items: flex-end; }
.f1-tile.is-right .f1-tile__link { align-self: flex-end; }
/* A colour-only tile (admin set a background, no image) keeps its own text colour. */
.f1-tile.is-plain .f1-tile__copy { justify-content: center; min-height: 220px; }

/* ---- Arch category tiles ----------------------------------------------- */
.f1-cats__grid { display: grid; gap: 22px 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px)  { .f1-cats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 992px)  { .f1-cats__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 26px 24px; } }
.f1-cat { display: block; text-align: center; }
.f1-cat__arch {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--f1-paper-2);
    border-radius: var(--f1-arch);
    overflow: hidden;
    margin-bottom: 16px;
}
.f1-cat__arch img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; transition: transform 1s var(--f1-ease), filter .6s; }
.f1-cat:hover .f1-cat__arch img { transform: scale(1.06); }
.f1-cat__arch::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: var(--f1-arch);
    opacity: 0;
    transition: opacity .4s;
}
.f1-cat:hover .f1-cat__arch::after { opacity: 1; }
.f1-cat__name { font-family: var(--f1-serif); font-size: 20px; line-height: 1.2; transition: color .2s; }
.f1-cat:hover .f1-cat__name { color: var(--f1-wine); }
.f1-cat__cta { display: block; margin-top: 6px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--f1-muted); }

/* ---- Product card (fashion-one-trending card style) -------------------- */
.f1 .qv-card-wrap { height: 100%; }
.f1-card { position: relative; display: flex; flex-direction: column; height: 100%; background: transparent; }
.f1-card__media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    background: var(--f1-paper-2);
    overflow: hidden;
}
.f1-card__img { display: block; width: 100%; height: 100%; }
.f1-card__media img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; padding: 6% 6% 0; transition: transform 1s var(--f1-ease); }
.f1-card:hover .f1-card__media img { transform: scale(1.05); }
.f1-card__tag {
    position: absolute;
    top: 14px; left: 14px;
    padding: 6px 9px;
    background: var(--f1-ink);
    color: var(--f1-white);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    z-index: 2;
}
.f1-card__wish {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border: 0;
    border-radius: 50% !important;
    background: var(--f1-white);
    color: var(--f1-ink);
    display: grid; place-items: center;
    font-size: 13px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s, transform .25s, color .2s;
    z-index: 3;
}
.f1-card:hover .f1-card__wish { opacity: 1; transform: none; }
.f1-card__wish:hover, .f1-card__wish .wishlist-icon-filled { color: var(--f1-wine); }
.f1-card__cta {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px;
    background: var(--f1-ink);
    color: var(--f1-white);
    border: 0;
    border-radius: var(--appearance-button-border-radius, 0px) !important;
    font: inherit;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateY(100%);
    transition: transform .35s var(--f1-ease), background .2s;
    z-index: 3;
}
.f1-card:hover .f1-card__cta { transform: none; }
.f1-card__cta:hover { background: var(--f1-wine); color: #fff; }
@media (hover: none) { .f1-card__wish { opacity: 1; transform: none; } .f1-card__cta { transform: none; position: static; } }
.f1-card__body { padding: 14px 2px 0; display: flex; flex-direction: column; gap: 4px; }
.f1-card__name { font-family: var(--f1-serif); font-size: 17px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.f1-card__name a:hover { color: var(--f1-wine); }
.f1-card__price { display: flex; align-items: baseline; gap: 10px; font-size: 14px; letter-spacing: .04em; }
.f1-card__price del { color: var(--f1-muted); font-size: 12.5px; }

/* ---- Drops (tabbed trending products) ---------------------------------- */
.f1-tabs { display: flex; justify-content: center; gap: 6px 34px; flex-wrap: wrap; margin: 0 0 34px; padding: 0; list-style: none; }
.f1-tab {
    position: relative;
    padding: 10px 0;
    border: 0;
    border-radius: 0 !important;
    background: transparent;
    color: var(--f1-muted);
    font: inherit;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s;
}
.f1-tab::after { content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; background: var(--f1-wine); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--f1-ease); }
.f1-tab:hover { color: var(--f1-ink); }
.f1-tab.active { color: var(--f1-ink); }
.f1-tab.active::after { transform: scaleX(1); }
.f1-tab sup { margin-left: 4px; font-family: var(--f1-serif); font-style: italic; letter-spacing: 0; text-transform: none; color: var(--f1-wine); }
.f1-grid { display: grid; gap: 28px 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px)  { .f1-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .f1-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 24px; } }

/* ---- Lookbook (feature-slider) ----------------------------------------- */
.f1-look { background: var(--f1-paper); }
.f1-look .swiper { padding-bottom: 4px; }
.f1-look__slide {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--f1-white);
    border: 1px solid var(--f1-line);
}
.f1-look__img { position: relative; aspect-ratio: 4 / 5; background: var(--f1-paper-2); overflow: hidden; }
.f1-look__img > span { position: absolute; inset: 0; background-size: contain; background-repeat: no-repeat; background-position: center 92%; transition: transform 1s var(--f1-ease); }
.f1-look__slide:hover .f1-look__img > span { transform: scale(1.04); }
.f1-look__copy { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px 26px; flex: 1; }
.f1-look__badge { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--f1-wine); }
.f1-look__title { font-size: clamp(19px, 1.5vw, 23px); line-height: 1.2; }
.f1-look__sub { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--f1-muted); }
.f1-look__price { font-family: var(--f1-serif); font-size: 20px; }
.f1-look__price small { font-family: var(--f1-sans); font-size: 13px; color: var(--f1-muted); text-decoration: line-through; margin-left: 8px; }
.f1-look__rating { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--f1-muted); }
.f1-look__rating i { font-size: 10px; color: var(--f1-wine); }
.f1-look__cta { margin-top: auto; padding-top: 14px; }
.f1-look__nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; }
.f1-look__arrows { display: flex; gap: 8px; }
.f1-look__arrows button {
    width: 48px; height: 48px;
    border: 1px solid var(--f1-line-strong);
    border-radius: 0 !important;
    background: transparent;
    color: var(--f1-ink);
    display: grid; place-items: center;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.f1-look__arrows button:hover { background: var(--f1-ink); color: var(--f1-white); }
.f1-look .swiper-pagination { position: static; display: flex; gap: 8px; width: auto; }
.f1-look .swiper-pagination-bullet { width: 34px; height: 2px; margin: 0 !important; border-radius: 0; background: var(--f1-ink); opacity: .2; transition: opacity .25s, width .25s; }
.f1-look .swiper-pagination-bullet-active { width: 54px; opacity: 1; background: var(--f1-wine); }

/* ---- Arrivals (trending-area) ------------------------------------------ */
.f1-arrivals__grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 992px) { .f1-arrivals__grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); gap: 40px; align-items: stretch; } }
.f1-arrivals .swiper-pagination { position: static; display: flex; gap: 8px; margin-top: 22px; }
.f1-arrivals .swiper-pagination-bullet { width: 28px; height: 2px; margin: 0 !important; border-radius: 0; background: var(--f1-ink); opacity: .2; }
.f1-arrivals .swiper-pagination-bullet-active { width: 46px; opacity: 1; background: var(--f1-wine); }
.f1-poster {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 100%;
    min-height: 420px;
    background: var(--f1-paper-2);
    overflow: hidden;
    isolation: isolate;
}
.f1-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--f1-ease); }
.f1-poster:hover img { transform: scale(1.04); }
.f1-poster::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, .6);
    z-index: 2;
    pointer-events: none;
}
.f1-poster::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23, 19, 15, 0) 45%, rgba(23, 19, 15, .8) 100%); z-index: 1; }
.f1-poster__copy { position: relative; z-index: 3; padding: 38px; color: #fff; }
.f1-poster__copy .f1-eyebrow { color: #fff; opacity: .85; }
.f1-poster__title { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; margin: 12px 0 20px; color: #fff; }
.f1-poster .f1-btn { background: #fff; border-color: #fff; color: var(--f1-ink) !important; }
.f1-poster .f1-btn:hover { background: var(--f1-wine); border-color: var(--f1-wine); color: #fff !important; }

/* ---- Gallery strip ------------------------------------------------------ */
.f1-gallery .swiper { padding: 0 0 8px; }
.f1-shot { position: relative; display: block; aspect-ratio: 1; background: var(--f1-paper-2); overflow: hidden; }
.f1-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--f1-ease); }
.f1-shot:hover img { transform: scale(1.06); }
.f1-shot__cap {
    position: absolute;
    left: 14px; bottom: 14px;
    padding: 8px 12px;
    background: var(--f1-white);
    color: var(--f1-ink);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .35s var(--f1-ease), opacity .35s;
}
.f1-shot:hover .f1-shot__cap { transform: none; opacity: 1; }
@media (hover: none) { .f1-shot__cap { transform: none; opacity: 1; } }
.f1-gallery .swiper-pagination { position: static; display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.f1-gallery .swiper-pagination-bullet { width: 28px; height: 2px; margin: 0 !important; border-radius: 0; background: var(--f1-ink); opacity: .2; }
.f1-gallery .swiper-pagination-bullet-active { width: 46px; opacity: 1; background: var(--f1-wine); }

/* ---- Newsletter ---------------------------------------------------------- */
.f1-news__band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: center;
    padding: clamp(28px, 4vw, 56px) 0;
    border-top: 1px solid var(--f1-ink);
    border-bottom: 1px solid var(--f1-ink);
}
@media (min-width: 992px) { .f1-news__band { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.f1-news__title { font-size: clamp(30px, 3.6vw, 52px); line-height: 1.05; margin-top: 12px; }
.f1-news__form { position: relative; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--f1-ink); padding-bottom: 10px; }
.f1-news__input {
    flex: 1;
    min-width: 0;
    padding: 12px 0;
    border: 0;
    border-radius: 0 !important;
    background: transparent;
    color: var(--f1-ink);
    font: inherit;
    font-size: 16px;
    letter-spacing: .02em;
    outline: 0;
}
.f1-news__input::placeholder { color: var(--f1-muted); }
.f1-news__submit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0 12px 16px;
    border: 0;
    border-radius: 0 !important;
    background: transparent;
    color: var(--f1-ink);
    font: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s, gap .2s;
}
.f1-news__submit i { font-size: 14px; }
.f1-news__submit:hover { color: var(--f1-wine); gap: 18px; }
.f1-news__hint { display: block; margin-top: 12px; font-size: 12.5px; color: var(--f1-muted); }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 991.98px) {
    .f1-hero__item { min-height: 0; padding: 40px 0 0; }
    .f1-hero__grid { grid-template-columns: 1fr; gap: 24px; }
    .f1-hero__copy { padding-bottom: 0; text-align: center; }
    .f1-hero__index { justify-content: center; }
    .f1-hero__index::before { display: none; }
    .f1-hero__desc { margin-left: auto; margin-right: auto; }
    .f1-hero__actions { justify-content: center; }
    .f1-hero__media { padding-bottom: 76px; }
    .f1-hero__arch { width: min(100%, 380px); }
    .f1-hero__badge { width: 96px; height: 96px; left: 0; }
    .f1-hero__badge-core { width: 42px; height: 42px; font-size: 16px; }
    .f1-hero__side, .f1-hero__counter { display: none; }
    .f1-hero #sliderOne.owl-carousel .owl-dots { left: 50%; right: auto; transform: translateX(-50%); bottom: 22px; }
    .f1-hero #sliderOne.owl-carousel .owl-nav { display: none; }
    .f1-look__slide { grid-template-columns: 1fr; min-height: 0; }
    .f1-look__img { aspect-ratio: 4 / 3; }
}
@media (max-width: 575.98px) {
    .f1-head { margin-bottom: 22px; }
    .f1-tabs { gap: 4px 20px; }
    .f1-card__name { font-size: 15px; }
    .f1-poster { min-height: 360px; }
    .f1-poster__copy { padding: 26px; }
}
