/* ==========================================================================
   Dumont Camini - CSS Style Sheet
   Aesthetic: Luxe-Dark / Warm Amber & Champagne Accent
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-primary: #0d0e12;
    --bg-secondary: #15171d;
    --bg-tertiary: #1f2129;
    --accent-orange: #f25c05;
    --accent-orange-hover: #ff7621;
    --accent-amber: #e67e22;
    --accent-champagne: #dfc182;
    --text-primary: #f5f6f8;
    --text-secondary: #a0a5b5;
    --text-muted: #6c7283;
    --border-color: rgba(223, 193, 130, 0.15);
    --border-glow: rgba(242, 92, 5, 0.2);
    --glass-bg: rgba(21, 23, 29, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --heading-color: #ffffff;
    
    /* Input controls variables */
    --input-bg: rgba(255, 255, 255, 0.04);
    --input-border: rgba(255, 255, 255, 0.08);
    --input-focus-bg: rgba(255, 255, 255, 0.07);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(242, 92, 5, 0.15);
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

/* Light theme overrides */
body.light-theme {
    --bg-primary: #fbfbfd;
    --bg-secondary: #f4f3ef;
    --bg-tertiary: #e9e8e2;
    --text-primary: #1d1d1f;
    --text-secondary: #515154;
    --text-muted: #86868b;
    --border-color: rgba(181, 154, 91, 0.25);
    --border-glow: rgba(242, 92, 5, 0.15);
    --glass-bg: rgba(251, 251, 253, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --heading-color: #1d1d1f;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(242, 92, 5, 0.05);
    
    --input-bg: rgba(0, 0, 0, 0.03);
    --input-border: rgba(0, 0, 0, 0.1);
    --input-focus-bg: rgba(0, 0, 0, 0.05);
}

/* Global Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Push page content below the fixed header (~130px tall) */
.site-main {
    padding-top: 160px;
}

/* Utility Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #c0392b);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(242, 92, 5, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-orange-hover), #d35400);
    box-shadow: 0 6px 20px rgba(242, 92, 5, 0.5), var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-champagne);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-champagne);
    background: rgba(223, 193, 130, 0.05);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

.btn-block {
    width: 100%;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--heading-color);
}

h2 {
    font-family: var(--font-serif);
    font-weight: 400;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    padding: 16px 0 10px 0;
}

.main-header.scrolled {
    padding: 10px 0 6px 0;
    background-color: rgba(13, 14, 18, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

body.light-theme .main-header.scrolled {
    background-color: rgba(251, 251, 253, 0.98);
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: var(--transition-smooth);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo img {
    height: 42px;
}

.logo-slogan {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
    max-width: 580px;
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
    font-weight: 400;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 8px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-bottom {
    margin-top: 6px;
    padding-top: 6px;
}

@media (max-width: 768px) {
    .logo-slogan {
        display: none !important;
    }
    
    .header-bottom {
        border-top: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: 0 !important;
    }
    
    .logo img {
        height: 42px !important;
    }
    
    .main-header.scrolled .logo img {
        height: 38px !important;
    }
    
    .main-header {
        padding: 12px 0 12px 0 !important;
    }
}

.logo-accent {
    color: var(--accent-champagne);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu ul li a,
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 400;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-menu ul li a::after,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-orange);
    transition: var(--transition-smooth);
}

.nav-menu ul li.current-menu-item > a::after,
.nav-menu ul li.current_page_item > a::after,
.nav-link.active::after {
    width: 100%;
}

.nav-menu ul li a:hover,
.nav-menu ul li.current-menu-item > a,
.nav-menu ul li.current_page_item > a,
.nav-link:hover, .nav-link.active {
    color: var(--accent-champagne);
}

.nav-menu ul li a:hover::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-menu ul li.btn-contact-nav a,
.btn-contact-nav {
    border: 1px solid var(--accent-champagne);
    padding: 8px 18px;
    border-radius: var(--border-radius-md);
    color: var(--accent-champagne) !important;
}

.nav-menu ul li.btn-contact-nav a:hover,
.btn-contact-nav:hover {
    background: var(--accent-champagne);
    color: var(--bg-primary) !important;
}

.nav-menu ul li.btn-contact-nav a::after,
.btn-contact-nav::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--heading-color);
    transition: var(--transition-smooth);
}

/* Hero Section with Slider */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    /* Compensate for site-main padding-top so the hero still fills the full viewport */
    margin-top: -160px;
}

.hero-slider {
    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;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Premium Ken Burns Zoom Effect */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: inherit;
    z-index: -1;
    transform: scale(1.08);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 150px;
}

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

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--accent-champagne);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

.hero-slide-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Individual slide transitions */
.hero-slide .hero-subtitle,
.hero-slide .hero-slide-title,
.hero-slide .hero-description,
.hero-slide .hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-slide.active .hero-slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-slide.active .hero-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Slider Navigation Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(13, 14, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    opacity: 0;
}

.hero-section:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: var(--accent-champagne);
    color: var(--bg-primary);
    border-color: var(--accent-champagne);
    box-shadow: 0 0 15px rgba(223, 193, 130, 0.3);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
    background: var(--accent-orange);
    width: 44px;
    box-shadow: 0 0 10px rgba(242, 92, 5, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Glow overlay for Slide 3 */
.glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 92, 5, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
    animation: ambientGlow 8s infinite alternate;
}

@keyframes ambientGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

/* Features Bar Section */
.features-bar-section {
    background-color: var(--bg-primary);
    padding: 60px 0;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-champagne));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 92, 5, 0.3);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(242, 92, 5, 0.1);
    border: 1px solid rgba(242, 92, 5, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(242, 92, 5, 0.4);
}

.feature-card:hover .feature-icon-wrapper i {
    color: #fff;
    transform: scale(1.1);
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.feature-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 300;
}

.feature-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--accent-champagne);
    background: rgba(223, 193, 130, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(223, 193, 130, 0.12);
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mouse:hover {
    border-color: var(--accent-champagne);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite;
}

/* Sections Structure */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-champagne));
    margin-bottom: 20px;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--bg-secondary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.5;
}

.philosophy-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-champagne);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-image-container .image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.philosophy-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.philosophy-image-container .image-wrapper:hover .philosophy-img {
    transform: scale(1.05);
}

.image-overlay-box {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: var(--border-radius-md);
}

.overlay-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 4px;
}

.overlay-desc {
    font-size: 0.85rem;
    color: var(--accent-champagne);
}

/* Catalog Section */
.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(242, 92, 5, 0.2);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    border-color: var(--border-glow);
}

.product-img-box {
    position: relative;
    height: 240px;
    background-color: var(--bg-tertiary);
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-champagne);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(13, 14, 18, 0.9), transparent);
    display: flex;
    justify-content: center;
    transition: var(--transition-smooth);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.placeholder-product-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-champagne);
}

.flame-gradient {
    background: linear-gradient(135deg, #1c100b, #30170a);
}

.metallic-gradient {
    background: linear-gradient(135deg, #18191c, #2a2c33);
}

.large-icon {
    font-size: 4rem;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.product-card:hover .large-icon {
    opacity: 0.6;
    transform: scale(1.1) rotate(5deg);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-family: var(--font-heading);
    color: var(--accent-champagne);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 300;
}

.product-specs {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-specs i {
    color: var(--accent-orange);
    margin-right: 5px;
}

/* Locations Section */
.locations-section {
    background-color: var(--bg-secondary);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.location-card {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.location-card:hover {
    border-color: var(--accent-champagne);
    box-shadow: var(--shadow-soft);
}

.location-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(223, 193, 130, 0.1);
    color: var(--accent-champagne);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-bottom-left-radius: var(--border-radius-md);
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.location-content h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--accent-champagne);
}

.location-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-content p i {
    color: var(--accent-orange);
    width: 16px;
}

.location-content .hours {
    margin: 24px 0;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--accent-champagne);
}

.location-content .hours strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-content .hours p {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--text-secondary);
}

/* Map Display Area */
.map-container-box {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-soft);
}

.map-header {
    background-color: var(--bg-tertiary);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

#map-active-title {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--heading-color);
}

.map-controls {
    display: flex;
    gap: 10px;
}

.map-ctrl-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.map-ctrl-btn.active, .map-ctrl-btn:hover {
    background: var(--accent-champagne);
    color: var(--bg-primary);
    border-color: transparent;
}

.map-frame {
    height: 450px;
    background: #111;
    position: relative;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 60px;
    align-items: start;
}

.contact-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-detail-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(242, 92, 5, 0.1);
    border: 1px solid var(--border-glow);
    color: var(--accent-orange);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.detail-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-text p {
    font-size: 1.1rem;
    color: var(--heading-color);
    font-weight: 500;
}

/* Glassmorphic Contact Form */
.glass-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: var(--input-focus-bg);
    box-shadow: 0 0 10px rgba(242, 92, 5, 0.15);
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 5px;
}

.form-checkbox input {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    display: none;
    text-align: center;
}

.form-status.success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    display: block;
}

.form-status.error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    display: block;
}

/* Footer Section */
.main-footer {
    background-color: #08090b;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 4fr 3fr 3fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand-col .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 20px;
}

.footer-brand-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--accent-orange);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links-col h4, .footer-legal-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-champagne);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links-col ul a:hover {
    color: var(--accent-orange);
    padding-left: 4px;
}

.footer-legal-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-legal-col a {
    color: var(--text-secondary);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.footer-legal-col a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Scroll back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px;
    width: 44px;
    height: 44px;
    background-color: var(--accent-orange);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.back-to-top.show {
    right: 30px;
}

.back-to-top:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-3px);
}

/* Animations */
@keyframes scrollMouse {
    0% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Media Queries */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-img {
        height: 380px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-main {
        padding-top: 90px;
    }

    .hero-section {
        margin-top: -90px;
    }

    .hero-container {
        padding-top: 80px;
    }

    .hero-slide-title {
        font-size: 2.8rem;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }

    .slider-dots {
        left: 20px;
        bottom: 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--bg-secondary);
        z-index: 1000;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        padding: 100px 40px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .form-row.split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-row {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .hero-slide-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Light Mode Specific UI Overrides & Theme Toggle Styles
   ========================================================================== */

/* Shop Online Button Style */
.btn-shop {
    background: linear-gradient(135deg, var(--accent-champagne), #b59a5b);
    color: var(--bg-primary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 4px 10px rgba(223, 193, 130, 0.15);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-shop i {
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-shop:hover {
    background: linear-gradient(135deg, #f4f3ef, var(--accent-champagne));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(223, 193, 130, 0.3);
}

.btn-shop:hover i {
    transform: scale(1.1);
}

body.light-theme .btn-shop {
    background: linear-gradient(135deg, var(--accent-orange), #c0392b);
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(242, 92, 5, 0.15);
}

body.light-theme .btn-shop:hover {
    background: linear-gradient(135deg, var(--accent-orange-hover), #d35400);
    box-shadow: 0 6px 15px rgba(242, 92, 5, 0.3);
}

@media (max-width: 576px) {
    .btn-shop span {
        display: none !important;
    }
    .btn-shop {
        padding: 8px 12px !important;
        border-radius: 50% !important;
        width: 38px !important;
        height: 38px !important;
        justify-content: center !important;
    }
    .btn-shop i {
        margin: 0 !important;
        font-size: 1.05rem !important;
    }
}

/* Theme Toggle Button Style */
.theme-toggle {
    background: transparent;
    border: none;
    color: var(--accent-champagne);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border-radius: 50%;
    width: 38px;
    height: 38px;
}

.theme-toggle:hover {
    background: rgba(223, 193, 130, 0.12);
    color: var(--accent-orange-hover);
    transform: scale(1.08);
}

body.light-theme .theme-toggle {
    color: var(--accent-orange);
}

body.light-theme .theme-toggle:hover {
    background: rgba(242, 92, 5, 0.08);
}

/* Dynamic CSS overrides for inline styles on preview HTML pages */
body.light-theme h1, 
body.light-theme h2, 
body.light-theme h3, 
body.light-theme h4,
body.light-theme h5 {
    color: var(--heading-color) !important;
}

body.light-theme td,
body.light-theme .specs-table td {
    color: var(--text-primary) !important;
}

body.light-theme .specs-table tr {
    border-bottom-color: var(--border-color) !important;
}

/* Override inline styling on product specs boxes */
body.light-theme [style*="background: var(--bg-secondary)"],
body.light-theme [style*="background-color: var(--bg-secondary)"] {
    background-color: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
}

body.light-theme [style*="background: var(--bg-tertiary)"],
body.light-theme [style*="background-color: var(--bg-tertiary)"] {
    background-color: var(--bg-tertiary) !important;
}

body.light-theme [style*="background-color: rgba(255,255,255,0.02)"] {
    background-color: var(--bg-tertiary) !important;
}

/* Specific component overrides for light mode readability */
body.light-theme .logo-accent {
    color: var(--accent-amber);
}

body.light-theme .btn-outline {
    color: var(--text-primary);
}

body.light-theme .btn-outline:hover {
    background: rgba(223, 193, 130, 0.15);
    color: var(--heading-color);
}

body.light-theme .nav-menu ul li a:hover,
body.light-theme .nav-menu ul li.current-menu-item > a,
body.light-theme .nav-menu ul li.current_page_item > a,
body.light-theme .nav-link:hover, 
body.light-theme .nav-link.active {
    color: var(--accent-orange);
}

body.light-theme .nav-menu ul li.btn-contact-nav a:hover,
body.light-theme .btn-contact-nav:hover {
    color: #fff !important;
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

body.light-theme .slider-arrow {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

body.light-theme .slider-arrow:hover {
    background: var(--accent-orange);
    color: #fff;
    border-color: var(--accent-orange);
}

body.light-theme .slider-dots .dot {
    background: rgba(0, 0, 0, 0.15);
}

body.light-theme .slider-dots .dot.active {
    background: var(--accent-orange);
}

body.light-theme .product-actions {
    background: linear-gradient(to top, rgba(251, 251, 253, 0.95), transparent);
}

body.light-theme .location-card:hover {
    border-color: var(--accent-orange);
}

body.light-theme .location-badge {
    background: rgba(242, 92, 5, 0.06);
    color: var(--accent-orange);
}

body.light-theme .map-frame {
    background: #e5e3df;
}

body.light-theme .main-footer {
    background-color: #f1efeb;
}

body.light-theme .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .social-links a:hover {
    color: #fff;
}
