/*
Theme Name: LuxeMeuble
Theme URI: https://luxemeuble.com/
Author: Mourad Bousserouel
Author URI: https://luxemeuble.com/
Description: A premium, minimalist WooCommerce theme designed specifically for high-end furniture stores. Built with performance and elegance in mind.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxemeuble
Tags: e-commerce, furniture, minimalist, clean, responsive-layout, custom-menu, featured-images, translation-ready

This theme is built from the ground up for LuxeMeuble.
*/

/* --- Design System & CSS Variables --- */
:root {
    --primary: #0f172a;
    --secondary: #d4af37;
    /* Metallic Gold */
    --accent: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f1f5f9;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --container-width: 1400px;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* --- Header --- */
.site-header {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}

.scrolled .header-container {
    height: 70px;
}

/* Offset for fixed header on normal pages */
body:not(.page-template-template-landing) #page {
    padding-top: 100px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--primary);
}

/* Transparent state colors on landing page hero */
.page-template-template-landing .site-header:not(.scrolled) .logo {
    color: #ffffff;
}

.page-template-template-landing .site-header:not(.scrolled) .main-navigation a {
    color: rgba(255, 255, 255, 0.9);
}

.page-template-template-landing .site-header:not(.scrolled) .cart-contents {
    color: #ffffff;
}

.page-template-template-landing .site-header:not(.scrolled) .hamburger,
.page-template-template-landing .site-header:not(.scrolled) .hamburger::before,
.page-template-template-landing .site-header:not(.scrolled) .hamburger::after {
    background: #ffffff;
}

.logo span {
    color: var(--secondary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

.cart-contents {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.cart-contents svg {
    transition: var(--transition);
}

.cart-contents:hover svg {
    stroke: var(--secondary);
}

.cart-contents .count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    position: absolute;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    bottom: -8px;
}

.menu-open .hamburger {
    background: transparent;
}

.menu-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
}

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

/* --- WooCommerce Specifics --- */
.woocommerce-products-header__title {
    font-size: 2.5rem;
    text-align: center;
    margin: 4rem 0;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 3rem !important;
    list-style: none !important;
    padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    position: relative;
    transition: var(--transition);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    overflow: hidden;
}

.woocommerce ul.products li.product img {
    width: 100% !important;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin: 0 0 1.5rem 0 !important;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 0 1.5rem 0.5rem !important;
    font-weight: 600;
}

.woocommerce ul.products li.product .price {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 1.5rem 1.5rem !important;
}

.woocommerce ul.products li.product .button {
    display: block;
    margin: 0 1.5rem !important;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 5px;
    transition: var(--transition);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--secondary);
    color: #fff;
}

.onsale {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* --- Content Area --- */
.content-area {
    padding: 4rem 0;
}

/* --- Footer --- */
.site-footer {
    background: var(--primary);
    color: #fff;
    padding: 5rem 0 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #aaa;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: #aaa;
    font-size: 0.9rem;
}

.site-info {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* --- Landing Page Specifics --- */
.landing-page {
    overflow-x: hidden;
}

/* Hero V2 */
.hero-v2 {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease-out;
    z-index: 1;
}

.hero-v2:hover .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content-v2 {
    max-width: 800px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-content-v2 h1 {
    font-size: 5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-content-v2 h1 span {
    color: var(--secondary);
}

.hero-content-v2 p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.hero-scroll-indicator .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.hero-scroll-indicator .mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Categories Section */
.categories-section {
    padding: 8rem 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.category-card {
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    cursor: pointer;
}

.category-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
    z-index: 1;
}

.category-info {
    position: relative;
    z-index: 2;
    color: #fff;
}

.category-info h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.category-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.category-link {
    font-weight: 600;
    color: var(--secondary);
    display: inline-block;
}

/* Featured Products */
.featured-products {
    padding: 8rem 0;
    background: var(--bg-alt);
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}

.section-header-inline h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-header-inline p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn-text {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Glassmorphism Banner */
.promo-banner {
    padding: 8rem 0;
    background: url('assets/images/hero.png') center/cover fixed;
    position: relative;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 6rem;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.glass-content h2 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.glass-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Global Sourcing Section */
.sourcing-section {
    padding: 8rem 0;
    background: var(--bg);
}

.sourcing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sourcing-card {
    background: var(--bg-alt);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sourcing-card:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: var(--secondary);
    box-shadow: var(--shadow-premium);
}

.sourcing-icon {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.sourcing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sourcing-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact & Maps Section */
.contact-map-section {
    padding: 8rem 0;
    background: #fff;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.contact-info-v2 h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-details-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.detail-group h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.detail-group a,
.detail-group p {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.social-links-v2 {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 3px;
}

.social-icon:hover {
    color: var(--secondary);
}

.map-container-v2 {
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.map-container-v2 iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.map-placeholder {
    height: 100%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    padding: 3rem;
    text-align: center;
}

/* Animations Overrides */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

/* Hero Slider */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider-nav {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    display: flex;
    gap: 1rem;
    z-index: 5;
}

.hero-slider-nav button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.hero-slider-nav button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.hero-slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem;
    display: flex;
    gap: 0.75rem;
    z-index: 5;
}

.hero-slider-dots .dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-dots .dot.active {
    background: var(--secondary);
    width: 60px;
}

/* Gallery Slider Section */
.gallery-slider-section {
    padding: 8rem 0;
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}

.gallery-slider-section .section-header h2 {
    color: #fff;
    margin-bottom: 3rem;
}

.gallery-swiper {
    padding: 2rem 0 5rem !important;
}

.gallery-slide-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}

.gallery-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-slide-inner:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-slide-inner:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    background: var(--secondary);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .sourcing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container-v2 {
        height: 400px;
    }

    .hero-slider-nav,
    .hero-slider-dots {
        display: none;
    }

    .gallery-slide-inner {
        height: 400px;
    }
}

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

/* --- Animations --- */
@media (max-width: 1024px) {
    .hero-content-v2 h1 {
        font-size: 3.5rem;
    }

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

    .category-card {
        height: 400px;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
    }

    .menu-open .main-navigation {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .main-navigation a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
    }
}

@media (max-width: 768px) {
    .hero-content-v2 h1 {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 3rem 1.5rem;
    }

    .glass-content h2 {
        font-size: 2rem;
    }
}

/* --- Luxury WooCommerce Theme Overrides --- */

.luxury-shop-header {
    background: var(--bg-alt);
    padding: 8rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-shop-header h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.luxury-shop-main {
    padding: 5rem 0;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.luxury-product-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.luxury-product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.luxury-product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-hover-desc {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
    color: #fff;
    transition: var(--transition);
    opacity: 0;
    z-index: 10;
}

.luxury-product-card:hover .product-hover-desc {
    bottom: 0;
    opacity: 1;
}

.product-hover-desc p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.luxury-product-card .product-details {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.luxury-product-card .woocommerce-loop-product__title {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem !important;
    font-weight: 700;
}

.luxury-product-card .price {
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.25rem;
    margin: 0 !important;
}

.product-action {
    padding: 0 2rem 2.5rem;
    text-align: center;
}

.product-action .button {
    display: inline-block;
    width: 100%;
    padding: 1.25rem;
    background: var(--primary);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    border-radius: 12px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.product-action .button:hover {
    background: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Single Product */
.luxury-single-product-wrapper {
    padding: 10rem 0;
    background: #fff;
}

.luxury-single-product {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    margin-bottom: 10rem;
}

.luxury-product-summary {
    position: relative;
}

.summary-inner-wrapper {
    position: sticky;
    top: 140px;
}

.summary-inner-wrapper h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.summary-inner-wrapper .price {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 3rem;
    display: block;
}

.luxury-single-product form.cart {
    margin: 5rem 0;
    display: flex;
    gap: 2rem;
}

.luxury-single-product form.cart .button {
    flex-grow: 1;
    background: var(--primary);
    color: #fff;
    padding: 1.75rem;
    font-size: 1.2rem;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.luxury-single-product form.cart .button:hover {
    background: var(--secondary);
}

/* Cart & Checkout */
.luxury-cart-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10rem 2rem;
}

.luxury-cart-header h1 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 6rem;
    letter-spacing: -0.02em;
}

.luxury-cart-form {
    background: #fff;
    padding: 5rem;
    border-radius: 32px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 6rem;
}

.shop_table.cart th {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: var(--text-light);
    border-bottom: 2px solid var(--bg-alt);
    padding-bottom: 2rem;
    font-weight: 700;
}

.luxury-checkout-form {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10rem 2rem;
}

.luxury-checkout-form .col2-set {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.luxury-order-review {
    background: var(--bg-alt);
    padding: 5rem;
    border-radius: 32px;
}

/* --- View Transitions API Animations --- */


/* ==========================================================================
   Premium Homepage Sections Expansion
   ========================================================================== */

/* --- Common Section Elements --- */
.section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.gold-text {
    color: var(--secondary) !important;
}

.header-divider {
    width: 60px;
    height: 2px;
    background: var(--secondary);
    margin: 1.5rem auto 0;
}

/* --- 1. Brand Philosophy Section --- */
.philosophy-section {
    padding: 10rem 0;
    background: var(--bg);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.philosophy-divider {
    width: 80px;
    height: 2px;
    background: var(--secondary);
    margin-bottom: 2.5rem;
}

.philosophy-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3.5rem;
}

.philosophy-image-container {
    position: relative;
    padding-bottom: 120%;
    /* Luxury vertical aspect ratio */
    border-radius: 24px;
    overflow: visible;
}

.philosophy-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: var(--shadow-premium);
}

.philosophy-frame {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 24px;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.philosophy-image-container:hover .philosophy-img {
    transform: translate(15px, -15px);
}

.philosophy-image-container:hover .philosophy-frame {
    transform: translate(-15px, 15px);
    background: rgba(212, 175, 55, 0.03);
}

/* --- 2. Craftsmanship Section --- */
.crafts-section {
    padding: 10rem 0;
    background: var(--bg-alt);
}

.crafts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.craft-card {
    position: relative;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.craft-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(30%) contrast(105%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.craft-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 90%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.craft-card-content {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.craft-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.craft-card-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.craft-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.craft-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.craft-card:hover .craft-card-bg {
    transform: scale(1.08);
}

.craft-card:hover .craft-card-content {
    transform: translateY(0);
}

.craft-card:hover .craft-card-desc {
    opacity: 1;
}

/* --- 3. Cinematic Showroom Section --- */
.showroom-video-section {
    position: relative;
    height: 650px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.showroom-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.showroom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.showroom-content-wrap {
    position: relative;
    z-index: 3;
}

.showroom-content h2 {
    font-size: 4rem;
    color: #fff;
    margin-top: 1rem;
    line-height: 1.15;
}

.showroom-divider {
    width: 80px;
    height: 2px;
    background: var(--secondary);
    margin: 2rem auto 3rem;
}

.showroom-play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.showroom-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.showroom-play-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    animation: playPulse 2s infinite;
}

.showroom-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Fullscreen Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-container {
    width: 90%;
    max-width: 1100px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--secondary);
}

.video-modal-content {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-modal-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* --- 4. Press Logo Section --- */
.press-marquee-section {
    padding: 6rem 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.press-section-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-light);
    margin-bottom: 3.5rem;
}

.press-marquee-container {
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
}

.press-marquee-container::before,
.press-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.press-marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.press-marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.press-marquee-track {
    display: flex;
    align-items: center;
    gap: 8rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.press-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-logo {
    max-height: 45px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all 0.4s ease;
}

.press-logo:hover {
    filter: grayscale(0%);
    opacity: 0.9;
}

.press-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary);
    opacity: 0.35;
    transition: all 0.4s ease;
    cursor: default;
}

.press-logo-text:hover {
    color: var(--secondary);
    opacity: 0.85;
}

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

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

/* --- 5. Bespoke FAQ Section --- */
.faq-accordion-section {
    padding: 10rem 0;
    background: var(--bg-alt);
}

.faq-accordion-wrapper {
    max-width: 900px;
    margin: 5rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1rem 0;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question-btn:hover {
    color: var(--secondary);
}

.faq-toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--secondary);
    transition: transform 0.4s ease;
}

/* Horizontal line */
.faq-toggle-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

/* Vertical line */
.faq-toggle-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-toggle-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-toggle-icon::before {
    transform: rotate(180deg);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-answer-inner {
    padding: 1rem 0 2rem;
}

.faq-answer-inner p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* --- 6. Private Newsletter Section --- */
.private-newsletter-section {
    padding: 10rem 0;
    background: var(--bg);
}

.newsletter-card {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 40px;
    background: #0f0f0f;
    padding: 8rem 6rem;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.newsletter-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-inner .newsletter-title {
    font-size: 3.5rem;
    color: #fff;
    margin-top: 1rem;
    line-height: 1.15;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 2rem 0 3.5rem;
}

.newsletter-form-luxury {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px;
    transition: all 0.4s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.newsletter-input {
    flex-grow: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 0 2rem;
    font-size: 1.05rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-newsletter-submit {
    flex-shrink: 0;
    padding: 1.25rem 2.5rem !important;
}

.newsletter-glow-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .philosophy-title {
        font-size: 3rem;
    }

    .crafts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .craft-card {
        height: 450px;
    }

    .showroom-content h2 {
        font-size: 3rem;
    }

    .newsletter-inner .newsletter-title {
        font-size: 2.75rem;
    }

    .newsletter-card {
        padding: 5rem 3rem;
    }
}

@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        background: none;
        border: none;
        gap: 1.5rem;
    }

    .newsletter-input {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 1.25rem 2rem;
    }

    .btn-newsletter-submit {
        width: 100%;
        text-align: center;
    }
}