:root {
    --bg-color: #fafafa;
    --text-color: #111111;
    --text-muted: #777777;
    --accent: #cdc52b;
}

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

html, body {
    overflow-x: clip;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}



/* Links keep their default cursor */
a, button {
    cursor: pointer;
}

/* HEADER */
.hamburger-menu {
    display: none;
}
.mobile-overlay {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(250, 250, 250, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: 'Inter', sans-serif;
    color: #111;
}

.logo span {
    color: #b88a65; /* Kraft accent color */
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    background: none;
    border: none;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    cursor: pointer;
    padding-bottom: 0.2rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.open-modal-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.open-modal-btn:hover {
    background: #b88a65;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 138, 101, 0.2);
}

.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    right: -50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 100;
    width: max-content;
    pointer-events: none;
}

.mega-menu-dropdown::before {
    content: '';
    position: absolute;
    top: -30px; /* Invisible bridge to prevent hover loss */
    left: 0;
    width: 100%;
    height: 30px;
}

.nav-item-dropdown:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(15px) scale(1);
    pointer-events: auto;
}

.mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.mega-item {
    display: block;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mega-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--text-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.mega-item:hover {
    background: rgba(0,0,0,0.03);
    padding-left: 1.8rem;
}

.mega-item:hover::before {
    transform: scaleY(1);
}

.mega-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* HERO */
.hero.combined-style {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 10vh 5% 0;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

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

.hero-text-content h1 {
    font-size: 5vw;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-text-content .description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badges .badge {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.hero-badges .badge:hover {
    border-color: var(--text-color);
    background: var(--text-color);
    color: var(--bg-color);
}

.hero-visual-cluster {
    flex: 1.2;
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interactive-deck {
    flex: 1.2;
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform: translateX(-80px);
}

.hero-mascot {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    object-fit: contain;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.interaction-hint {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    z-index: 1;
}

.mascot-throwing {
    opacity: 0;
}

.deck-items-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
}

.cluster-item {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    text-decoration: none;
    z-index: 5;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), z-index 0s;
}

.cluster-item:hover {
    z-index: 20 !important;
}

.cluster-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.15));
    mix-blend-mode: darken;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cluster-item:hover img {
    transform: scale(1.15) translateY(-10px);
}

.cluster-item .item-name {
    position: absolute;
    bottom: -5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    white-space: nowrap;
    opacity: 0; /* Hidden by default when in palm */
    transition: bottom 0.3s ease, opacity 0.3s ease;
}

.cluster-item:hover .item-name {
    bottom: -15px;
}

@media (max-width: 1000px) {
    .hero.combined-style {
        flex-direction: column;
        text-align: center;
        padding-top: 10vh;
        min-height: 110vh;
        gap: 3rem;
    }
    .hero-text-content {
        max-width: 100%;
        position: relative;
        z-index: 50;
    }
    .hero-text-content h1 {
        font-size: 3rem;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-visual-cluster {
        width: 100%;
        height: 60vh;
        margin-top: 2rem;
    }
    .interaction-hint {
        top: 0;
    }
}

/* MARQUEE TICKER */
.marquee-section {
    padding: 4rem 0;
    background-color: var(--text-color);
    color: var(--bg-color);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-inner {
    display: flex;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.marquee-inner span {
    padding: 0 2rem;
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-btn {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.showcase-btn:hover {
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--text-color);
    color: var(--bg-color);
}

.btn-dark:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

/* SHOWCASE */
.showcase {
    padding: 6rem 4rem;
}

.showcase-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 8rem;
}

.showcase.reverse .showcase-container {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
    max-width: 400px;
}

.index {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.showcase-content h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.showcase-visual {
    flex: 1.5;
    height: 80vh;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-visual img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* CATEGORY HOVER LIST */
.category-list-section {
    padding: 4rem 4rem 2rem 4rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.category-header {
    margin-bottom: 6rem;
}

.category-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 5;
}

@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    height: 320px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
}

.product-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-visual img {
    width: 70%;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.product-card:hover .product-visual {
    transform: scale(1.1) translateY(-10px);
}

.product-info {
    position: relative;
    z-index: 2;
    background: transparent;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-btn {
    position: absolute;
    bottom: -30px; /* Hidden below */
    left: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover h3 {
    transform: translateY(-20px);
}

.product-card:hover .hover-btn {
    bottom: 0;
    opacity: 1;
}

}

.hover-image-reveal {
    position: fixed;
    top: 0;
    left: 0;
    width: 150px;
    height: auto;
    pointer-events: none;
    z-index: 10000; 
    opacity: 0;
}

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


/* CONTACT MODAL */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.contact-modal.active {
    pointer-events: all;
}

.modal-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-modal.active .modal-bg {
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 90vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(50px) scale(0.98);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-map-header {
    flex: 0 0 30%; /* Map takes top 30% */
    width: 100%;
    background: #eee;
}

.modal-inner {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.modal-inner h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.modal-inner p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.modal-body-split {
    flex: 1;
    display: flex;
    padding: 2rem 3rem;
    gap: 3rem;
    overflow-y: auto;
}

.modal-info-col {
    flex: 1;
}

.modal-info-col h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.modal-info-col p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-address-block {
    margin-top: 1.5rem;
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal-address-block strong {
    font-weight: 600;
    font-size: 1.1rem;
    color: #111;
}

.modal-form-col {
    flex: 1.5;
}

.elite-form .form-row {
    display: flex;
    gap: 2rem;
}

.elite-form .input-group {
    margin-bottom: 1rem;
    width: 100%;
}

.elite-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.2rem;
}

.elite-form input[type="text"], 
.elite-form input[type="email"], 
.elite-form input[type="tel"],
.elite-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 0.8rem 0;
    border-radius: 0;
    font-family: inherit;
    font-size: 1.05rem;
    background: transparent;
    transition: all 0.3s;
    outline: none;
    color: var(--text-color);
}

.elite-form input[type="text"]:focus, 
.elite-form input[type="email"]:focus, 
.elite-form input[type="tel"]:focus,
.elite-form textarea:focus {
    border-bottom-color: var(--text-color);
    background: transparent;
    box-shadow: none;
}

.elite-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #111;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
}

.elite-submit-btn {
    background: #111;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.elite-submit-btn:hover {
    background: #b88a65;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 138, 101, 0.2);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

@media (max-width: 900px) {
    .modal-body-split {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    .elite-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .modal-content {
        height: 95vh;
        width: 95vw;
    }
    .modal-map-header {
        flex: 0 0 30%;
    }
}

/* FOOTER */
.footer {
    padding: 8rem 4rem 4rem;
    background-color: #111;
    color: #fff;
}

.footer-top {
    margin-bottom: 8rem;
}

.footer-top h2 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
}

.contact-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s;
}

.contact-link:hover {
    border-color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #888;
}

.footer-details {
    display: flex;
    gap: 4rem;
}

/* UTILS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

/* CATEGORY PAGE STYLES */
.category-page-header {
    text-align: center;
    padding: 15vh 5% 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--text-color);
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

.breadcrumbs .current {
    color: var(--text-color);
    font-weight: 500;
}

.category-page-header h1 {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.category-page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.category-product-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 5rem;
}

.product-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

.premium-card {
    background: #F4F4F4;
    border-radius: 24px;
    padding: 3rem 2rem;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-card .premium-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--text-color);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    border-radius: 24px;
}

.premium-card:hover .premium-bg {
    transform: translateY(0);
}

.premium-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-card .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.premium-card .tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    transition: all 0.5s ease;
}

.premium-card:hover .tag {
    color: var(--bg-color);
    border-color: rgba(255,255,255,0.2);
}

.premium-card .image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-card img {
    width: 85%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.premium-card:hover img {
    transform: scale(1.15) rotate(2deg) translateY(-10px);
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4));
}

.premium-card .card-bottom {
    display: flex;
    flex-direction: column;
}

.premium-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    transition: color 0.5s ease;
}

.premium-card:hover h3 {
    color: var(--bg-color);
}

.premium-card .explore-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.premium-card .volume {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.5s ease;
}

.premium-card:hover .volume {
    color: rgba(255,255,255,0.6);
}

.premium-card .explore-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-card:hover .explore-btn {
    transform: scale(1);
    opacity: 1;
}

/* ==========================================
   PREMIUM PRODUCT DETAIL PAGE (APPLE STYLE)
   ========================================== */

/* Hero Section */
.premium-product-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 10rem;
    position: relative;
    overflow: hidden;
}

.hero-text-wrapper {
    text-align: center;
    z-index: 2;
    margin-bottom: -5vh; /* Overlaps image slightly */
}

.massive-title {
    font-size: 8rem;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 1;
    color: var(--text-color);
    margin: 0;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 1rem;
    letter-spacing: -0.5px;
}

.hero-visual {
    width: 100%;
    max-width: 900px;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.15));
}

@media (max-width: 900px) {
    .massive-title { font-size: 5rem; letter-spacing: -2px; }
    .subtitle { font-size: 1.2rem; }
    .hero-text-wrapper { margin-bottom: 2rem; }
}

/* Story Section */
.premium-product-story {
    background: #fff;
    border-radius: 40px 40px 0 0;
    padding: 8rem 5%;
    margin-top: 3rem;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.02);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 8rem;
    align-items: flex-start;
}

.story-left {
    flex: 1;
    position: sticky;
    top: 15vh;
}

.sticky-visual {
    background: #FAFAFA;
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-visual img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.story-right {
    flex: 1;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.story-block {
    margin-bottom: 6rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 4rem;
}

.block-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.story-block h2 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.story-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Minimal Table */
.minimal-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.minimal-specs-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.minimal-specs-table td {
    padding: 1.5rem 0;
    font-size: 1.1rem;
}

.minimal-specs-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.minimal-specs-table td:last-child {
    color: var(--text-color);
    font-weight: 600;
    text-align: right;
}

/* Massive CTA Button */
.massive-contact-btn {
    background: var(--text-color);
    color: #fff;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
}

.massive-contact-btn:hover {
    background: #000;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .story-container {
        flex-direction: column;
        gap: 4rem;
    }
    .story-left {
        position: relative;
        top: 0;
    }
    .story-right {
        padding-top: 0;
    }
}


/* PREMIUM FOOTER (MÜHÜR AGENCY STYLE) */
.premium-footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 8rem 4rem 2rem 4rem;
    font-family: 'Inter', sans-serif;
    margin-top: 0;
}

.premium-footer .footer-cta {
    margin-bottom: 10rem;
}

.premium-footer .footer-cta h2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 4rem;
    color: #fff;
}

.premium-footer .teklif-iste {
    display: inline-block;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.8rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-footer .teklif-iste:hover {
    color: #fff;
    border-bottom-color: #fff;
    padding-right: 1.5rem;
}

.premium-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.premium-footer .mhz {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.premium-footer .footer-info span {
    margin-left: 3rem;
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 5rem 2rem 2rem 2rem;
    }
    .premium-footer .footer-cta h2 {
        font-size: 3rem;
    }
    .premium-footer .footer-cta {
        margin-bottom: 6rem;
    }
    .premium-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .premium-footer .footer-info span {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

.showcase:last-of-type { padding-bottom: 4rem; }


/* DETAILED FOOTER ADDITIONS */
.premium-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 5rem;
}

.premium-footer .footer-col h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -1px;
}

.premium-footer .footer-col p {
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.premium-footer .footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-footer .footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.premium-footer .footer-col a:hover {
    color: #fff;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

.premium-footer .copyright {
    color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
    .premium-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .premium-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ULTRA PREMIUM FOOTER (V3) */
.premium-footer {
    background-color: #050505;
    color: #fff;
    padding: 5rem 4rem 2rem 4rem;
    font-family: 'Inter', sans-serif;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.premium-footer .footer-cta {
    display: none;
}

.premium-footer .footer-cta h2 {
    font-size: 5vw;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 4rem;
    color: #fff;
}

.premium-footer .teklif-iste {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #050505;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-footer .teklif-iste:hover {
    background: rgba(255,255,255,0.8);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

.premium-footer .footer-grid {
    display: grid;
    grid-template-columns: 3fr 4fr 3fr;
    gap: 5rem;
    margin-bottom: 8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 5rem;
    position: relative;
    z-index: 2;
}

.premium-footer .footer-brand .footer-logo {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.premium-footer .footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
}

.premium-footer .social-links {
    display: flex;
    gap: 2rem;
}

.premium-footer .social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}
.premium-footer .social-links a:hover { opacity: 0.6; }

.premium-footer .footer-links-container {
    display: flex;
    justify-content: space-around;
}

.premium-footer .footer-col h4 {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.premium-footer .footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.premium-footer .footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-footer .footer-nav a:hover::after {
    width: 100%;
}

.premium-footer .footer-newsletter h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: normal;
}

.premium-footer .footer-newsletter p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.premium-footer .newsletter-form-elite {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.premium-footer .newsletter-form-elite:focus-within {
    border-color: #fff;
}

.premium-footer .newsletter-form-elite input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
}

.premium-footer .newsletter-form-elite input::placeholder {
    color: rgba(255,255,255,0.3);
}

.premium-footer .newsletter-form-elite button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.premium-footer .newsletter-form-elite button:hover {
    transform: translateX(4px);
}

.premium-footer .footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 2;
}

.premium-footer .mhz-signature {
    margin-left: 2rem;
}
.premium-footer .mhz-signature strong {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.premium-footer .footer-massive-text {
    position: absolute;
    bottom: -4vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24vw;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

@media (max-width: 1200px) {
    .premium-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .premium-footer .footer-links-container {
        justify-content: flex-start;
        gap: 6rem;
    }
    .premium-footer .footer-cta h2 {
        font-size: 8vw;
    }
}
@media (max-width: 600px) {
    .premium-footer {
        padding: 6rem 2rem 2rem 2rem;
    }
    .premium-footer .footer-cta h2 {
        font-size: 12vw;
    }
    .premium-footer .footer-links-container {
        flex-direction: column;
        gap: 4rem;
    }
    .premium-footer .footer-bottom-bar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .premium-footer .mhz-signature {
        margin-left: 0;
        display: block;
        margin-top: 0.5rem;
    }
    .premium-footer .footer-massive-text {
        bottom: 5rem;
    }
}

/* WHATSAPP WIDGET */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-widget:hover {
    transform: scale(1.05) translateY(-5px);
}

.wa-tooltip {
    background: #fff;
    color: #111;
    padding: 0.8rem 1.2rem;
    border-radius: 15px 15px 0 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    white-space: nowrap;
}

.whatsapp-widget:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-icon {
    width: 120px;
    height: 165px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    .wa-icon {
        width: 50px;
        height: 50px;
    }
    .wa-tooltip {
        display: none;
    }
}


/* Product Detail Slider */
.sticky-visual.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
    width: 100%;
    aspect-ratio: 4 / 3; /* Force a large, nice rectangle */
    display: block; /* Override any flex that shrinks it */
    border-radius: 24px;
}
.sticky-visual.slider-wrapper .slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.sticky-visual.slider-wrapper .slider-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    max-width: none !important;
    object-fit: cover;
    object-position: center 15%;
    filter: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #111;
}
.slider-btn:hover {
    background: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

.catalog-btn {
    background: linear-gradient(135deg, #4a3319, #2a1d0d);
    color: #fff !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.catalog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 51, 25, 0.3);
}

.catalog-btn::after {
    display: none !important;
}

.open-modal-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    /* Hard reset for horizontal scroll bug */
    html, body {
        overflow-x: clip !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
    }

    /* Header Fix */
    .header {
        padding: 1rem 1.5rem !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box;
    }
    .header .logo {
        margin: 0 auto;
    }
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        z-index: 105;
        position: absolute;
        right: 1.5rem;
    }
    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-color);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 1.5rem !important;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        z-index: 100;
    }
    nav.active {
        right: 0;
    }
    nav a.nav-link, nav a:not(.catalog-btn) {
        font-size: 1.2rem !important;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    nav .catalog-btn, nav .open-modal-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(3px);
        z-index: 90;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Hero Fix */
    .hero.combined-style {
        padding: 15vh 1rem 0 1rem !important;
        gap: 1rem;
        min-height: auto;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box;
    }
    .hero-text-content {
        width: 100% !important;
    }
    .hero-text-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    .hero-text-content .description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-badges .badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Mascot & Cluster Fix */
    .hero-visual-cluster {
        height: 50vh !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        margin-top: 0;
        display: flex;
        justify-content: center;
    }
    .interactive-deck {
        transform: translateY(-20px) !important; /* Remove scaling to fix bounding box */
        width: 100% !important;
        max-width: 100vw !important;
        margin-top: 0;
    }
    .hero-mascot {
        width: 80vw !important;
        max-width: 320px !important;
    }
    
    /* Fix mega menu for mobile */
    .mega-menu-dropdown {
        display: none !important; /* Too big for mobile nav */
    }
    
    
    /* Fix hover image reveal broken icon */
    .hover-image-reveal {
        display: none !important;
    }
    
    /* Fix massive marquee logos */
    .brand-logo {
        margin: 0 1.5rem !important;
    }
    .brand-logo img {
        height: 30px !important;
        width: auto !important;
        max-width: 100px !important;
        object-fit: contain;
    }

    /* Footer Fix */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-links-container {
        flex-direction: column;
        gap: 2rem;
    }
}

.brand-logo {
    flex-shrink: 0 !important;
    margin: 0 2rem;
}


/* MOBILE SUB-MENU FOR CATEGORIES */
.mobile-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 110;
    transition: left 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    visibility: hidden;
}
.mobile-sub-menu.active {
    left: 0;
    visibility: visible;
}
.mobile-sub-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-sub-back {
    background: #f5f5f5;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    transition: background 0.2s;
}
.mobile-sub-back:active { background: #e0e0e0; }
.mobile-sub-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}
.mobile-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-bottom: 4rem;
}
.mobile-sub-item {
    background: #fafafa;
    border-radius: 16px;
    padding: 1.5rem 0.5rem;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: transform 0.2s, background 0.2s;
}
.mobile-sub-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.05));
}
.mobile-sub-item:active {
    transform: scale(0.96);
    background: #f0f0f0;
}
@media (max-width: 768px) {

    
/* HIDE MASCOT ON MOBILE COMPLETELY */
@media (max-width: 768px) {
    .hero-visual-cluster {
        display: none !important;
    }
    .hero-mascot {
        display: none !important;
    }
    .interactive-deck {
        display: none !important;
    }
}

/* ALIGNMENT FIX */
nav {
    display: flex;
    align-items: center !important;
}
nav > a, nav > div.nav-item-dropdown {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}
nav a.nav-link {
    display: flex !important;
    align-items: center !important;
}
