:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F5F5DC;
    --text-main: #1A1A1A;
    --text-muted: #4B5563;
    --accent-gold: #D4AF37;
    --accent-black: #000000;
    --border-radius: 2px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

input,
select,
textarea {
    font-family: inherit;
    border-radius: var(--border-radius);
}

@media (max-width: 768px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 90%;
        word-wrap: break-word;
    }

    .mobile-font-adjust {
        font-size: 0.9rem;
        word-break: break-all;
    }
}

.focus-outline:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===== header_section ===== */
.js-mobile-menu.translate-x-full {
    transform: translateX(100%)
}

.js-mobile-menu.translate-x-0 {
    transform: translateX(0)
}

/* ===== hero_section ===== */
#hero {
    width: 100%;
}

.hero-title {
    color: var(--primary-bg);
}

.hero-subtitle {
    color: var(--secondary-bg);
}

.hero-btn {
    background-color: var(--accent-gold);
    color: var(--accent-black);
}

.hero-icon {
    color: var(--accent-black);
}

.js-hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* ===== about_us ===== */
#about {
    scroll-margin-top: 80px;
}

.js-about-animate {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 1000ms;
}

/* ===== benefits ===== */
.font-serif {
    font-family: serif;
}

/* ===== product_grid ===== */
.font-serif {
    font-family: serif;
}

#product-modal {
    transition: opacity 0.3s ease-in-out;
}

.js-product-card {
    cursor: pointer;
}

/* ===== product_variants ===== */
#options {
    width: 100%;
}

.js-variant-card {
    transition: transform 0.3s ease;
}

.js-variant-card:hover {
    transform: translateY(-5px);
}

/* ===== guide_section ===== */
.guide-section-width {
    width: 100%;
}

.js-guide-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== interior_gallery ===== */
#gallery {
    scroll-margin-top: 2rem;
}

.js-gallery-item {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* ===== logistics_info ===== */
#delivery {
    width: 100%;
}

.logistics-card {
    transition: transform 0.3s ease;
}

/* ===== testimonials ===== */
.font-serif {
    font-family: 'Playfair Display', serif
}

.js-testimonial-card {
    transition: transform 0.3s ease-in-out
}

.js-testimonial-card:hover {
    transform: translateY(-5px)
}

/* ===== faq_accordion ===== */
.js-faq-btn:hover span {
    color: var(--accent-gold) !important;
}

.js-faq-content {
    transition: all 0.3s ease-in-out;
}

/* ===== footer ===== */
#footer {
    width: 100%;
}

html {
    scroll-behavior: smooth;
}