/* ============================
   LEVHA — Bespoke Name Plates
   Styles (styles.css)
   ============================ */

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

:root {
    --black: #0a0a0a;
    --white: #f8f7f4;
    --cream: #f2f0eb;
    --grey-100: #e8e6e1;
    --grey-200: #d1cfc9;
    --grey-400: #8a8780;
    --grey-600: #5a5851;
    --grey-800: #2e2d2a;
    --accent: #c9a96e;
    --accent-dark: #b08d4f;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Outfit', 'Segoe UI', Tahoma, sans-serif;
    --mono: 'Space Mono', 'Courier New', monospace;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* --- HEADER --- */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 247, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
    transition: transform 0.4s var(--ease-out-expo), background 0.3s ease;
}

#site-header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.55rem;
    letter-spacing: 0.35em;
    color: var(--black);
    line-height: 1;
}

.logo-sub {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 0.55rem;
    letter-spacing: 0.42em;
    color: var(--grey-400);
    margin-top: 2px;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--grey-600);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.4s var(--ease-out-expo);
}

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

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 247, 244, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

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

/* --- HERO --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-eyebrow {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent-dark);
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--grey-600);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 44px;
}

.btn-primary {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background: var(--grey-800);
    transform: translateY(-1px);
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 70vh;
    min-height: 480px;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(10,10,10,0.08);
}

.hero-badge {
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--grey-400);
    border: 1px solid var(--grey-200);
    padding: 8px 16px;
    border-radius: 0;
}

/* --- CATALOGUE HEADER --- */
.catalogue-header {
    max-width: 1360px;
    margin: 0 auto;
    padding: 100px 40px 0;
    text-align: center;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--grey-400);
    max-width: 520px;
    margin: 0 auto;
}

/* --- FILTER BAR --- */
.filter-bar {
    max-width: 1360px;
    margin: 36px auto 0;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding: 10px 24px;
    color: var(--grey-600);
    border: 1px solid var(--grey-200);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--grey-400);
    color: var(--black);
}

.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* --- PRODUCT GRID --- */
.products-section {
    max-width: 1360px;
    margin: 0 auto;
    padding: 48px 40px 80px;
}

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

/* --- PRODUCT CARD --- */
.product-card {
    background: var(--cream);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out-quart), transform 0.6s var(--ease-out-quart);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(10, 10, 10, 0.08);
}

.card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.card-image-placeholder {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--grey-200);
    letter-spacing: 0.1em;
    user-select: none;
}

.card-category-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-600);
    background: rgba(248, 247, 244, 0.85);
    padding: 5px 10px;
    backdrop-filter: blur(6px);
}

.card-body {
    padding: 20px 22px 24px;
}

.card-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--black);
}

.card-material {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--grey-400);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
}

.card-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid var(--grey-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--grey-400);
    transition: all 0.3s ease;
}

.product-card:hover .card-arrow {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.modal-content {
    background: var(--white);
    max-width: 920px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s var(--ease-out-expo);
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.8rem;
    color: var(--grey-400);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--black);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image-wrap {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 40px;
}

.modal-image {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--grey-200);
    letter-spacing: 0.1em;
}

.modal-details {
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
}

.modal-category {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 10px;
}

.modal-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 8px;
}

.modal-price {
    font-family: var(--mono);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.modal-description {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* --- OPTIONS --- */
.option-group {
    margin-bottom: 20px;
}

.option-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-600);
    margin-bottom: 10px;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-btn {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 9px 18px;
    border: 1px solid var(--grey-200);
    color: var(--grey-600);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.option-btn:hover {
    border-color: var(--grey-400);
    color: var(--black);
}

.option-btn.selected {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* --- MODAL NOTE --- */
.modal-note {
    font-size: 0.75rem;
    color: var(--grey-400);
    margin-bottom: 24px;
    padding: 12px 14px;
    background: var(--cream);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.note-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- WHATSAPP BTN --- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp);
    color: #fff;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-1px);
}

.wa-icon {
    width: 18px;
    height: 18px;
}

/* --- ABOUT --- */
#about {
    background: var(--black);
    color: var(--white);
    padding: 120px 40px;
}

.about-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-eyebrow {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 20px;
}

.about-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 30px;
}

.about-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--grey-200);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 20px;
    border-left: 1px solid var(--grey-600);
}

.stat-number {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1;
    color: var(--accent);
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--grey-400);
}

/* --- CONTACT --- */
#contact {
    padding: 120px 40px;
    text-align: center;
}

.contact-inner {
    max-width: 560px;
    margin: 0 auto;
}

.contact-eyebrow {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 16px;
}

.contact-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--grey-400);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-wa {
    display: inline-flex;
}

/* --- FOOTER --- */
#site-footer {
    border-top: 1px solid var(--grey-100);
    padding: 48px 40px;
}

.footer-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
}

.footer-brand .logo-sub {
    font-size: 0.48rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--grey-400);
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--black);
}

.footer-copy {
    font-size: 0.72rem;
    color: var(--grey-400);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--grey-200);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--grey-400);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image-wrap {
        min-height: 260px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 24px;
        height: 64px;
    }

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    #hero {
        padding: 100px 24px 60px;
        flex-direction: column;
        min-height: auto;
        gap: 40px;
    }

    .hero-visual {
        display: block;
        width: 100%;
        margin-top: 24px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }

    .catalogue-header {
        padding: 72px 24px 0;
    }

    .filter-bar {
        padding: 0 24px;
    }

    .products-section {
        padding: 36px 24px 60px;
    }

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

    #about {
        padding: 80px 24px;
    }

    #contact {
        padding: 80px 24px;
    }

    #site-footer {
        padding: 36px 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-details {
        padding: 28px 24px 32px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.72rem;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.78rem;
    }
}

/* --- NEW STYLES --- */
/* Instagram Icons */
.ig-icon-nav { width: 22px; height: 22px; display: inline-block; vertical-align: middle; }
.ig-icon-mobile { width: 28px; height: 28px; display: inline-block; vertical-align: middle; margin-right: 8px; }
.ig-icon-banner { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
.ig-icon-btn { width: 20px; height: 20px; display: inline-block; vertical-align: middle; margin-right: 8px; }
.ig-icon-footer { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }

/* IG Banner */
#ig-banner {
    background: var(--cream);
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--grey-100);
}
.ig-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
}
.ig-banner-handle {
    color: var(--accent-dark);
}
.ig-banner-arrow {
    margin-left: 4px;
}

/* Modal Image Nav */
.modal-image-wrap {
    position: relative;
}
.modal-image-el {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.img-nav {
    position: absolute;
    bottom: 24px;
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.7);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
    z-index: 10;
}
.img-nav:hover {
    background: var(--black);
}
.img-nav-prev {
    left: calc(50% - 90px);
}
.img-nav-next {
    right: calc(50% - 90px);
}
.img-counter {
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--black);
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 15px 32px;
    border: 1px solid var(--grey-200);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-instagram:hover {
    border-color: var(--black);
    background: var(--cream);
}
.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
@media (max-width: 480px) {
    .contact-buttons {
        flex-direction: column;
    }
}

/* --- HERO ANIMATIONS & TYPEWRITER --- */
.line-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}
.line-inner {
    display: inline-block;
    transform: translateY(100%);
    animation: slideUpReveal 1s var(--ease-out-expo) forwards;
}
.line-wrap:nth-child(1) .line-inner { animation-delay: 0.1s; }
.line-wrap:nth-child(3) .line-inner { animation-delay: 0.25s; }
.line-wrap:nth-child(5) .line-inner { animation-delay: 0.4s; }

.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpReveal 1s var(--ease-out-expo) forwards;
}
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 0.65s; }

.animate-fade {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}
.delay-3 { animation-delay: 0.8s; }

@keyframes slideUpReveal {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}
@keyframes fadeUpReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.typewriter-box {
    position: absolute;
    bottom: -32px;
    left: -48px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    padding: 24px 32px;
    box-shadow: 0 24px 60px rgba(10,10,10,0.08);
    min-width: 280px;
    border-radius: 4px;
    z-index: 10;
}
.typewriter-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 8px;
}
.typewriter-text {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 500;
    min-height: 2.2rem;
    border-right: 2px solid var(--accent);
    padding-right: 4px;
    animation: blinkCursor 0.8s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}
@keyframes blinkCursor {
    50% { border-color: transparent; }
}

@media (max-width: 900px) {
    .hero-visual {
        height: 60vh;
    }
    .typewriter-box {
        left: -24px;
        bottom: -24px;
    }
}
@media (max-width: 768px) {
    .hero-visual {
        height: 400px;
        min-height: auto;
    }
    .typewriter-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -32px;
        z-index: 10;
        box-shadow: 0 12px 40px rgba(10,10,10,0.1);
        margin-left: 24px;
        margin-right: 24px;
        width: calc(100% - 48px);
        min-width: 0;
    }
}

/* --- QTY SELECTOR & TOTAL --- */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-200);
    border-radius: 4px;
    width: fit-content;
    overflow: hidden;
}
.qty-btn {
    background: var(--grey-100);
    border: none;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.qty-btn:hover {
    background: var(--grey-200);
}
.qty-input {
    width: 48px;
    height: 36px;
    border: none;
    text-align: center;
    font-family: var(--mono);
    font-size: 0.9rem;
    border-left: 1px solid var(--grey-200);
    border-right: 1px solid var(--grey-200);
    -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.modal-total-wrap {
    margin: 24px 0;
    padding: 16px;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-400);
}
.total-price {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black);
}
