/*
Theme Name: Holdenim Child V2
Theme URI: https://www.holdenim.com
Template: kadence
Version: 2.0.0
Author: Holdenim
Author URI: https://www.holdenim.com
Description: Theme enfant Holdenim V2 - refonte WooCommerce homogène sans régression fonctionnelle
Tested up to: 7.0
Requires PHP: 8.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: holdemnim-pro
Tags: e-commerce, custom-logo, custom-menu, featured-images
Copyright: 2026 Holdenim
*/

/* ============================================
   HOLDENIM - CUSTOM STYLES
   Denim sur-mesure premium
   ============================================ */

/* Variables CSS - Charte graphique Holdenim */
:root {
    /* Couleurs principales (Update Phase 3) */
    --hdn-deep-indigo: #0F172A;
    --hdn-warm-ivory: #F6F2EA;
    --hdn-tobacco: #8E4B2A;
    --hdn-brass: #B08D57;
    --hdn-text-light: #F6F2EA;
    --hdn-text-dark: #0F172A;
    --hdn-indigo-light: rgba(15, 23, 42, 0.72);

    /* Tokens alias for compatibility with templates */
    --bg-color: var(--hdn-deep-indigo);
    --text-color: var(--hdn-warm-ivory);
    --ivory: var(--hdn-warm-ivory);
    --indigo: var(--hdn-deep-indigo);
    --accent: var(--hdn-brass);
    --tobacco: var(--hdn-tobacco);

    /* Typographies */
    --hdn-font-headings: 'DM Serif Display', Georgia, serif;
    --hdn-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-head: var(--hdn-font-headings);
    --font-body: var(--hdn-font-body);

    /* Espacements */
    --hdn-section-padding: 8rem;
    --hdn-container-max: 1400px;

    /* Transitions */
    --hdn-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE & RESET
   ============================================ */

body {
    font-family: var(--hdn-font-body);
    color: var(--hdn-text-dark);
    background-color: var(--hdn-warm-ivory);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--hdn-font-headings);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* Footer removal handled via PHP hooks */

/* Header & Footer Branding (Phase 3) - REMOVED FOR RESET */


/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--hdn-deep-indigo);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--hdn-text-light);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--hdn-text-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ============================================
   MARQUEE / BANDE DEFILANTE
   ============================================ */

.marquee-section {
    background: var(--hdn-warm-ivory);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--hdn-deep-indigo);
    padding: 0 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
    padding: var(--hdn-section-padding) 0;
    background: var(--hdn-warm-ivory);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--hdn-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--hdn-deep-indigo);
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--hdn-indigo-light);
    max-width: 480px;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================
   COLLECTION SECTION - 8 FITS
   ============================================ */

.collection-section {
    padding: var(--hdn-section-padding) 0;
    background: var(--hdn-deep-indigo);
    color: var(--hdn-text-light);
}

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

.collection-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--hdn-text-light);
}

/* Grille des Fits */
.fits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--hdn-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .fits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fits-grid {
        grid-template-columns: 1fr;
    }
}

/* Carte Fit */
.fit-card {
    position: relative;
    overflow: hidden;
    background: var(--hdn-indigo-light);
    transition: var(--hdn-transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.fit-card:hover {
    transform: translateY(-8px);
}

.fit-card:hover .fit-image {
    transform: scale(1.05);
}

.fit-image-wrapper {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--hdn-transition);
}

.fit-info {
    padding: 1.5rem;
    background: var(--hdn-indigo-light);
}

.fit-name {
    display: block;
    font-family: var(--hdn-font-headings);
    font-size: 1.5rem;
    color: var(--hdn-text-light);
    margin-bottom: 0.25rem;
}

.fit-type {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hdn-brass);
}

/* ============================================
   SHORTS / CAPSULE SECTION
   ============================================ */

/* Collection Page - Shorts Section */
.collection-shorts-section {
    background: var(--hdn-warm-ivory);
    padding: 6rem 0;
}

.shorts-container {
    max-width: var(--hdn-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.shorts-title {
    font-family: var(--hdn-font-headings);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--hdn-deep-indigo);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.shorts-subtitle {
    font-style: italic;
    opacity: 0.8;
}

.shorts-line {
    width: 60px;
    height: 2px;
    background: var(--hdn-brass);
    margin: 1.5rem auto;
}

.shorts-tagline {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hdn-indigo-light);
}

.shorts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.shorts-main-visual {
    position: relative;
    overflow: hidden;
}

.shorts-main-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--hdn-transition);
}

.shorts-main-visual:hover img {
    transform: scale(1.02);
}

.shorts-content {
    padding: 2rem 0;
}

.shorts-text-wrapper {
    max-width: 480px;
}

.shorts-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--hdn-indigo-light);
    margin-bottom: 2rem;
}

.shorts-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.shorts-feature {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hdn-brass);
    padding: 0.5rem 1rem;
    border: 1px solid var(--hdn-brass);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shorts-content {
        text-align: center;
    }

    .shorts-text-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .shorts-features {
        justify-content: center;
    }
}

/* Collection Section Title Enhancement */
.collection-section {
    padding: 6rem 0;
}

.collection-section .section-title {
    font-family: var(--hdn-font-headings);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.collection-section .title-accent {
    font-style: italic;
    opacity: 0.7;
}

/* Hero Intro */
.collection-hero-intro {
    max-width: 600px;
    margin: 2rem auto 0;
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.85;
}

.capsule-section {
    padding: var(--hdn-section-padding) 0;
    background: var(--hdn-warm-ivory);
}

.capsule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--hdn-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.capsule-visual {
    transform: scaleY(-1);
}

.capsule-visual img {
    width: 100%;
    height: auto;
}

.capsule-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--hdn-deep-indigo);
    margin-bottom: 1.5rem;
}

.capsule-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--hdn-indigo-light);
    margin-bottom: 2rem;
    max-width: 440px;
}

/* ============================================
   BOUTONS
   ============================================ */

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--hdn-tobacco);
    color: var(--hdn-text-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: var(--hdn-transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--hdn-brass);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--hdn-deep-indigo);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border: 1px solid var(--hdn-deep-indigo);
    transition: var(--hdn-transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--hdn-deep-indigo);
    color: var(--hdn-text-light);
}

/* ============================================
   FOOTER - REMOVED FOR RESET
   ============================================ */

/* ============================================
   PAGE PRODUIT / PRODUCT PAGE
   ============================================ */

/* Entonnoir de selection */
.funnel-section {
    padding: 6rem 0;
    background: var(--hdn-warm-ivory);
}

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

.funnel-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--hdn-deep-indigo);
    margin-bottom: 1rem;
}

.funnel-subtitle {
    font-size: 1rem;
    color: var(--hdn-indigo-light);
    opacity: 0.8;
}

/* Options d'entonnoir */
.funnel-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.funnel-option {
    position: relative;
    background: var(--hdn-deep-indigo);
    overflow: hidden;
    cursor: pointer;
    transition: var(--hdn-transition);
}

.funnel-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.funnel-option-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.funnel-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--hdn-transition);
}

.funnel-option:hover .funnel-option-image img {
    transform: scale(1.05);
}

.funnel-option-info {
    padding: 1.5rem;
    text-align: center;
}

.funnel-option-name {
    font-family: var(--hdn-font-headings);
    font-size: 1.25rem;
    color: var(--hdn-text-light);
    margin-bottom: 0.5rem;
}

.funnel-option-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hdn-brass);
}

/* ============================================
   PAGE COLLECTION
   ============================================ */

.collection-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hdn-deep-indigo);
    color: var(--hdn-text-light);
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.collection-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
}

.collection-hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

/* ============================================
   PAGE SAVOIR-FAIRE
   ============================================ */

.savoir-faire-section {
    padding: var(--hdn-section-padding) 0;
    background: var(--hdn-warm-ivory);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--hdn-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    text-align: center;
    padding: 2rem;
}

.process-number {
    font-family: var(--hdn-font-headings);
    font-size: 4rem;
    color: var(--hdn-brass);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.25rem;
    color: var(--hdn-deep-indigo);
    margin-bottom: 1rem;
}

.process-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--hdn-indigo-light);
    opacity: 0.8;
}

/* ============================================
   PAGE GUIDE / FAQ
   ============================================ */

.guide-section {
    padding: var(--hdn-section-padding) 0;
    background: var(--hdn-warm-ivory);
}

.faq-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hdn-deep-indigo);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--hdn-indigo-light);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   PAGE CONTACT
   ============================================ */

.contact-section {
    padding: var(--hdn-section-padding) 0;
    background: var(--hdn-warm-ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--hdn-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--hdn-deep-indigo);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hdn-brass);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--hdn-deep-indigo);
}

.contact-value a {
    color: var(--hdn-deep-indigo);
    text-decoration: none;
    transition: var(--hdn-transition);
}

.contact-value a:hover {
    color: var(--hdn-tobacco);
}

/* Formulaire de contact */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.2);
    font-size: 0.875rem;
    color: var(--hdn-deep-indigo);
    margin-bottom: 1rem;
    transition: var(--hdn-transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--hdn-tobacco);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    :root {
        --hdn-section-padding: 4rem;
    }

    .intro-grid,
    .capsule-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 1rem;
    }
}

/* ============================================
   UTILITAIRES
   ============================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Hide breadcrumb trail for cleaner premium pages. */
.kadence-breadcrumbs {
    display: none !important;
}

body.single-product .product-title.product-above {
    display: none !important;
}

/* ============================================
   PHASE 2: RESPONSIVE SECTION ENHANCEMENTS
   ============================================ */

/* Section Padding Responsive */
.wp-block-group,
.wp-block-cover,
.entry-content>.alignwide,
.entry-content>.alignfull {
    padding-left: 4rem;
    padding-right: 4rem;
}

@media (max-width: 1024px) {

    .wp-block-group,
    .wp-block-cover,
    .entry-content>.alignwide,
    .entry-content>.alignfull {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    :root {
        --hdn-section-padding: 5rem;
    }
}

@media (max-width: 640px) {

    .wp-block-group,
    .wp-block-cover,
    .entry-content>.alignwide,
    .entry-content>.alignfull {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    :root {
        --hdn-section-padding: 3.5rem;
    }

    /* Hero responsive */
    .hero-title {
        font-size: 2.5rem;
    }

    /* Intro grid single column on mobile */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   HOMEPAGE - CUSTOM TEMPLATE STYLES
   front-page.php specific styles with animations
   ============================================ */

/* --- HERO SECTION --- */
.hp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem;
    position: relative;
    background: var(--hdn-deep-indigo);
    overflow: hidden;
}

.hp-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hp-hero .hero-bg img,
.hp-hero .hero-bg .hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.45;
}

.hp-hero .hero-bg .hero-bg-video {
    display: block;
}

.hp-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.65) 65%);
}

.hp-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 1320px);
    margin-inline: auto;
    text-align: center;
}

.hp-hero .hero-title {
    font-family: var(--hdn-font-headings);
    font-weight: 400;
    font-size: clamp(3.4rem, 9.2vw, 10.8rem);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hdn-warm-ivory);
    opacity: 0;
    animation: titleReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    width: 100%;
    margin-inline: auto;
    text-align: center;
}

.hp-hero .hero-title-line {
    display: block;
    margin-inline: auto;
    text-align: center;
}

.hp-hero .hero-title-line--bottom {
    margin-top: clamp(0.28rem, 0.75vw, 0.78rem);
}

.hp-hero .hero-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(500px, 82vw);
    min-width: 0;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(0.55rem, 1.05vw, 1.15rem);
    padding: 0.85rem 0;
    text-transform: uppercase;
    letter-spacing: clamp(0.46em, 0.82vw, 0.74em);
    font-size: clamp(0.92rem, 1.38vw, 1.54rem);
    line-height: 1.2;
    color: var(--hdn-warm-ivory);
    opacity: 0;
    animation: subReveal 1.1s ease forwards 1.05s;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Hero Animations */
@keyframes titleReveal {
    0% {
        transform: translateY(28px) scale(1.02);
        opacity: 0;
        letter-spacing: 0.12em;
        filter: blur(6px);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        letter-spacing: 0.04em;
        filter: blur(0);
    }
}

@keyframes subReveal {
    from {
        transform: translateY(16px);
        opacity: 0;
    }

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

/* --- INTRO SECTION with MARQUEE --- */
.hp-intro {
    background: var(--hdn-warm-ivory);
    color: var(--hdn-deep-indigo);
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: auto;
}

.hp-intro .marquee-container {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.05;
    font-family: var(--hdn-font-headings);
    font-size: 12rem;
    line-height: 1;
    pointer-events: none;
    color: var(--hdn-deep-indigo);
}

.hp-intro .marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hp-intro .intro-text {
    position: relative;
    z-index: 1;
}

.hp-intro .intro-text h2 {
    font-family: var(--hdn-font-headings);
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    margin-bottom: 2rem;
    color: var(--hdn-brass);
    line-height: 1.1;
}

.hp-intro .intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 1rem;
}

.hp-intro .intro-visual {
    position: relative;
    z-index: 1;
}

.hp-intro .intro-visual img {
    width: 100%;
    box-shadow: 2rem 2rem 0px rgba(15, 23, 42, 0.05);
}

/* --- COLLECTION SECTION - 8 FITS --- */
.hp-collection {
    background: var(--hdn-deep-indigo);
    z-index: 2;
    padding: 8rem 4rem;
    min-height: auto;
}

.hp-collection .collection-header {
    margin-bottom: 4rem;
    text-align: left;
}

.hp-collection .collection-title {
    font-family: var(--hdn-font-headings);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    color: var(--hdn-warm-ivory);
}

.hp-collection .collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hp-collection .fit-card {
    aspect-ratio: 9/15;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border 0.3s ease;
    display: block;
}

.hp-collection .fit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.hp-collection .fit-card:hover {
    border-color: var(--hdn-brass);
}

.hp-collection .fit-card:hover .fit-img {
    transform: scale(1.05);
    opacity: 1;
}

.hp-collection .fit-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}

.hp-collection .fit-name {
    font-family: var(--hdn-font-headings);
    font-size: 1.55rem;
    display: block;
    letter-spacing: 0.02em;
    color: var(--hdn-warm-ivory);
}

.hp-collection .fit-desc {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--hdn-brass);
    letter-spacing: 0.14em;
}

.hp-collection .collection-more {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.hp-collection .collection-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.8rem;
    border-radius: 999px;
    border: 1px solid rgba(250, 247, 242, 0.35);
    color: var(--hdn-warm-ivory);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 600;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hp-collection .collection-more-link:hover,
.hp-collection .collection-more-link:focus-visible {
    background: rgba(184, 134, 11, 0.18);
    border-color: var(--hdn-brass);
    transform: translateY(-1px);
    outline: none;
}

/* --- SHORTS SECTION --- */
.hp-shorts {
    background: var(--hdn-warm-ivory);
    color: var(--hdn-deep-indigo);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    z-index: 2;
    min-height: auto;
}

.hp-shorts .shorts-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-shorts .shorts-content {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hp-shorts .shorts-content h2 {
    font-family: var(--hdn-font-headings);
    font-size: clamp(2.6rem, 4.2vw, 4rem);
    margin-bottom: 2rem;
    color: var(--hdn-deep-indigo);
}

.hp-shorts .shorts-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 480px;
}

.hp-shorts .btn-main {
    display: inline-block;
    padding: 1.1rem 2.4rem;
    border: 1px solid var(--hdn-deep-indigo);
    background: transparent;
    color: var(--hdn-deep-indigo);
    font-family: var(--hdn-font-body);
    font-size: 0.8rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-align: center;
}

.hp-shorts .btn-main:hover {
    background: var(--hdn-deep-indigo);
    color: var(--hdn-warm-ivory);
}

/* --- HOMEPAGE RESPONSIVE --- */
@media (max-width: 1024px) {
    .hp-hero {
        min-height: 100dvh;
        padding: 2rem;
    }

    .hp-hero .hero-bg img,
    .hp-hero .hero-bg .hero-bg-video {
        object-position: 75% center;
    }

    .hp-hero .hero-title {
        font-size: 2.8rem;
        width: 90%;
        margin: 0 auto;
    }

    .hp-hero .hero-sub {
        min-width: 0;
        width: 100%;
        max-width: min(420px, 88vw);
        padding: 0;
        letter-spacing: 0.32em;
        font-size: 0.85rem;
    }

    .hp-intro {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
        gap: 3rem;
        text-align: center;
    }

    .hp-intro .intro-text p {
        margin: 0 auto 1rem;
    }

    .hp-collection {
        padding: 4rem 2rem;
    }

    .hp-collection .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .hp-shorts .shorts-visual {
        height: 50vh;
    }

    .hp-shorts .shorts-content {
        padding: 4rem 2rem;
        text-align: center;
    }

    .hp-shorts .shorts-content p {
        margin: 0 auto;
    }

    .hp-shorts .btn-main {
        margin: 2rem auto 0;
    }

    .hp-collection .collection-more {
        margin-top: 2rem;
    }

    .hp-collection .collection-more-link {
        width: min(100%, 320px);
    }
}

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

    .hp-intro .marquee-container {
        font-size: 6rem;
    }
}

/* ============================================
   PREMIUM ACCOUNT PAGES
   ============================================ */

/* --- AUTH CONTAINER (Login/Register) --- */
.hdn-auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hdn-auth-visual {
    background: var(--hdn-auth-visual-bg, var(--hdn-deep-indigo));
    background-image: var(--hdn-auth-visual-image, none);
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem;
    overflow: hidden;
}

.hdn-auth-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--hdn-auth-visual-text, var(--hdn-text-light));
}

.hdn-auth-logo .logo-text {
    font-family: var(--hdn-font-headings);
    font-size: 2rem;
    letter-spacing: 0.3em;
    color: var(--hdn-auth-visual-accent, var(--hdn-brass));
}

.hdn-auth-tagline {
    font-family: var(--hdn-font-headings);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 2rem 0 1rem;
    line-height: 1.2;
    color: var(--hdn-auth-visual-tagline, var(--hdn-auth-visual-text, var(--hdn-text-light))) !important;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hdn-auth-tagline em {
    font-style: italic;
    opacity: 0.8;
}

.hdn-auth-subtitle {
    font-size: 1rem;
    opacity: 0.7;
    max-width: 300px;
    margin: 0 auto;
    color: var(--hdn-auth-visual-text, var(--hdn-text-light)) !important;
}

.hdn-auth-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(15, 23, 42, var(--hdn-auth-overlay-alpha, 0.56)), rgba(15, 23, 42, var(--hdn-auth-overlay-alpha, 0.56))),
        radial-gradient(circle at 30% 70%, rgba(184, 134, 11, 0.14) 0%, transparent 52%);
}

.hdn-auth-forms {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--hdn-auth-forms-bg, var(--hdn-warm-ivory));
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
}

.hdn-auth-forms-inner {
    width: 100%;
    max-width: 400px;
}

.hdn-auth-notices:empty {
    display: none;
}

.hdn-auth-notices .woocommerce-notices-wrapper {
    margin: 0 0 1rem;
}

.hdn-auth-notices .woocommerce-error,
.hdn-auth-notices .woocommerce-message,
.hdn-auth-notices .woocommerce-info {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(176, 141, 87, 0.28);
    border-left: 3px solid var(--hdn-auth-visual-accent, var(--hdn-brass));
    border-radius: 8px;
    background: #f7f3eb;
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    font-size: 0.88rem;
    line-height: 1.45;
    box-shadow: 0 4px 14px rgba(12, 24, 44, 0.06);
}

.hdn-auth-notices .woocommerce-error a,
.hdn-auth-notices .woocommerce-message a,
.hdn-auth-notices .woocommerce-info a {
    color: var(--hdn-auth-visual-accent, var(--hdn-brass));
    font-weight: 600;
}

.hdn-auth-notices .woocommerce-error li,
.hdn-auth-notices .woocommerce-message li,
.hdn-auth-notices .woocommerce-info li {
    margin: 0;
    padding: 0;
}

/* Auth Tabs */
.hdn-auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.25rem;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 8px;
}

.hdn-auth-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-family: var(--hdn-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    opacity: 0.72;
    cursor: pointer;
    transition: var(--hdn-transition);
    border-radius: 6px;
}

.hdn-auth-tab.active {
    background: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    color: var(--hdn-auth-forms-bg, var(--hdn-warm-ivory));
    opacity: 1;
}

/* Auth Panels */
.hdn-auth-panel {
    display: none;
}

.hdn-auth-panel.active {
    display: block;
}

.hdn-auth-header {
    margin-bottom: 2rem;
}

.hdn-auth-header h2 {
    font-size: 1.75rem;
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    margin-bottom: 0.5rem;
}

.hdn-auth-header p {
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    opacity: 0.72;
    font-size: 0.9375rem;
}

/* Form Styling */
.hdn-auth-form {
    margin-bottom: 1.5rem;
}

.hdn-form-group {
    margin-bottom: 1.25rem;
}

.hdn-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    margin-bottom: 0.5rem;
}

.hdn-input,
.hdn-auth-form input[type="text"],
.hdn-auth-form input[type="email"],
.hdn-auth-form input[type="password"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--hdn-font-body);
    background: #fff;
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    transition: var(--hdn-transition);
}

.hdn-input:focus,
.hdn-auth-form input:focus {
    outline: none;
    border-color: var(--hdn-auth-visual-accent, var(--hdn-brass));
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.14);
}

.hdn-input::placeholder {
    color: rgba(15, 23, 42, 0.45);
}

/* Password Toggle */
.hdn-password-wrapper {
    position: relative;
}

.hdn-password-wrapper input {
    padding-right: 3rem;
}

.hdn-password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    opacity: 0.6;
    transition: var(--hdn-transition);
}

.hdn-password-toggle:hover,
.hdn-password-toggle.active {
    opacity: 1;
    color: var(--hdn-auth-visual-accent, var(--hdn-brass));
}

/* Checkbox */
.hdn-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    cursor: pointer;
}

.hdn-checkbox-label input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}

.hdn-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(15, 23, 42, 0.2);
    border-radius: 4px;
    transition: var(--hdn-transition);
    position: relative;
}

.hdn-checkbox-label input:checked+.hdn-checkbox-custom {
    background: var(--hdn-auth-visual-accent, var(--hdn-brass));
    border-color: var(--hdn-auth-visual-accent, var(--hdn-brass));
}

.hdn-checkbox-label input:checked+.hdn-checkbox-custom::after {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.hdn-checkbox-label input:focus-visible+.hdn-checkbox-custom {
    outline: 2px solid var(--hdn-auth-visual-accent, var(--hdn-brass));
    outline-offset: 2px;
}

.hdn-inline-error {
    margin: 0.5rem 0 0;
    color: #9f1239;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.woocommerce-form-register__submit.is-loading {
    opacity: 0.72;
    cursor: wait;
}

/* Form Row */
.hdn-form-row-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hdn-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Links */
.hdn-link {
    color: var(--hdn-auth-visual-accent, var(--hdn-brass));
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--hdn-transition);
}

.hdn-link:hover {
    text-decoration: underline;
}

/* Buttons */
.hdn-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--hdn-transition);
    border: none;
    text-decoration: none;
}

.hdn-btn-primary {
    background: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    color: var(--hdn-auth-forms-bg, var(--hdn-warm-ivory));
}

.hdn-btn-primary:hover {
    background: var(--hdn-auth-visual-accent, var(--hdn-brass));
    color: var(--hdn-auth-forms-bg, var(--hdn-warm-ivory));
}

.hdn-btn-outline {
    background: transparent;
    border: 1px solid var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
}

.hdn-btn-outline:hover {
    background: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    color: var(--hdn-auth-forms-bg, var(--hdn-warm-ivory));
}

/* Divider */
.hdn-auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.hdn-auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(15, 23, 42, 0.12);
}

.hdn-auth-divider span {
    background: var(--hdn-auth-forms-bg, var(--hdn-warm-ivory));
    padding: 0 1rem;
    position: relative;
    font-size: 0.8125rem;
    color: var(--hdn-auth-forms-text, var(--hdn-deep-indigo));
    opacity: 0.72;
}

/* --- DASHBOARD --- */
.hdn-dashboard {
    max-width: 900px;
    margin: 0 auto;
}

.hdn-dashboard-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.hdn-dashboard-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hdn-brass);
}

.hdn-dashboard-welcome h2 {
    font-size: 1.5rem;
    color: var(--hdn-deep-indigo);
    margin-bottom: 0.25rem;
}

.hdn-dashboard-welcome p {
    color: var(--hdn-indigo-light);
    font-size: 0.9375rem;
}

.hdn-accent {
    color: var(--hdn-brass);
}

/* Stats */
.hdn-dashboard-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hdn-stat-card {
    flex: 1;
    padding: 1.5rem;
    background: var(--hdn-deep-indigo);
    color: var(--hdn-text-light);
    border-radius: 12px;
    text-align: center;
}

.hdn-stat-card.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.hdn-stat-card.pending {
    background: rgba(234, 179, 8, 0.1);
    color: #ca8a04;
}

.hdn-stat-number {
    display: block;
    font-family: var(--hdn-font-headings);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hdn-stat-icon svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.hdn-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Dashboard Grid */
.hdn-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hdn-dashboard-card {
    position: relative;
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--hdn-transition);
    overflow: hidden;
}

.hdn-dashboard-card:hover {
    border-color: var(--hdn-brass);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.hdn-dashboard-card.highlight {
    border-color: var(--hdn-brass);
    background: rgba(184, 134, 11, 0.03);
}

.hdn-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    color: var(--hdn-deep-indigo);
}

.hdn-dashboard-card h3 {
    font-size: 1.125rem;
    color: var(--hdn-deep-indigo);
    margin-bottom: 0.5rem;
}

.hdn-dashboard-card p {
    font-size: 0.875rem;
    color: var(--hdn-indigo-light);
    line-height: 1.5;
}

.hdn-card-arrow {
    position: absolute;
    right: 1.5rem;
    top: 2rem;
    font-size: 1.25rem;
    color: var(--hdn-brass);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--hdn-transition);
}

.hdn-dashboard-card:hover .hdn-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.hdn-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--hdn-brass);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

/* Dashboard Footer */
.hdn-dashboard-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    text-align: center;
}

.hdn-logout-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--hdn-indigo-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--hdn-transition);
}

.hdn-logout-link:hover {
    color: var(--hdn-tobacco);
}

/* --- ACCOUNT NAVIGATION --- */
.hdn-account-nav {
    background: var(--hdn-deep-indigo);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--hdn-text-light);
}

.hdn-nav-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hdn-nav-title {
    font-family: var(--hdn-font-headings);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hdn-brass);
}

.hdn-account-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hdn-account-nav li {
    margin-bottom: 0.25rem;
}

.hdn-account-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--hdn-text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--hdn-transition);
    font-size: 0.9375rem;
}

.hdn-account-nav a:hover,
.hdn-account-nav .is-active a {
    background: rgba(255, 255, 255, 0.1);
}

.hdn-account-nav .is-active a {
    color: var(--hdn-brass);
}

.hdn-nav-icon {
    opacity: 0.7;
    display: flex;
}

.hdn-account-nav .is-active .hdn-nav-icon {
    opacity: 1;
}

/* WooCommerce Account Page Override */
.woocommerce-account .entry-hero.page-hero-section,
.woocommerce-cart .entry-hero.page-hero-section,
.woocommerce-checkout .entry-hero.page-hero-section {
    display: none !important;
}

.woocommerce-account .content-area,
.woocommerce-cart .content-area,
.woocommerce-checkout .content-area {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Remove Kadence top spacing on account auth page (prevents white gap under header). */
body.woocommerce-account #inner-wrap,
body.woocommerce-account .content-container,
body.woocommerce-account .content-wrap,
body.woocommerce-account .entry.content-bg,
body.woocommerce-account .entry-content-wrap,
body.woocommerce-account .entry-content.single-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.woocommerce-account.logged-in .woocommerce {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

body.woocommerce-account.logged-in .woocommerce::before,
body.woocommerce-account.logged-in .woocommerce::after {
    display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    order: 2;
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
    float: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    float: none;
    box-sizing: border-box;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    min-height: 400px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hdn-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hdn-auth-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hdn-auth-visual {
        display: none;
    }

    .hdn-auth-forms {
        align-items: flex-start;
        justify-content: flex-start;
        min-height: 0;
        padding: 1.5rem 1rem 2rem;
    }

    .hdn-auth-forms-inner {
        max-width: 520px;
        margin: 0 auto;
    }

    .hdn-form-row-2col {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account.logged-in .woocommerce {
        display: block;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        order: initial;
        width: 100%;
        max-width: none;
        float: none;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 2rem;
    }

    .hdn-dashboard-stats {
        flex-direction: column;
    }

    .hdn-dashboard-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   PANIER PREMIUM
   ============================================ */

.woocommerce-cart .hdn-cart-empty-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) 2rem;
}

.hdn-cart-empty {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    min-height: 420px;
}

.hdn-cart-empty-visual {
    position: relative;
    background:
        linear-gradient(150deg, rgba(15, 23, 42, 0.9) 0%, rgba(21, 45, 92, 0.84) 55%, rgba(11, 26, 58, 0.92) 100%),
        url('./assets/images/fabric-texture.jpg') center/cover no-repeat;
    color: var(--hdn-warm-ivory);
    padding: clamp(2.2rem, 5vw, 3.6rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
}

.hdn-cart-empty-kicker {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(246, 242, 234, 0.85);
}

.hdn-cart-empty-brand {
    margin: 0;
    font-family: var(--hdn-font-headings);
    font-size: clamp(2rem, 4.8vw, 3rem);
    line-height: 0.9;
    color: var(--hdn-warm-ivory);
}

.hdn-cart-empty-note {
    margin: 0;
    max-width: 28ch;
    color: rgba(246, 242, 234, 0.82);
    line-height: 1.65;
}

.hdn-cart-empty-content {
    padding: clamp(2rem, 4vw, 3.2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hdn-cart-empty-content h1 {
    margin: 0;
    font-family: var(--hdn-font-headings);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    color: var(--hdn-deep-indigo);
}

.hdn-cart-empty-content p {
    margin: 0;
    max-width: 60ch;
    color: rgba(15, 23, 42, 0.78);
    line-height: 1.72;
}

.hdn-cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hdn-cart-empty-actions .button {
    margin: 0;
    min-width: 220px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hdn-cart-empty-actions .button.alt {
    background: var(--hdn-deep-indigo);
    border: 1px solid var(--hdn-deep-indigo);
    color: var(--hdn-warm-ivory);
}

.hdn-cart-empty-actions .button.alt:hover {
    background: var(--hdn-brass);
    border-color: var(--hdn-brass);
    color: var(--hdn-warm-ivory);
}

.hdn-cart-empty-actions .button:not(.alt) {
    background: transparent;
    border: 1px solid var(--hdn-deep-indigo);
    color: var(--hdn-deep-indigo);
}

.hdn-cart-empty-actions .button:not(.alt):hover {
    background: var(--hdn-deep-indigo);
    color: var(--hdn-warm-ivory);
}

.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.woocommerce-cart .woocommerce-info.cart-empty {
    display: none;
}

.woocommerce-cart-form {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart-form__contents th {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #666;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.woocommerce-cart-form__contents td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
}

.woocommerce-cart-form .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.woocommerce-cart-form .product-name a {
    color: var(--hdn-deep-indigo);
    font-weight: 500;
    text-decoration: none;
}

.woocommerce-cart-form .product-name a:hover {
    color: var(--hdn-brass);
}

.woocommerce-cart-form .product-remove a {
    color: #999;
    font-size: 1.5rem;
    text-decoration: none;
}

.woocommerce-cart-form .product-remove a:hover {
    color: #e74c3c;
}

/* Totaux panier */
.cart_totals {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.cart_totals h2 {
    font-family: var(--hdn-font-headings);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cart_totals table {
    width: 100%;
}

.cart_totals th,
.cart_totals td {
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: none;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    background: var(--hdn-deep-indigo);
    color: #fff;
    padding: 1.25rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: var(--hdn-brass);
}

@media (max-width: 960px) {
    .hdn-cart-empty {
        grid-template-columns: 1fr;
    }

    .hdn-cart-empty-visual {
        min-height: 240px;
        justify-content: center;
    }

    .hdn-cart-empty-actions .button {
        min-width: 0;
        width: 100%;
    }
}

/* ============================================
   CHECKOUT PREMIUM
   ============================================ */

.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.woocommerce-checkout h3 {
    font-family: var(--hdn-font-headings);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--hdn-deep-indigo);
}

.woocommerce-checkout .form-row {
    margin-bottom: 1.25rem;
}

.woocommerce-checkout label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--hdn-deep-indigo);
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none;
    border-color: var(--hdn-brass);
}

/* Recapitulatif commande */
.woocommerce-checkout-review-order {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.woocommerce-checkout-payment {
    margin-top: 2rem;
}

#place_order {
    width: 100%;
    background: var(--hdn-deep-indigo);
    color: #fff;
    border: none;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

#place_order:hover {
    background: var(--hdn-brass);
}

/* ============================================
   JOURNAL BLOG PREMIUM
   ============================================ */

/* Hero Section */
.hdn-journal-hero {
    background: linear-gradient(135deg, var(--hdn-deep-indigo) 0%, #1a2744 100%);
    padding: 8rem 2rem 6rem;
    text-align: center;
    color: var(--hdn-warm-ivory);
}

.hdn-journal-hero .hero-eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--hdn-brass);
    margin-bottom: 1rem;
}

.hdn-journal-hero .hero-title {
    font-family: var(--hdn-font-headings);
    font-size: clamp(3rem, 8vw, 5rem);
    margin: 0 0 1.5rem;
    font-weight: 400;
}

.hdn-journal-hero .hero-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    opacity: 0.85;
    line-height: 1.8;
}

/* Filtres */
.hdn-journal-filters {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.hdn-journal-filters .filters-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    justify-content: center;
}

.hdn-journal-filters .filter-link {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.hdn-journal-filters .filter-link:hover,
.hdn-journal-filters .filter-link.active {
    color: var(--hdn-deep-indigo);
    border-bottom-color: var(--hdn-brass);
}

/* Contenu Journal */
.hdn-journal-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Article en vedette */
.hdn-journal-featured {
    margin-bottom: 4rem;
}

.hdn-journal-featured .featured-link {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hdn-journal-featured .featured-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.hdn-journal-featured .featured-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.hdn-journal-featured .featured-content {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hdn-journal-featured .article-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hdn-brass);
    margin-bottom: 1rem;
}

.hdn-journal-featured .article-title {
    font-family: var(--hdn-font-headings);
    font-size: 2rem;
    color: var(--hdn-deep-indigo);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.hdn-journal-featured .article-excerpt {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hdn-journal-featured .article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #888;
}

/* Grille d'articles */
.hdn-journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.hdn-journal-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hdn-journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hdn-journal-card .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hdn-journal-card .card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hdn-journal-card .card-content {
    padding: 1.5rem;
}

.hdn-journal-card .article-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hdn-brass);
    margin-bottom: 0.75rem;
}

.hdn-journal-card .article-title {
    font-family: var(--hdn-font-headings);
    font-size: 1.25rem;
    color: var(--hdn-deep-indigo);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.hdn-journal-card .article-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hdn-journal-card .article-date {
    color: #999;
    font-size: 0.8rem;
}

/* Pagination */
.hdn-journal-pagination {
    margin-top: 4rem;
    text-align: center;
}

.hdn-journal-pagination ul {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hdn-journal-pagination a,
.hdn-journal-pagination span {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: #fff;
    color: var(--hdn-deep-indigo);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.hdn-journal-pagination a:hover,
.hdn-journal-pagination .current {
    background: var(--hdn-deep-indigo);
    color: #fff;
}

/* Newsletter */
.hdn-journal-newsletter {
    background: linear-gradient(135deg, var(--hdn-deep-indigo) 0%, #1a2744 100%);
    padding: 6rem 2rem;
    margin-top: 4rem;
    text-align: center;
    color: var(--hdn-warm-ivory);
}

.hdn-journal-newsletter h2 {
    font-family: var(--hdn-font-headings);
    font-size: 2.5rem;
    margin: 0 0 1rem;
}

.hdn-journal-newsletter p {
    max-width: 500px;
    margin: 0 auto 2rem;
    opacity: 0.85;
}

.hdn-journal-newsletter .newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.hdn-journal-newsletter input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.hdn-journal-newsletter button {
    padding: 1rem 2rem;
    background: var(--hdn-brass);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.hdn-journal-newsletter button:hover {
    background: #c9a96e;
}

/* ============================================
   ARTICLE SINGLE PREMIUM
   ============================================ */

.hdn-journal-single {
    background: var(--hdn-warm-ivory);
}

/* Hero Article */
.hdn-article-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 4rem 2rem;
}

.hdn-article-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hdn-article-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hdn-article-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hdn-article-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hdn-article-hero .article-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--hdn-brass);
    background: rgba(176, 141, 87, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: background 0.3s;
}

.hdn-article-hero .article-category:hover {
    background: var(--hdn-brass);
    color: #fff;
}

.hdn-article-hero .article-title {
    font-family: var(--hdn-font-headings);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.hdn-article-hero .article-meta {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hdn-article-hero .meta-sep {
    opacity: 0.5;
}

/* Corps Article */
.hdn-article-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 3rem;
}

/* Partage Social */
.hdn-article-share {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hdn-article-share .share-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 0.5rem;
}

.hdn-article-share .share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #666;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hdn-article-share .share-link:hover {
    background: var(--hdn-deep-indigo);
    color: #fff;
}

/* Contenu Article */
.hdn-article-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #333;
}

.hdn-article-content h2 {
    font-family: var(--hdn-font-headings);
    font-size: 1.75rem;
    color: var(--hdn-deep-indigo);
    margin: 3rem 0 1.5rem;
}

.hdn-article-content h3 {
    font-family: var(--hdn-font-headings);
    font-size: 1.35rem;
    color: var(--hdn-deep-indigo);
    margin: 2.5rem 0 1rem;
}

.hdn-article-content p {
    margin-bottom: 1.5rem;
}

.hdn-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.hdn-article-content blockquote {
    border-left: 3px solid var(--hdn-brass);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.hdn-article-content a {
    color: var(--hdn-brass);
    text-decoration: underline;
}

/* Footer Article */
.hdn-article-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.hdn-article-footer .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hdn-article-footer .tags-label {
    font-size: 0.875rem;
    color: #666;
}

.hdn-article-footer .tag-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    color: var(--hdn-deep-indigo);
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.hdn-article-footer .tag-link:hover {
    background: var(--hdn-deep-indigo);
    color: #fff;
}

/* Auteur */
.hdn-article-author {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.hdn-article-author .author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.hdn-article-author .author-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
}

.hdn-article-author .author-name {
    font-family: var(--hdn-font-headings);
    font-size: 1.25rem;
    margin: 0.25rem 0 0.5rem;
    color: var(--hdn-deep-indigo);
}

.hdn-article-author .author-bio {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Navigation Articles */
.hdn-article-nav {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hdn-article-nav .nav-link {
    display: block;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hdn-article-nav .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hdn-article-nav .nav-label {
    display: block;
    font-size: 0.75rem;
    color: var(--hdn-brass);
    margin-bottom: 0.5rem;
}

.hdn-article-nav .nav-title {
    display: block;
    font-family: var(--hdn-font-headings);
    font-size: 1.1rem;
    color: var(--hdn-deep-indigo);
    line-height: 1.3;
}

.hdn-article-nav .nav-next {
    text-align: right;
}

/* Articles Relies */
.hdn-related-posts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    border-top: 1px solid #eee;
}

.hdn-related-posts h2 {
    font-family: var(--hdn-font-headings);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--hdn-deep-indigo);
}

.hdn-related-posts .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hdn-related-posts .related-card a {
    text-decoration: none;
    color: inherit;
}

.hdn-related-posts .related-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.hdn-related-posts .related-card:hover .related-image img {
    transform: scale(1.02);
}

.hdn-related-posts .related-title {
    font-family: var(--hdn-font-headings);
    font-size: 1.125rem;
    color: var(--hdn-deep-indigo);
    margin: 1rem 0 0.5rem;
}

.hdn-related-posts .related-date {
    color: #888;
    font-size: 0.8rem;
}

/* Placeholder images */
.placeholder-image {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* Journal Responsive */
@media (max-width: 992px) {
    .hdn-journal-featured .featured-link {
        grid-template-columns: 1fr;
    }

    .hdn-journal-featured .featured-content {
        padding: 2rem;
    }

    .hdn-article-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hdn-article-share {
        position: relative;
        top: 0;
        flex-direction: row;
        justify-content: center;
    }

    .hdn-article-share .share-label {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .hdn-related-posts .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hdn-journal-hero {
        padding: 6rem 1.5rem 4rem;
    }

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

    .hdn-journal-newsletter .newsletter-form {
        flex-direction: column;
    }

    .hdn-article-nav {
        grid-template-columns: 1fr;
    }

    .hdn-related-posts .related-grid {
        grid-template-columns: 1fr;
    }
}
