/* Southern Brush & Burlap Design System */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --bg-primary: #FCF9F5;      /* Crisp warm cotton cream */
    --bg-secondary: #F4EFE6;    /* Distressed linen beige */
    --bg-card: #FFFFFF;
    --primary: #513B2E;         /* Deep walnut wood */
    --primary-light: #7E6351;   /* Natural oak bark */
    --secondary: #7F8E7D;       /* Southern sage green */
    --secondary-dark: #5C6A5A;  /* Forest moss */
    --zinc: #8C9697;            /* Galvanized iron silver */
    --zinc-light: #B4BDBE;      /* Bright zinc gloss */
    --zinc-dark: #636D6E;       /* Distressed steel charcoal */
    --rust: #BD5D47;            /* Autumn terracotta rust */
    --rust-light: #D98471;
    --text-color: #2D2724;      /* Charcoal black-brown */
    --text-muted: #6E615B;      /* Ash gray-brown */
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 4px 12px rgba(81, 59, 46, 0.04);
    --shadow-md: 0 10px 30px rgba(81, 59, 46, 0.08);
    --shadow-lg: 0 20px 45px rgba(81, 59, 46, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 3px solid var(--bg-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(252, 249, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(81, 59, 46, 0.06);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(252, 249, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled .nav-container {
    padding: 0.8rem 2rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zinc) 0%, var(--zinc-dark) 100%);
    border: 2px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text h1 {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-text span {
    font-size: 0.75rem;
    font-family: var(--font-body);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-btn {
    background: var(--bg-secondary);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(81, 59, 46, 0.1);
}

.cart-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-count {
    background: var(--rust);
    color: var(--white);
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(to right, rgba(252, 249, 245, 0.97) 35%, rgba(252, 249, 245, 0.65) 70%, rgba(252, 249, 245, 0) 100%), 
                url('../images/hero_bg.jpg') no-repeat center center/cover;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

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

.hero-badge {
    background: rgba(127, 142, 125, 0.15);
    color: var(--secondary-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(127, 142, 125, 0.3);
}

.hero-content h2 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content h2 span {
    color: var(--secondary-dark);
    position: relative;
    display: inline-block;
}

.hero-content h2 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background: rgba(215, 192, 163, 0.35);
    z-index: -1;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(81, 59, 46, 0.2);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(81, 59, 46, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(81, 59, 46, 0.2);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(81, 59, 46, 0.1);
    padding-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(140, 150, 151, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zinc-dark);
}

.feature-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
}

.feature-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sections General */
section {
    padding: 7rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Interactive Configurator */
.configurator-section {
    background: var(--bg-secondary);
    position: relative;
}

.configurator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(81, 59, 46, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.configurator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(81, 59, 46, 0.05);
}

.configurator-preview-pane {
    background: radial-gradient(circle at 50% 50%, #FAF6EE 0%, #EFE8DA 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 480px;
    border-right: 1px solid rgba(81, 59, 46, 0.06);
}

.preview-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(81, 59, 46, 0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* SVG Configurator Visualizer */
.visualizer-container {
    width: 100%;
    max-width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.visualizer-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 25px rgba(81, 59, 46, 0.15));
}

.config-controls {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.config-group label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.6rem;
    display: block;
}

.config-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.config-type-btn {
    background: var(--bg-primary);
    border: 1px solid rgba(81, 59, 46, 0.1);
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.config-type-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.config-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(81, 59, 46, 0.15);
    background: var(--bg-primary);
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.config-input:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(127, 142, 125, 0.15);
}

.color-swatches {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
    transition: var(--transition);
    position: relative;
}

.color-swatch.active {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--primary);
}

.color-swatch::after {
    content: attr(title);
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
    z-index: 10;
}

.color-swatch:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.select-dropdown {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(81, 59, 46, 0.15);
    background: var(--bg-primary) url("data:image/svg+xml;utf8,<svg fill='%23513B2E' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right 12px center;
    background-size: 20px;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.config-price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(81, 59, 46, 0.08);
    margin-top: 1.5rem;
}

.price-details h5 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--rust);
}

.btn-add-config {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Product Gallery */
.gallery-section {
    background: var(--bg-primary);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.tab-btn {
    background: var(--bg-secondary);
    border: 1px solid rgba(81, 59, 46, 0.08);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(81, 59, 46, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(127, 142, 125, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--rust);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 5;
    letter-spacing: 0.5px;
}

.product-image-container {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
}

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

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(81, 59, 46, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 4;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-quick {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(15px);
    transition: var(--transition);
}

.product-card:hover .btn-view-quick {
    transform: translateY(0);
}

.btn-view-quick:hover {
    background: var(--primary);
    color: var(--white);
}

.product-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(81, 59, 46, 0.06);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--rust);
}

.btn-configure {
    background: none;
    border: 1px solid var(--secondary);
    color: var(--secondary-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-configure:hover {
    background: var(--secondary);
    color: var(--white);
}

/* About The Artist */
.about-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    aspect-ratio: 1;
    border: 6px solid var(--white);
    background: var(--white);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 180px;
    z-index: 5;
}

.about-decor p {
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    line-height: 1.4;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.45;
    font-style: italic;
    color: var(--primary-light);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary);
}

.about-bio {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.about-signature-block {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 20px;
}

.artist-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary);
}

.artist-title {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

/* Service Area (SEO focus) */
.service-section {
    background: var(--bg-primary);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.service-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.county-block {
    margin-bottom: 2.5rem;
}

.county-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.county-title span {
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--secondary-dark);
    background: rgba(127, 142, 125, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.city-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-badge {
    background: var(--bg-secondary);
    border: 1px solid rgba(81, 59, 46, 0.08);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.city-badge:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.service-visual {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(215, 192, 163, 0.3) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(81, 59, 46, 0.05);
    text-align: center;
}

.map-placeholder {
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px dashed var(--zinc);
}

.map-icon {
    font-size: 2.5rem;
    color: var(--rust);
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.map-status h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.service-highlight-box {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-highlight-box strong {
    color: var(--bg-secondary);
}

/* Contact & Order Form */
.contact-section {
    background: var(--bg-secondary);
    position: relative;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(81, 59, 46, 0.05);
}

.contact-sidebar {
    background: var(--primary);
    color: var(--white);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-sidebar h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-sidebar p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.contact-details-list {
    list-style: none;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 1.8rem;
}

.detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--bg-secondary);
}

.detail-info h5 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.detail-info p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.contact-form-container {
    padding: 4rem;
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(81, 59, 46, 0.12);
    background: var(--bg-primary);
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(127, 142, 125, 0.15);
}

textarea.form-input {
    height: 120px;
    resize: none;
}

/* Inquiry Cart In Form */
.form-cart-preview {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(81, 59, 46, 0.08);
}

.form-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(81, 59, 46, 0.08);
    padding-bottom: 0.5rem;
}

.form-cart-header h4 {
    font-size: 1rem;
}

.form-cart-items-list {
    max-height: 200px;
    overflow-y: auto;
}

.form-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(81, 59, 46, 0.05);
}

.form-cart-item-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.form-cart-item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-form-submit {
    width: 100%;
    padding: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-status-msg {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-status-msg.success {
    display: block;
    background: rgba(127, 142, 125, 0.15);
    color: var(--secondary-dark);
    border: 1px solid var(--secondary);
}

.form-status-msg.error {
    display: block;
    background: rgba(189, 93, 71, 0.1);
    color: var(--rust);
    border: 1px solid var(--rust);
}

/* Side Drawer (Cart) */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: var(--bg-primary);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(81, 59, 46, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(81, 59, 46, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
}

.btn-close-cart {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-close-cart:hover {
    background: var(--bg-secondary);
}

.cart-items {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
}

.cart-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.cart-empty-icon {
    font-size: 3rem;
    color: var(--zinc-light);
    margin-bottom: 1rem;
}

.drawer-item {
    display: flex;
    gap: 15px;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(81, 59, 46, 0.06);
    position: relative;
}

.drawer-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-item-details {
    flex-grow: 1;
}

.drawer-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.drawer-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.drawer-item-remove {
    background: none;
    border: none;
    color: var(--rust);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.drawer-item-remove:hover {
    text-decoration: underline;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(81, 59, 46, 0.08);
    background: var(--bg-secondary);
}

.cart-totals {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-checkout {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Popup (Quick View) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(81, 59, 46, 0.5);
    backdrop-filter: blur(4px);
}

.modal-wrapper {
    background: var(--bg-primary);
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 3001;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(81, 59, 46, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.open .modal-wrapper {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-media {
    background: var(--bg-secondary);
    height: 100%;
    min-height: 350px;
    position: relative;
}

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

.modal-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.modal-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--rust);
    margin-bottom: 1.2rem;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.modal-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-features-list li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.modal-features-list li::before {
    content: '✓';
    color: var(--secondary-dark);
    font-weight: bold;
}

/* Footer */
footer {
    background: #251B17;
    color: #ECE7E3;
    padding: 5rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-brand h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #B9AFAB;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ECE7E3;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-links-list a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    color: #B9AFAB;
    font-size: 0.9rem;
}

.footer-contact-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #8C807B;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-features {
        justify-content: center;
    }
    .configurator-wrapper {
        grid-template-columns: 1fr;
    }
    .configurator-preview-pane {
        border-right: none;
        border-bottom: 1px solid rgba(81, 59, 46, 0.06);
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .service-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-sidebar {
        padding: 3rem;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .nav-menu {
        display: none; /* Mobile menu implementation if needed, or simple stacking */
    }
    .menu-toggle {
        display: block;
    }
    .hero-content h2 {
        font-size: 2.6rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .modal-wrapper {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-media {
        min-height: 250px;
    }
    .modal-content {
        padding: 2rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
