/*
Theme Name: MOLLINO by Meuble Aziz
Theme URI: https://mollino.ma
Author: Meuble Aziz
Author URI: https://meublesaziz.com
Description: Thème luxe pour MOLLINO by Meuble Aziz — Mobilier de luxe en inox, grès et bois.
Version: 1.0.0
License: Proprietary
Text Domain: mollino
*/

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ===== CSS Variables ===== */
:root {
    --background: #0d0d0d;
    --foreground: #f2f2f2;
    --card: #141414;
    --primary: #d9d9d9;
    --secondary: #1f1f1f;
    --muted: #262626;
    --muted-foreground: #a6a6a6;
    --accent: #b8865f;
    --accent-foreground: #fafafa;
    --border: #333;
    --charcoal: #1a1a1a;
    --obsidian: #0d0d0d;
    --silver: #6b7280;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --radius: 0;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
}

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

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

/* ===== Container ===== */
.container-luxury {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container-luxury { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container-luxury { padding: 0 3rem; }
}

/* ===== Section Padding ===== */
.section-padding {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .section-padding { padding: 8rem 0; }
}

@media (min-width: 1024px) {
    .section-padding { padding: 10rem 0; }
}

/* ===== Buttons ===== */
.btn-luxury {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-luxury:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-luxury-filled {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--accent-foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-luxury-filled:hover {
    background: transparent;
    color: var(--foreground);
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(51, 51, 51, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

@media (min-width: 768px) {
    .header-inner { height: 6rem; }
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .site-logo img { height: 5rem; }
}

@media (min-width: 1024px) {
    .site-logo img { height: 6rem; }
}

/* ===== Navigation ===== */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .desktop-nav { display: flex; gap: 2rem; }
}

@media (min-width: 1024px) {
    .desktop-nav { gap: 3rem; }
}

.desktop-nav a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: rgba(242, 242, 242, 0.8);
    position: relative;
    padding-bottom: 0.25rem;
    transition: opacity 0.2s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--accent);
    opacity: 1;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

@media (min-width: 1024px) {
    .desktop-nav a { font-size: 12px; }
}

/* ===== Mobile Menu ===== */
.mobile-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    color: rgba(242, 242, 242, 0.8);
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-toggle { display: none; }
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--obsidian);
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu a {
    font-size: 1.25rem;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    color: rgba(242, 242, 242, 0.8);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--accent);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(13,13,13,0.4), rgba(13,13,13,1));
}

.hero-overlay-right {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,0.8), transparent, transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 48rem;
}

.hero-line {
    width: 8rem;
    height: 1px;
    background: var(--accent);
    margin-bottom: 2.5rem;
}

.hero-title {
    font-size: 3.75rem;
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    color: var(--foreground);
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-title { font-size: 6rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 8rem; }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.5rem; }
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-weight: 300;
    letter-spacing: 0.02em;
    max-width: 36rem;
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-tagline { font-size: 1.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(166, 166, 166, 0.7);
}

.hero-scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-family: var(--font-display);
    color: var(--foreground);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 4.5rem; }
}

.section-divider {
    width: 6rem;
    height: 1px;
    background: var(--silver);
    margin: 2rem auto 0;
}

/* ===== Grids ===== */
.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.grid-cols-2-sm { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
    .grid-cols-2-sm { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Category Card ===== */
.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.9), rgba(13,13,13,0.3), transparent);
    opacity: 0.85;
    transition: opacity 0.7s;
}

.category-card:hover .category-overlay {
    opacity: 0.95;
}

.category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

@media (min-width: 768px) {
    .category-content { padding: 2.5rem; }
}

.category-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color 0.5s;
}

.category-card:hover .category-title {
    color: var(--silver);
}

@media (min-width: 768px) {
    .category-title { font-size: 1.875rem; }
}

.category-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--muted-foreground);
    transition: color 0.5s;
}

.category-card:hover .category-link {
    color: var(--foreground);
}

.category-arrow {
    display: inline-block;
    transition: transform 0.5s;
}

.category-card:hover .category-arrow {
    transform: translateX(0.5rem);
}

.category-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--silver);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s;
}

.category-card:hover .category-line {
    transform: scaleX(1);
}

/* ===== Features ===== */
.features-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: linear-gradient(90deg, var(--silver) 1px, transparent 1px),
                      linear-gradient(180deg, var(--silver) 1px, transparent 1px);
    background-size: 80px 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(13,13,13,0.5);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: rgba(107, 114, 128, 0.5);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    border-color: var(--silver);
    background: rgba(107, 114, 128, 0.05);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--silver);
}

.feature-title {
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1.25rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.feature-corners {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    transition: border-color 0.7s;
}

.feature-card:hover .feature-corners {
    border-color: rgba(107, 114, 128, 0.4);
}

.feature-corners-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    transition: border-color 0.7s;
}

.feature-card:hover .feature-corners-bl {
    border-color: rgba(107, 114, 128, 0.4);
}

/* ===== Highlight Banner ===== */
.highlight-banner {
    margin-top: 5rem;
    background: rgba(13,13,13,0.5);
    border: 1px solid var(--border);
    padding: 2.5rem 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .highlight-banner { padding: 3.5rem 3.5rem; }
}

.highlight-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--silver);
    margin: 0 auto 2rem;
}

.highlight-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .highlight-title { font-size: 2.25rem; }
}

.highlight-desc {
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Projects Preview ===== */
.projects-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .projects-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 5rem;
    }
}

.projects-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 2rem;
    transition: color 0.5s;
}

@media (min-width: 1024px) {
    .projects-link { margin-top: 0; }
}

.projects-link:hover {
    color: var(--foreground);
}

.projects-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.5s;
}

.projects-link:hover svg {
    transform: translateX(0.75rem);
}

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

@media (min-width: 768px) {
    .projects-grid { gap: 2.5rem; }
}

@media (min-width: 1024px) {
    .projects-grid { grid-template-columns: 1fr 1fr; }
}

.project-card {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-card-large {
    aspect-ratio: 3/4;
}

@media (min-width: 1024px) {
    .project-card-large {
        aspect-ratio: auto;
        height: 100%;
    }
}

.project-card-small {
    aspect-ratio: 16/10;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.9), rgba(13,13,13,0.3), transparent);
    transition: opacity 0.7s;
}

.project-card:hover .project-overlay {
    opacity: 0.9;
}

.project-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 2rem;
}

@media (min-width: 768px) {
    .project-content { padding: 3rem 3rem; }
}

.project-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    display: block;
}

.project-title {
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color 0.5s;
}

.project-card:hover .project-title {
    color: var(--silver);
}

.project-title-lg {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .project-title-lg { font-size: 2.25rem; }
}

.project-title-sm {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .project-title-sm { font-size: 1.5rem; }
}

.project-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.project-line {
    width: 100%;
    height: 2px;
    background: var(--silver);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s;
}

.project-card:hover .project-line {
    transform: scaleX(1);
}

/* ===== Stats ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 2.5rem 2.5rem;
    background: var(--charcoal);
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .stats-grid { padding: 3rem 3rem; }
}

.stats-value {
    font-size: 2.25rem;
    font-family: var(--font-display);
    color: var(--foreground);
    display: block;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .stats-value { font-size: 3rem; }
}

.stats-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ===== Architects Section ===== */
.architects-section {
    background: var(--obsidian);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.architects-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .architects-grid { grid-template-columns: 1fr 1fr; }
}

.architects-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.architects-text p {
    margin-bottom: 2rem;
}

.architects-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .architects-features { grid-template-columns: 1fr 1fr; }
}

.arch-feature {
    padding: 1.5rem;
    border: 1px solid rgba(51, 51, 51, 0.3);
    background: rgba(26, 26, 26, 0.3);
    transition: var(--transition-smooth);
}

.arch-feature:hover {
    background: rgba(26, 26, 26, 0.5);
}

.arch-feature svg {
    width: 2rem;
    height: 2rem;
    color: var(--silver);
    margin-bottom: 1rem;
}

.arch-feature h3 {
    font-size: 1.125rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.arch-feature p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.85);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    display: block;
}

.cta-title {
    font-size: 2.25rem;
    font-family: var(--font-display);
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .cta-title { font-size: 4.5rem; }
}

.cta-title .silver {
    color: var(--silver);
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; }
}

.cta-cities {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cta-cities { gap: 3.5rem; }
}

.cta-city {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted-foreground);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 6rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}

.footer-brand-subtitle {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--muted-foreground);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-garantie {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-garantie span {
    width: 2rem;
    height: 1px;
    background: var(--accent);
}

.footer-heading {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
}

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

.footer-menu a,
.footer-menu span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s;
    cursor: pointer;
}

.footer-menu a:hover {
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin: 3rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
}

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-hero-sm {
    min-height: 350px;
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,1), rgba(13,13,13,0.8), rgba(13,13,13,0.4));
}

.page-hero-content {
    position: relative;
    z-index: 10;
}

.page-hero-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.page-hero-title {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .page-hero-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .page-hero-title { font-size: 4.5rem; }
}

.page-hero-desc {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 36rem;
}

/* ===== Page Sections ===== */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-center { text-align: center; }
.bg-charcoal { background: var(--charcoal); }
.bg-background { background: var(--background); }
.border-border { border-color: var(--border); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.w-full { width: 100%; }
.w-2 { width: 0.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.h-2 { height: 0.5rem; }
.h-12 { height: 3rem; }
.h-px { height: 1px; }
.h-0\.5 { height: 2px; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.leading-relaxed { line-height: 1.7; }
.leading-tight { line-height: 1.2; }
.tracking-wide { letter-spacing: 0.02em; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.uppercase { text-transform: uppercase; }
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-light { font-weight: 300; }

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:hidden { display: none; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:flex-row { flex-direction: row; }
    .md\:p-10 { padding: 2.5rem; }
    .md\:p-12 { padding: 3rem; }
    .md\:p-14 { padding: 3.5rem; }
    .md\:mb-20 { margin-bottom: 5rem; }
    .md\:mb-28 { margin-bottom: 7rem; }
    .md\:mb-32 { margin-bottom: 8rem; }
    .md\:gap-10 { gap: 2.5rem; }
    .md\:gap-12 { gap: 3rem; }
    .md\:gap-14 { gap: 3.5rem; }
    .md\:gap-20 { gap: 5rem; }
}

@media (min-width: 1024px) {
    .lg\:col-span-1 { grid-column: span 1; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .lg\:flex-row { flex-direction: row; }
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    .lg\:text-7xl { font-size: 4.5rem; }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ===== Materials Banner ===== */
.materials-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .materials-banner { gap: 5rem; }
}

.material-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.material-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--silver);
}

.material-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted-foreground);
}

/* ===== Products Page ===== */
.produits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .produits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .produits-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Showrooms ===== */
.showroom-card {
    background: var(--background);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.showroom-card:hover {
    border-color: rgba(184, 134, 95, 0.3);
    transform: translateY(-5px);
}

.showroom-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.showroom-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.showroom-info svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--accent);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.showroom-info span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.showroom-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 1.5rem;
}

.showroom-link:hover {
    opacity: 0.8;
}

.factory-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(184, 134, 95, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Projects Page ===== */
.projects-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.project-article {
    cursor: pointer;
    transition: all 0.4s;
}

.project-article:hover {
    transform: translateY(-10px);
}

.project-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 1.5rem;
}

.project-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.project-article:hover .project-image-overlay {
    opacity: 1;
}

.project-desc {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: rgba(242, 242, 242, 0.9);
    font-size: 0.875rem;
}

.project-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.project-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.project-name {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--foreground);
    transition: color 0.3s;
}

.project-article:hover .project-name {
    color: var(--accent);
}

.project-arrow {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(0);
    transition: all 0.3s;
}

.project-article:hover .project-arrow {
    opacity: 1;
    transform: translateX(0.5rem);
}

/* ===== Stats Row ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-number {
    font-size: 2.25rem;
    font-family: var(--font-display);
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number { font-size: 3rem; }
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
}

/* ===== Fairs Page ===== */
.fair-card {
    background: var(--charcoal);
    border: 1px solid rgba(184, 134, 95, 0.3);
    padding: 2rem 2.5rem;
    transition: var(--transition-smooth);
}

.fair-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.fair-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.fair-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    animation: pulse 2s infinite;
}

.fair-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.fair-name {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.fair-card:hover .fair-name {
    color: var(--accent);
}

.fair-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.fair-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fair-detail svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.fair-detail span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

@media (min-width: 768px) {
    .timeline-line { left: 50%; transform: translateX(-50%); }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 0.625rem;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--accent);
    z-index: 10;
}

@media (min-width: 768px) {
    .timeline-dot { left: 50%; transform: translateX(-50%); }
}

.timeline-content {
    margin-left: 3rem;
}

@media (min-width: 768px) {
    .timeline-content { margin-left: 0; width: 50%; }
    .timeline-left { padding-right: 4rem; }
    .timeline-right { margin-left: 50%; padding-left: 4rem; }
}

.timeline-card {
    background: var(--background);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    border-color: rgba(184, 134, 95, 0.3);
}

.timeline-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-event {
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.timeline-card:hover .timeline-event {
    color: var(--accent);
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.timeline-location svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--muted-foreground);
}

.timeline-location span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

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

.contact-section-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 1.875rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-title { font-size: 2.25rem; }
}

.contact-desc {
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-box {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(184, 134, 95, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.contact-info-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--muted-foreground);
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--background);
    padding: 0.75rem 1.5rem;
    transition: opacity 0.3s;
}

.contact-whatsapp:hover {
    opacity: 0.9;
}

.contact-whatsapp span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--charcoal);
    border: 1px solid var(--border);
    padding: 2rem 2.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
    display: block;
    margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--background);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-foreground);
}

.form-select {
    appearance: none;
    cursor: pointer;
}

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

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-submit svg {
    width: 1rem;
    height: 1rem;
}

/* ===== Map Section ===== */
.map-section {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.map-placeholder svg {
    width: 3rem;
    height: 3rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 1rem;
}

/* ===== Materials Bar ===== */
.materials-bar {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.materials-bar-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
}

/* ===== Timeline layout fixes ===== */
@media (min-width: 768px) {
    .timeline-flex {
        display: flex;
        align-items: center;
    }
    .timeline-flex-right {
        flex-direction: row-reverse;
    }
}

/* ===== Product Breadcrumb ===== */
.breadcrumb {
    background: var(--charcoal);
    padding: 1rem 0;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* ===== Product Gallery ===== */
.product-gallery {
    position: relative;
}

.product-main-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--charcoal);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,13,13,0.8);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.product-nav-btn:hover {
    border-color: var(--accent);
}

.product-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--foreground);
}

.product-nav-prev { left: 1rem; }
.product-nav-next { right: 1rem; }

.product-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.product-dot {
    width: 0.5rem;
    height: 0.5rem;
    border: none;
    background: rgba(242,242,242,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.product-dot.active {
    background: var(--accent);
    width: 2rem;
}

.product-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.product-thumb {
    width: 5rem;
    height: 5rem;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.product-thumb.active {
    border-color: var(--accent);
    opacity: 1;
}

.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.product-info-title {
    font-size: 2.25rem;
    font-family: var(--font-display);
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .product-info-title { font-size: 3rem; }
}

.product-info-desc {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.inox-selector h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.inox-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.inox-color-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.inox-color-btn:hover {
    border-color: rgba(184, 134, 95, 0.5);
}

.inox-color-btn.active {
    border-color: var(--accent);
    background: rgba(184, 134, 95, 0.1);
}

.inox-swatch {
    width: 1.5rem;
    height: 1.5rem;
}

.inox-label {
    font-size: 0.875rem;
    color: var(--foreground);
}

.inox-check {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--accent);
}

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

.dimension-box {
    background: var(--charcoal);
    padding: 1rem;
    border: 1px solid var(--border);
}

.dimension-key {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    display: block;
    margin-bottom: 0.25rem;
}

.dimension-value {
    font-size: 1.125rem;
    color: var(--foreground);
}

.materials-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.material-tag {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--foreground);
    background: var(--secondary);
    border: 1px solid var(--border);
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: var(--accent);
    flex-shrink: 0;
}

.features-list li span {
    color: var(--muted-foreground);
}

/* ===== Responsive fix ===== */
@media (max-width: 639px) {
    .grid-cols-2-sm { grid-template-columns: repeat(2, 1fr); }
    .gap-4-mobile { gap: 0.5rem; }
}

/* ===== Admin bar fix ===== */
.admin-bar .site-header {
    top: 32px;
}

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