/* ============================================
   Art Room — Premium Luxury Design
   Mobile-first, Modern, Professional
   ============================================ */

/* === VARIABLES === */
:root {
    --burgundy: #8B2942;
    --burgundy-dark: #5C1A2B;
    --burgundy-light: #A83450;
    --burgundy-glow: rgba(139, 41, 66, 0.3);

    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --cream-light: #FFFDFB;

    --gold: #D4AF37;
    --gold-light: #E8C857;
    --gold-dark: #B8962E;

    --white: #FFFFFF;
    --black: #1A1A1A;
    --charcoal: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --gray-lighter: #E5E5E5;

    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;

    --gradient-burgundy: linear-gradient(135deg, #8B2942 0%, #5C1A2B 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
    --gradient-cream: linear-gradient(180deg, #FAF8F5 0%, #F0EDE8 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    --container: 480px;
    --header-height: 72px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

@media (min-width: 768px) {
    :root {
        --container: 720px;
        --space-xl: 5rem;
        --space-2xl: 8rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --container: 960px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.7;
    color: var(--black);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

ul {
    list-style: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* === TYPOGRAPHY === */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #8B2942 0%, #C44D75 50%, #5C1A2B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    filter: drop-shadow(0 2px 5px rgba(139, 41, 66, 0.2));
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    text-align: center;
    margin-top: calc(var(--space-lg) * -1 + var(--space-md));
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.text-lead {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray);
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(139, 41, 66, 0.9), rgba(92, 26, 43, 0.95));
    color: var(--white);
    box-shadow: 0 8px 32px rgba(139, 41, 66, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 41, 66, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(168, 52, 80, 0.95), rgba(92, 26, 43, 1));
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(250, 248, 245, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 41, 66, 0.08);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.95);
    border-bottom: 1px solid rgba(139, 41, 66, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo-text-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--burgundy);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text-brand:hover {
    color: var(--burgundy-light);
}

.logo-text-brand-light {
    color: var(--white);
    font-size: 1.8rem;
}

.logo-text-brand-light:hover {
    color: var(--gold);
}

/* Menu Toggle */
.menu-toggle {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--burgundy);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:first-child {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:last-child {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--burgundy);
    padding: var(--space-md) 0;
    transition: all 0.3s ease;
}

/* === HERO CAROUSEL === */
.hero-carousel {
    position: relative;
    margin-top: var(--header-height);
    height: 45vh;
    min-height: 280px;
    max-height: 450px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.5) 0%, rgba(240, 237, 232, 0.8) 100%);
    padding: var(--space-md) 0;
    backdrop-filter: blur(5px);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 50%;
    height: 100%;
    padding: 0 8px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 20px 40px rgba(139, 41, 66, 0.15));
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
    border-radius: var(--radius-md);
    transition: filter 0.4s ease;
}

.carousel-slide.active img {
    filter: drop-shadow(0 20px 45px rgba(139, 41, 66, 0.2));
}

.carousel-indicators,
.carousel-nav,
.carousel-btn {
    display: none;
}

/* === SECTIONS === */
.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-light {
    background: var(--cream);
}

.section-dark {
    background: url('images/background.jpg') center/cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark .section-title {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.section-dark .section-subtitle,
.section-dark .intro-text,
.section-dark .text-lead {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .intro-subtitle {
    color: var(--gold-light);
}

.section-dark .intro-divider {
    background: var(--gradient-gold);
    opacity: 0.6;
}

/* === INTRO SECTION === */
.intro-content {
    text-align: center;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 10vw, 4.8rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: var(--space-xs);
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 50%, var(--cream) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.intro-subtitle {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.intro-divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-burgundy);
    opacity: 0.4;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-full);
}

.intro-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

/* === DESIGNS GRID === */
.designs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .designs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.design-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.design-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.design-card:hover::before {
    opacity: 1;
}

.design-card-image {
    position: relative;
    overflow: hidden;
}

.design-card-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.design-card-info {
    padding: var(--space-sm);
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(250, 248, 245, 1));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.design-card-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--burgundy);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.design-card-hint {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.design-card:hover .design-card-hint {
    opacity: 1;
    transform: translateY(0);
}

.design-card:hover .design-card-name {
    transform: translateY(-2px);
}

.design-card-overlay {
    display: none;
}

/* === STEPS === */
/* === STEPS (EXTREMELY COMPACT PREMIUM) === */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        max-width: 320px;
    }
}

.step {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100px;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 100;
    letter-spacing: 0.1em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    margin-bottom: -5px;
}

.step-body {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 3px;
    letter-spacing: 0.05em;
}

.step-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

@media (min-width: 769px) {
    .step:not(:last-child)::after {
        display: none;
    }
}

/* === FAQ === */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-item.active {
    border-color: rgba(139, 41, 66, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--burgundy);
    transition: transform 0.4s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

/* === SELECTED DESIGN BANNER === */
.selected-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: url('images/background.jpg') center/cover;
    padding: var(--space-sm) 0;
    z-index: 50;
    transition: bottom 0.5s ease;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.selected-banner.active {
    bottom: 0;
}

.selected-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.selected-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.selected-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold-light);
    font-weight: 500;
}

.selected-clear {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.selected-clear:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* === ORDER FORM === */
.section-cta {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    padding: var(--space-2xl) 0;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 2.8rem);
    background: var(--gradient-burgundy);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: var(--space-xs);
}

.cta-text {
    font-size: 1rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

.order-form {
    max-width: 420px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 18px;
    font-size: 1.1rem;
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    color: var(--black);
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 41, 66, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B2942' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

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

.form-design {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--cream);
    border: 2px dashed rgba(139, 41, 66, 0.15);
    border-radius: var(--radius-md);
    min-height: 70px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-design:hover {
    border-color: rgba(139, 41, 66, 0.25);
}

.form-design-placeholder {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.form-design-selected {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-design-thumb {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.form-design-name {
    font-weight: 500;
    color: var(--charcoal);
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    margin: var(--space-md) 0;
    padding: var(--space-sm);
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

/* === SOCIAL === */
.social-links {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--burgundy);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    color: var(--burgundy-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* === FOOTER === */
.footer {
    padding: var(--space-2xl) 0 0;
    position: relative;
    overflow: hidden;
    color: var(--cream);
    background: #111;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.98)),
        url('images/background.jpg') center/cover;
    opacity: 1;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    z-index: 1;
}

.footer .container,
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-container-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
}

@media (max-width: 1024px) {
    .footer-container-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 600px) {
    .footer-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .footer-col-brand .footer-logo {
        justify-content: center;
    }
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
}

.footer .logo-text-brand {
    transform: none;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
}

@media (max-width: 600px) {
    .footer-about {
        margin: 0 auto;
    }
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .footer-link:hover {
        transform: translateY(-2px);
    }
}

.footer-contact li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 600px) {
    .footer-contact li {
        justify-content: center;
    }
}

.footer-social-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 600px) {
    .footer-social-list {
        flex-direction: row;
        justify-content: center;
    }
}

.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social-icon svg {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-md) 0 var(--space-lg);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-dialog {
    position: relative;
    width: 92%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
    z-index: 1001;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.modal.active .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--cream);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 45vh;
    object-fit: contain;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.modal-body {
    padding: var(--space-lg);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 6px;
    line-height: 1.2;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.modal-details {
    margin-bottom: var(--space-lg);
}

.modal-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.modal-detail:last-child {
    border-bottom: none;
}

.modal-detail-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.modal-detail-value {
    font-size: 0.95rem;
    color: var(--burgundy);
    font-weight: 600;
}

.modal-sizes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--space-sm);
}

.modal-size {
    display: flex;
    justify-content: space-between;
    background: var(--cream);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.modal-size:hover {
    background: var(--cream-dark);
    border-color: rgba(139, 41, 66, 0.1);
}

.modal-size-name {
    font-weight: 500;
    color: var(--charcoal);
}

.modal-size-price {
    color: var(--burgundy);
    font-weight: 600;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate:nth-child(1) {
    transition-delay: 0s;
}

.animate:nth-child(2) {
    transition-delay: 0.1s;
}

.animate:nth-child(3) {
    transition-delay: 0.2s;
}

.animate:nth-child(4) {
    transition-delay: 0.3s;
}

.animate:nth-child(5) {
    transition-delay: 0.4s;
}

.animate:nth-child(6) {
    transition-delay: 0.5s;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--burgundy);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-dark);
}

/* === SELECTION === */
::selection {
    background: rgba(139, 41, 66, 0.2);
    color: var(--burgundy-dark);
}