@font-face {
    font-family: 'Mont-Heavy';
    src: url('../fonts/Mont-Heavy.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Mont-Book';
    src: url('../fonts/Mont-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TheErupha';
    src: url("../fonts/The Erupha.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #1a1a1a;
    --text-color: #f0f0f0;
    --accent-color: #d4af37;
    --modal-bg: #fff;
    --modal-text: #000;
    --font-heading: 'Mont-Heavy', sans-serif;
    --font-body: 'Mont-Book', sans-serif;
    --font-elegant: 'TheErupha', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Hero Section (Video) */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Luxury standard */
    overflow: hidden;
    background: #000;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.video-loading {
    opacity: 0.3;
    /* Muestra el póster de fondo con un poco del video cargando */
}

.hero-video.video-ready {
    opacity: 1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Fallback/Adjustment for header overlap if needed */
.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight overlay for text readability if needed */
    pointer-events: none;
}

/* About Us Section (Split Layout) */
.about-section {
    width: 100%;
    background: #111;
    /* Slightly lighter than main bg */
}

.about-container-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
}

.about-image-col {
    flex: 1;
    min-width: 50%;
    /* Desktop: 50% */
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: url('../../uploads/about-visual.jpg') center/cover no-repeat;
    /* User needs to upload 'about-visual.jpg', using fallback color for now */
    background-color: #d4af37;
    /* Gold fallback */
}

.about-content-col {
    flex: 1;
    min-width: 50%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0d0d0d;
}

.about-logo-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.about-logo {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.about-text-content {
    color: #e0e0e0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
}

.about-text-content p {
    margin-bottom: 25px;
}

.highlight-p {
    font-size: 1rem;
}

.about-divider-line {
    width: 100px;
    height: 1px;
    background: #ffffff;
    margin-top: 40px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {

    .about-image-col,
    .about-content-col {
        min-width: 100%;
        flex: 100%;
    }

    .about-content-col {
        padding: 40px 20px;
    }

    .hero-video-container {
        height: 45vh;
        /* Ajuste para móviles para evitar que ocupe demasiado o se vea desproporcionado */
    }
}

/* --- TOP BAR & HEADER REFINED --- */
.top-announcement-bar {
    background: #d4a373;
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.main-header {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, top 0.4s ease;
    padding: 20px 0;
}

.home-header {
    background: transparent !important;
}

.static-header {
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    padding: 10px 0;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height 0.3s;
}

.static-header .logo-img {
    height: 45px;
}

.desktop-nav {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #d4a373;
}

.nav-links .separator {
    color: #555;
    font-size: 0.60rem;
}

/* Utils */
.header-utils {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-box-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3px;
}

.search-box-header input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.7rem;
    padding: 5px;
    outline: none;
    width: 120px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.icon-links {
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
}

.icon-item {
    color: #fff;
    text-decoration: none;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #d4a373;
    color: #000;
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 1px;
    background: #fff;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: 7px;
}

/* --- MOBILE NAVIGATION OVERLAY --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2000;
    transition: right 0.5s ease;
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
}

.mobile-nav-overlay.active {
    right: 0;
}

.close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 60px;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-nav-links li a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-utils {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #333;
    padding-top: 40px;
}

.mobile-utils a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* --- MAIN CONTENT --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.main-content-padding {
    padding-top: 40px;
    min-height: 60vh;
}

.section-divider {
    text-align: center;
    margin: 30px 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* --- RENACE Banner --- */
.banner-renace {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('../../uploads/renace-banner.jpg') center/cover no-repeat fixed;
    /* Fallback color */
    background-color: #5a3f35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.3);
    /* Slight dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.title-serif-italic {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.subtitle-spacing {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-pill-light {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-pill-light:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* --- CATEGORIES GRID (Overlay Style) --- */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 Layout as shown */
    gap: 20px;
}

.collection-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.image-wrapper {
    width: 100%;
    height: 100%;
}

.img-bg-cover {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #222;
    /* Color de respaldo por si falla la imagen */
    transition: transform 0.6s ease;
}

.collection-item:hover .img-bg-cover {
    transform: scale(1.05);
    /* Zoom effect */
}

.item-bar-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.item-bar-bottom h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.explore-cmd {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- MOODBOARD SECTION (Bottom) --- */
.moodboard-section {
    width: 100%;
    padding: 100px 0;
    /* Extra padding for breath */
    background: #e5e5e5;
    /* Light grey paper background like the image */
    position: relative;
    overflow: hidden;
}

.moodboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 60px);
    /* Taller rows */
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.mb-img {
    background-color: #333;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    border: 8px solid #fff;
    /* Polaroid/Fine art print look */
    transition: transform 0.5s ease;
}

.mb-img:hover {
    transform: scale(1.02) rotate(1deg);
    z-index: 10;
}

/* Mimic chaotic collage layout from user image */
.img-1 {
    grid-column: 2 / 7;
    grid-row: 1 / 6;
    z-index: 2;
    transform: rotate(-2deg);
}

.img-2 {
    grid-column: 4 / 8;
    grid-row: 6 / 11;
    z-index: 1;
    transform: rotate(1deg);
}

.img-3 {
    grid-column: 8 / 12;
    grid-row: 3 / 8;
    z-index: 3;
    transform: rotate(-1deg);
    display: flex;
    align-items: flex-end;
    position: relative;
}

/* Pantone swatch absolute on the grid or relative to container */
.pantone-swatch {
    position: absolute;
    left: -150px;
    bottom: 40px;
    width: 140px;
    height: 180px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 5;
    transform: rotate(-3deg);
}

.pt-color {
    background: #737373;
    /* Pantone 7771 C approximate */
    flex: 1;
    margin-bottom: 10px;
}

.pt-name {
    font-family: 'Helvetica', sans-serif;
    font-size: 0.7rem;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
}

/* Magazine Text Section */
.moodboard-magazine-text {
    grid-column: 8 / 13;
    grid-row: 9 / 13;
    padding-left: 40px;
    color: #444;
}

.moodboard-magazine-text h4 {
    font-family: var(--font-elegant);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.1;
}

.magazine-columns {
    column-count: 2;
    column-gap: 20px;
}

.magazine-columns p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
    color: #666;
}

/* Add shadow lines overlay effect like in the image */
.moodboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 150px, rgba(0, 0, 0, 0.03) 150px, rgba(0, 0, 0, 0.03) 152px);
    pointer-events: none;
    z-index: 4;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .moodboard-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .mb-img {
        height: 350px;
        transform: rotate(0) !important;
    }

    .pantone-swatch {
        position: static;
        margin: 0 auto;
    }

    .moodboard-magazine-text {
        padding-left: 0;
    }

    .magazine-columns {
        column-count: 1;
    }
}

/* Product Card Style (Mónaco) Image 3 */
.btn-consult {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    /* Pill shape */
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}

.btn-consult::after {
    content: '✦';
    font-size: 1.5rem;
}

/* --- FOOTER (Image 4) --- */
.main-footer {
    background-color: #0d0d0d;
    /* Very dark */
    color: #fff;
    padding: 60px 40px;
    border-top: 1px solid #222;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.footer-tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 400;
}

.footer-brand-contact {
    display: flex;
    gap: 30px;
}

.footer-logo {
    display: block;
}

.footer-logo-img {
    height: 60px;
    /* Slightly smaller for footer */
    width: auto;
    filter: brightness(0) invert(1);
    /* Make it white if it's black, or adjust opacity */
}

.footer-contact-info p {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-contact-info .icon {
    color: #fff;
    margin-right: 5px;
}

.footer-right {
    min-width: 300px;
}

.newsletter-section h5 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-subscribe {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-subscribe:hover {
    background: #fff;
    color: #000;
}

.social-icons-bar {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.icon-box {
    border: 1px solid #555;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

/* --- MODAL (Image 3/5) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    /* Flex when active */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--modal-bg);
    color: var(--modal-text);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.modal-header h2 {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 3px;
    border-bottom: 3px solid #d0021b;
    /* Red line from Cartier style? Or standard black */
    border-color: #000;
    display: inline-block;
    padding-bottom: 10px;
}

.close-modal {
    position: absolute;
    right: -20px;
    top: -30px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-family: var(--font-body);
}

.radio-group label {
    margin-right: 15px;
    font-size: 0.9rem;
    cursor: pointer;
}

.hidden {
    display: none;
}

.btn-submit-modal {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 15px 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 20px;
}

/* Utils */
.img-placeholder {
    background: #333;
}

/* Responsive Adjustments Header */
@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .search-box-header {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .header-container {
        padding: 0 20px;
    }
}

/* --- PRODUCT DETAIL PAGE (PDP) REFINED --- */
.product-detail-container {
    padding-top: 120px;
    background: #000;
    min-height: 80vh;
}

.product-split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 80px;
    align-items: center;
}

.prod-left-image {
    flex: 1.2;
}

.pdp-main-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
}

.prod-right-info {
    flex: 1;
    color: #fff;
}

.pdp-title {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    margin-bottom: 30px;
    letter-spacing: -1px;
    font-weight: 300;
}

.pdp-description-box {
    margin-bottom: 40px;
}

.pdp-description-main {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

.pdp-description-secondary {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.8;
}

.pdp-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-consult-pdp {
    flex: 1;
    background: #fff;
    color: #000;
    border: none;
    padding: 18px;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-consult-pdp:hover {
    opacity: 0.8;
}

.btn-wishlist-pdp {
    width: 60px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pdp-contact-info {
    border-top: 1px solid #222;
    padding-top: 30px;
}

.contact-item {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.contact-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Related Section Refined */
.related-collections-section {
    padding: 100px 60px;
    background: #000;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
    display: inline-block;
    background: #fdf0f4;
    /* Pinkish highlight from mockup */
    color: #e5728a;
    padding: 5px 15px;
    text-transform: uppercase;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.related-item-card {
    display: block;
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
}

.related-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-item-card:hover img {
    transform: scale(1.05);
}

.pdp-footer-moodboard {
    height: 600px;
    width: 100%;
}

.mood-img-large {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .product-split-layout {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
    }

    .pdp-title {
        font-size: 2.5rem;
    }

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

    .pdp-footer-moodboard {
        height: 300px;
    }
}

/* --- CATEGORY MAGAZINE LAYOUT --- */
.category-hero-magazine {
    height: 90vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image-full {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay-editorial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.6);
    text-align: center;
    width: 90%;
}

.magazine-title {
    font-family: var(--font-elegant);
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.magazine-subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.9;
    padding-left: 5px;
    border-left: 2px solid #fff;
}

/* Product Grid Category */
.category-products-magazine {
    padding: 100px 0;
    background: #f9f9f9;
    /* Soft light background for contrast */
}

.magazine-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.editorial-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease;
}

.editorial-product-card:hover {
    transform: translateY(-10px);
}

.card-image-box {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #eee;
    margin-bottom: 20px;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.editorial-product-card:hover .card-image-box img {
    transform: scale(1.08);
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-body);
}

.card-title {
    font-size: 1.1rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.card-ref {
    font-size: 0.75rem;
    color: #888;
}

/* Editorial Description Section */
.editorial-description-section {
    padding: 120px 0;
    background: #fff;
}

.editorial-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.editorial-heading {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.editorial-text-columns {
    column-count: 2;
    column-gap: 60px;
    text-align: justify;
    color: #444;
    line-height: 1.8;
    font-size: 0.95rem;
}

.editorial-text-columns p {
    margin-bottom: 20px;
}

/* Category Moodboard specific override */
.categories-moodboard {
    background: #fff;
    border-top: 1px solid #eee;
}

/* Responsive Editorial */
@media (max-width: 1024px) {
    .magazine-title {
        font-size: 3.5rem;
    }

    .hero-overlay-editorial {
        width: 100%;
        padding: 0 20px;
        left: 50%;
        bottom: 60px;
        transform: translate(-50%, 0);
    }

    .magazine-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .magazine-title {
        font-size: 2.8rem;
    }

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

    .editorial-text-columns {
        column-count: 1;
    }

    .editorial-heading {
        font-size: 2.5rem;
    }

    .category-hero-magazine {
        height: 70vh;
    }
}

/* --- WISHLIST SIDEBAR (CART) --- */
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    color: #000;
}

.wishlist-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.wishlist-items {
    display: flex;
    flex-direction: column;
}

.wishlist-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.item-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.item-info h4 {
    font-size: 0.9rem;
    margin: 0 0 5px 0;
}

.remove-item {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    margin-left: auto;
}

.sidebar-footer {
    padding: 30px;
    border-top: 1px solid #eee;
}

.btn-quote-all {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 480px) {
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }
}