:root {
    --primary-bg: #FCFAFA;
    --secondary-bg: #1B1B1B;
    --accent-bg: #D4A373;
    --text-on-primary: #1A1A1A;
    --text-on-secondary: #F9FAF9;
    --muted-text-light: #6B7280;
    --muted-text-dark: #9CA3AF;
    --button-cta: #D4A373;
    --button-hover: #BC8A5F;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-on-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

ul,
ol {
    list-style: none;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }

    h3 {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
    }

    body {
        font-size: 15px;
        word-wrap: break-word;
    }

    #cookieConsentBanner {
        max-width: 100%;
        width: 100%;
        margin: 0;
        right: 0;
        bottom: 0;
    }
}

.soft-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== main_header ===== */
#header {
    overflow: hidden
}

.js-nav-link,
.js-menu-toggle,
.js-menu-close {
    cursor: pointer
}

.js-mobile-overlay {
    hyphens: auto;
    line-height: 1.2
}

/* ===== hero_section ===== */
#hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hyphens-auto {
    hyphens: auto;
}

.bg-button-cta {
    background-color: var(--button-cta);
}

.bg-button-hover {
    background-color: var(--button-hover);
}

.text-text-on-secondary {
    color: var(--text-on-secondary);
}

/* ===== history_block ===== */
#brand-story {
    overflow: hidden;
    position: relative;
}

.js-brand-story p {
    hyphens: auto;
}

.js-brand-story h2,
.js-brand-story h3 {
    line-height: 1.2;
}

@media (min-width: 768px) {
    .js-brand-story h2 {
        line-height: 1.3;
    }
}

/* ===== product_catalog ===== */
.js-smooth-scroll {
    transition: all 0.3s ease;
}

.js-smooth-scroll:hover {
    transform: translateY(-2px);
}

.grayscale {
    filter: grayscale(100%);
}

/* ===== sustainability_info ===== */
#eco-responsibility {
    hyphens: auto;
}

.sustainability-card {
    transition: border-color 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.sustainability-card:hover {
    border-color: #D4A373;
    transform: translateY(-4px);
}

/* ===== manufacturing_process ===== */
#quality {
    hyphens: auto;
}

#quality h2,
#quality h3 {
    line-height: 1.3;
}

/* ===== warranty_program ===== */
#warranty {
    overflow: hidden;
    position: relative;
}

#warranty h2,
#warranty h3,
#warranty p {
    color: var(--text-on-secondary);
}

#warranty .text-\[#9CA3AF\] {
    color: var(--muted-text-dark);
}

#warranty .text-\[#D4A373\] {
    color: var(--accent-bg);
}

#warranty .bg-\[#D4A373\] {
    background-color: var(--accent-bg);
}

#warranty .border-\[#D4A373\/20\] {
    border-color: rgba(212, 163, 115, 0.2);
}

/* ===== seasonal_colors ===== */
#colors {
    overflow: hidden;
}

#colors h2,
#colors h3 {
    hyphens: auto;
    line-height: 1.2;
}

/* ===== designer_reviews ===== */
#testimonials {
    overflow: hidden;
}

.bi-quote::before {
    content: "\f4e1";
    font-family: "bootstrap-icons";
}

/* ===== warehouse_gallery ===== */
#warehouse {
    overflow: hidden;
}

#warehouse img {
    transition: transform 0.5s ease;
}

#warehouse img:hover {
    transform: scale(1.05);
}

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

/* ===== top_picks ===== */
#top-picks {
    hyphens: auto;
}

.group:hover img {
    transform: scale(1.05);
}

/* ===== faq_accordion ===== */
#faq .js-faq-content {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#faq .hyphens-auto {
    hyphens: auto;
}

/* ===== contact_order ===== */
#order-form .form-input::placeholder {
    color: var(--muted-text-light);
}

#order-form input:focus,
#order-form select:focus,
#order-form textarea:focus {
    border-color: var(--accent-bg);
}

#order-form .js-total-price {
    transition: all 0.3s ease-in-out;
}

/* ===== main_footer ===== */
footer {
    hyphens: auto;
}

footer a {
    text-decoration: none;
}

footer ul {
    margin: 0;
    padding: 0;
}

.bi {
    line-height: 1;
}