/* ============================================================================
   article-v8.css  —  Editorial article layout for eyeshopnews.asp
   Builds on home-v8.css (must be loaded BEFORE this one). Uses same palette
   (white + #5089b0 + DM Serif Display + Inter).
   ============================================================================ */

/* ─────────── Body wrapper ─────────── */
body.eyeshopnews-article {
    background: #fff;
    color: var(--v8-text);
}

/* ─────────── Article hero (full-bleed cinematic) ─────────── */
.v8-article-hero {
    position: relative;
    width: 100%;
    height: clamp(420px, 60vh, 640px);
    overflow: hidden;
    margin-top: 58px;          /* clear fixed navbar */
    background: #1a1a1a;
}
@media (max-width: 767px) {
    .v8-article-hero { margin-top: 50px; height: clamp(360px, 55vh, 520px); }
}
.v8-article-hero picture,
.v8-article-hero img,
.v8-article-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.v8-article-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.75) 100%);
    pointer-events: none;
}
.v8-article-hero-caption {
    position: absolute;
    bottom: 7vh;
    left: 0; right: 0;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}
.v8-article-hero-eyebrow {
    font-family: var(--v8-ui);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.92;
    font-weight: 500;
}
.v8-article-hero-eyebrow a { color: var(--v8-accent); text-decoration: none; }
.v8-article-hero-eyebrow a:hover { color: #fff; }
.v8-article-hero-title {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: clamp(28px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.v8-article-hero-title em { font-style: italic; }
.v8-article-hero-meta {
    font-family: var(--v8-ui);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.82;
    font-weight: 400;
}
.v8-article-hero-meta span { margin: 0 6px; }
.v8-article-hero-meta time { color: #fff; }

/* ─────────── Breadcrumb ─────────── */
.v8-article-breadcrumb {
    max-width: 1170px;
    margin: 0 auto;
    padding: 18px 24px 8px;
    font-family: var(--v8-ui);
    font-size: 12px;
    color: var(--v8-muted);
}
.v8-article-breadcrumb a {
    color: var(--v8-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.v8-article-breadcrumb a:hover { color: var(--v8-accent); }
.v8-article-breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.5;
}
.v8-article-breadcrumb .current { color: var(--v8-text); }

/* ─────────── Article body / intro ─────────── */
.v8-article-intro {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 24px 32px;
    text-align: center;
}
.v8-article-lead {
    font-family: var(--v8-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: var(--v8-text);
    margin: 0;
    letter-spacing: -0.2px;
}

.v8-article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 40px;
    font-family: var(--v8-ui);
    font-size: 15px;
    line-height: 1.75;
    color: var(--v8-text);
    font-weight: 300;
}
.v8-article-body p {
    margin: 0 0 1.2em;
}
.v8-article-body strong, .v8-article-body b {
    font-weight: 500;
    color: var(--v8-text);
}
.v8-article-body a {
    color: var(--v8-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.v8-article-body a:hover {
    color: var(--v8-accent-dark);
}
.v8-article-body h2 {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 28px);
    margin: 2em 0 0.6em;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: var(--v8-text);
}
.v8-article-body h3 {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: 20px;
    margin: 1.8em 0 0.5em;
    color: var(--v8-text);
}
.v8-article-body ul, .v8-article-body ol {
    padding-left: 1.4em;
    margin: 0.8em 0 1.4em;
}
.v8-article-body li {
    margin-bottom: 0.4em;
}
.v8-article-body blockquote {
    font-family: var(--v8-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.4;
    margin: 1.8em 0;
    padding: 0 0 0 28px;
    border-left: 2px solid var(--v8-accent);
    color: var(--v8-text);
}

/* ─────────── Share strip ─────────── */
.v8-article-share {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--v8-line);
    padding-bottom: 24px;
}
.v8-article-share-label {
    font-family: var(--v8-ui);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--v8-muted);
}
.v8-article-share a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--v8-line);
    color: var(--v8-muted);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s;
}
.v8-article-share a:hover {
    background: var(--v8-accent);
    color: #fff;
    border-color: var(--v8-accent);
}

/* ─────────── Image gallery (from eyenewsphotos) ─────────── */
.v8-gallery {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 15px 60px;
}
.v8-gallery-head {
    text-align: center;
    padding: 0 20px 28px;
}
.v8-gallery-eyebrow {
    font-family: var(--v8-ui);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--v8-accent);
    font-weight: 600;
    margin-bottom: 6px;
}
.v8-gallery-title {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    margin: 0;
    color: var(--v8-text);
    letter-spacing: -0.3px;
}
/* Mosaic layout (matches default.asp Luxury Edit): first 3 photos as
   1 large feature + stack of 2. Photos 4+ fall into 3-col grid below. */
.v8-gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 540px;
    margin-bottom: 14px;
}
.v8-gallery-mosaic > .v8-gallery-item-large {
    grid-row: span 2;
}
.v8-gallery-rest {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* Fallback flat grid (when only ≤2 photos — rare) */
.v8-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 991px) {
    .v8-gallery-mosaic { min-height: 460px; }
    .v8-gallery-rest { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 567px) {
    .v8-gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }
    .v8-gallery-mosaic > .v8-gallery-item-large { grid-row: auto; }
    .v8-gallery-mosaic .v8-gallery-item,
    .v8-gallery-rest .v8-gallery-item { aspect-ratio: 4/5; }
    .v8-gallery-rest { grid-template-columns: 1fr; }
    .v8-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
}

.v8-gallery-item {
    position: relative;
    overflow: hidden;
    background: #f5f6f8;
    text-decoration: none;
    display: block;
}
/* Items outside mosaic (fallback grid or "rest") get aspect-ratio */
.v8-gallery-grid > .v8-gallery-item,
.v8-gallery-rest > .v8-gallery-item { aspect-ratio: 4/5; }
.v8-gallery-item picture,
.v8-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;   /* bias upward — faces usually in top half */
    transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
/* Large feature in mosaic: less bias since image has more room */
.v8-gallery-item-large picture,
.v8-gallery-item-large img {
    object-position: center 35%;
}
.v8-gallery-item:hover img,
.v8-gallery-item:hover picture img { transform: scale(1.04); }

.v8-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
    pointer-events: none;
}
.v8-gallery-cap {
    position: absolute;
    bottom: 14px;
    left: 18px;
    right: 18px;
    color: #fff;
    z-index: 2;
}
.v8-gallery-cap-text {
    font-family: var(--v8-ui);
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    margin-bottom: 4px;
    font-weight: 400;
}
.v8-gallery-cap-cta {
    font-family: var(--v8-ui);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.55);
    padding-bottom: 2px;
    display: inline-block;
    font-weight: 500;
}
.v8-gallery-item:hover .v8-gallery-cap-cta {
    border-bottom-color: var(--v8-accent);
    color: var(--v8-accent);
}

/* ─────────── Shop the story (related products) ─────────── */
.v8-shop-story {
    background: #FAF8F4;
    padding: 60px 0;
    margin: 30px 0;
}
.v8-shop-story-head {
    text-align: center;
    padding: 0 20px 28px;
    max-width: 1170px;
    margin: 0 auto;
}
.v8-shop-story-eyebrow {
    font-family: var(--v8-ui);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--v8-accent);
    font-weight: 600;
    margin-bottom: 6px;
}
.v8-shop-story-title {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    margin: 0 0 4px;
    color: var(--v8-text);
}
.v8-shop-story .nav-tabs {
    border-bottom: 1px solid var(--v8-line);
    background: transparent;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.v8-shop-story .nav-tabs > li {
    float: none;
}
.v8-shop-story .nav-tabs > li > a {
    font-family: var(--v8-ui);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--v8-muted);
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent !important;
    padding: 12px 18px;
    border-radius: 0;
    transition: color 0.2s, border-color 0.2s;
}
.v8-shop-story .nav-tabs > li.active > a {
    color: var(--v8-accent) !important;
    border-bottom: 2px solid var(--v8-accent) !important;
}

/* ─────────── Video embed (when news has video) ─────────── */
.v8-article-video {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 15px;
}
.v8-article-video-head {
    text-align: center;
    padding: 0 20px 24px;
}
.v8-article-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}
.v8-article-video-wrap iframe,
.v8-article-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ─────────── CTA banner ─────────── */
.v8-article-cta {
    background: #1A1A1A;
    color: #fff;
    text-align: center;
    padding: 48px 24px;
}
.v8-article-cta-eyebrow {
    font-family: var(--v8-ui);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--v8-accent);
    font-weight: 600;
    margin-bottom: 8px;
}
.v8-article-cta-title {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: clamp(22px, 2.5vw, 30px);
    margin: 0 0 18px;
    color: #fff;
}
.v8-article-cta-btn {
    font-family: var(--v8-ui);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid var(--v8-accent);
    padding: 12px 28px;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}
.v8-article-cta-btn:hover {
    background: var(--v8-accent);
    color: #fff;
}

/* ─────────── Shop the Collection (related products grid) ─────────── */
.v8-shop-collection {
    max-width: 1170px;
    margin: 40px auto;
    padding: 0 15px;
}
.v8-shop-collection-alt {
    background: var(--v8-accent-soft);
    max-width: none;
    padding: 40px 15px;
}
.v8-shop-collection-alt .v8-shop-grid,
.v8-shop-collection-alt .v8-shop-more,
.v8-shop-collection-alt .v8-section-head {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.v8-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}
@media (max-width: 991px) { .v8-shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .v8-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (max-width: 380px) { .v8-shop-grid { grid-template-columns: 1fr; } }

.v8-shop-card {
    background: #FFFFFF;
    border: 1px solid var(--v8-line);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--v8-text);
    position: relative;
    transition: border-color 0.2s, transform 0.25s;
    overflow: hidden;
}
.v8-shop-card:hover {
    border-color: var(--v8-accent);
    transform: translateY(-3px);
    text-decoration: none;
    color: var(--v8-text);
}

/* Promotion badges */
.v8-shop-discount, .v8-shop-new {
    position: absolute;
    top: 10px;
    z-index: 2;
    font-family: var(--v8-ui);
    font-size: 10px;
    letter-spacing: 1.2px;
    padding: 4px 8px;
    font-weight: 600;
    text-transform: uppercase;
}
.v8-shop-discount {
    left: 10px;
    background: var(--v8-text);
    color: #FFF;
}
.v8-shop-new {
    right: 10px;
    color: var(--v8-accent);
    border: 1px solid var(--v8-accent);
    background: rgba(255,255,255,0.95);
}

/* Image area */
.v8-shop-image {
    aspect-ratio: 1/1;
    background: #F7F8FA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
    position: relative;
}
.v8-shop-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.v8-shop-card:hover .v8-shop-image img { transform: scale(1.04); }

/* Info area */
.v8-shop-info {
    padding: 14px 14px 16px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.v8-shop-brand {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: 17px;
    margin: 0 0 4px;
    color: var(--v8-text);
    letter-spacing: -0.2px;
    text-transform: capitalize;
}
.v8-shop-model {
    font-family: var(--v8-ui);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--v8-muted);
    margin: 0 0 10px;
    font-weight: 500;
    flex-grow: 1;
}
.v8-shop-price {
    font-family: var(--v8-ui);
    font-size: 14px;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: baseline;
}
.v8-shop-price-old {
    color: var(--v8-muted);
    text-decoration: line-through;
    font-size: 12px;
}
.v8-shop-price-new {
    color: var(--v8-text);
    font-weight: 600;
}

/* "Δείτε όλη τη συλλογή" button */
.v8-shop-more {
    text-align: center;
    padding: 16px 0 0;
}
.v8-shop-more-btn {
    display: inline-block;
    font-family: var(--v8-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--v8-accent);
    text-decoration: none;
    border: 1px solid var(--v8-accent);
    padding: 13px 28px;
    transition: all 0.25s;
}
.v8-shop-more-btn:hover {
    background: var(--v8-accent);
    color: #FFF;
    text-decoration: none;
}

@media (max-width: 767px) {
    .v8-shop-info { padding: 10px 10px 12px; }
    .v8-shop-brand { font-size: 14px; }
    .v8-shop-model { font-size: 10px; letter-spacing: 0.5px; }
    .v8-shop-price { font-size: 12.5px; flex-wrap: wrap; }
    .v8-shop-price-old { font-size: 11px; }
    .v8-shop-discount, .v8-shop-new { font-size: 9px; padding: 3px 6px; top: 6px; }
    .v8-shop-discount { left: 6px; }
    .v8-shop-new { right: 6px; }
}

/* ─────────── "Ανακαλύψτε" section ─────────── */
.v8-discover {
    max-width: 1170px;
    margin: 30px auto 0;
    padding: 0 15px 60px;
}
.v8-discover .v8-section-head { padding: 60px 20px 36px; }

/* Row 1: Collections (4 image tiles) */
.v8-discover-collections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 60px;
}
@media (max-width: 991px) { .v8-discover-collections { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .v8-discover-collections { grid-template-columns: 1fr; } }

.v8-discover-tile {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
    text-decoration: none;
    display: block;
}
.v8-discover-tile picture,
.v8-discover-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.v8-discover-tile:hover img,
.v8-discover-tile:hover picture img { transform: scale(1.05); }
.v8-discover-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 45%, transparent 70%);
}
.v8-discover-cap {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    color: #fff;
    z-index: 2;
}
.v8-discover-cap-eyebrow {
    font-family: var(--v8-ui);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 4px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.v8-discover-cap-title {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.1;
    margin: 0;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Row 2: Services (icon cards) */
.v8-discover-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 60px;
}
@media (max-width: 991px) { .v8-discover-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .v8-discover-services { grid-template-columns: 1fr; } }

.v8-discover-service {
    background: var(--v8-accent-soft);
    padding: 28px 22px;
    text-decoration: none;
    color: var(--v8-text);
    transition: background 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid transparent;
}
.v8-discover-service:hover {
    background: #fff;
    border-color: var(--v8-accent);
    transform: translateY(-3px);
    text-decoration: none;
    color: var(--v8-text);
}
.v8-discover-service-icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--v8-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v8-accent);
    font-size: 20px;
    margin: 0 auto 16px;
    transition: background 0.25s, color 0.25s;
}
.v8-discover-service:hover .v8-discover-service-icon {
    background: var(--v8-accent);
    color: #fff;
}
.v8-discover-service-title {
    font-family: var(--v8-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 10px;
    color: var(--v8-text);
    letter-spacing: -0.2px;
}
.v8-discover-service-text {
    font-family: var(--v8-ui);
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--v8-muted);
    margin: 0 0 12px;
    font-weight: 300;
    flex-grow: 1;
}
.v8-discover-service-cta {
    font-family: var(--v8-ui);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--v8-accent);
    font-weight: 500;
    border-bottom: 1px solid var(--v8-accent);
    padding-bottom: 2px;
    display: inline-block;
    align-self: center;
}

/* Row 3: Brand chips */
.v8-discover-brands {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--v8-line);
}
.v8-discover-brands-label {
    font-family: var(--v8-ui);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--v8-muted);
    margin-bottom: 18px;
    font-weight: 600;
}
.v8-discover-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.v8-brand-chip {
    font-family: var(--v8-display);
    font-size: 16px;
    font-weight: 400;
    color: var(--v8-text);
    padding: 9px 18px;
    border: 1px solid var(--v8-line);
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: -0.2px;
}
.v8-brand-chip:hover {
    background: var(--v8-text);
    color: #fff;
    border-color: var(--v8-text);
    text-decoration: none;
}
@media (max-width: 567px) {
    .v8-brand-chip { font-size: 13px; padding: 7px 12px; }
}

/* ─────────── Hide outdated chrome ─────────── */
.parallax-section.parallax-image-1 { display: none !important; }
.eyeshopnews-article .topnaviline,
.eyeshopnews-article .topnaviline1 { display: none !important; }
.eyeshopnews-article .snippet-markup { display: none !important; }  /* hide JSON-only review snippet */

/* Hide outdated G+ share button */
.eyeshopnews-article .share-email[href*="plus.google"] { display: none !important; }
