@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&display=swap');

:root {
    --primary: #FFD700;
    /* Golden Yellow */
    --primary-rgb: 255, 215, 0;
    --bg-dark: #291E35;
    --bg-card: #352846;
    --border-color: rgba(255, 215, 0, 0.15);
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --accent-red: #FF3E3E;
    --transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    --gold-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: calc(70px + env(safe-area-inset-top));
    overscroll-behavior-y: none;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Typography Brutalism */
h1,
h2,
h3,
h4 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.05em;
}

/* Custom Scrollbar - Sharp */
::-webkit-scrollbar {
    width: 4px;
}

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

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

/* Navigation - Technical style */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: env(safe-area-inset-top) 4% 0;
    background: rgba(41, 30, 53, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Category Tabs in Nav */
.category-filters {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 500px;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-tab {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.category-tab:hover,
.category-tab.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.05);
}

.cart-trigger {
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    background: transparent;
    transition: var(--transition);
}

.cart-trigger:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Hero Section - Fragmented */
header {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 4% 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: clamp(2rem, 7.5vw, 6rem);
    line-height: 0.85;
    margin-bottom: 0.8rem;
}

.hero-content h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 450px;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--primary);
    padding-left: 1.2rem;
}

/* Buttons - Sharp */
.cta-group {
    display: flex;
    gap: 1rem;
}

/* Info Buttons Section */
.info-buttons-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.info-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 1rem 0.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    min-width: 100px;
    flex: 1;
}

.info-btn:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.info-btn span {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.info-btn i {
    font-size: 1.2rem;
    color: var(--primary);
}

.store-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.store-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.store-status.open {
    color: #00ff88;
}

.store-status.open::before {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: statusPulse 2s infinite;
}

.store-status.closed {
    color: #ff4444;
}

.store-status.closed::before {
    background: #ff4444;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn {
    padding: 1.2rem 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
}

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

/* Search Section */
.search-container {
    padding: 1rem 4%;
    max-width: 1200px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--primary);
    font-size: 1.2rem;
    pointer-events: none;
    transition: var(--transition);
}

.search-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    /* Left padding for icon */
    color: white;
    font-size: 1.2rem;
    outline: none;
    border-radius: 0;
    transition: var(--transition);
    text-transform: uppercase;
}

.search-input:focus {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1);
}

.search-input:focus+.search-badge {
    opacity: 0.5;
}

.search-badge {
    position: absolute;
    right: 20px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    pointer-events: none;
    transition: var(--transition);
    letter-spacing: 0.1em;
}

/* Mobile Search Optimization */
@media (max-width: 768px) {
    .search-container {
        padding: 0.5rem 4%;
        margin-top: 5px;
    }

    .search-input {
        font-size: 1rem;
        padding: 1.2rem 1.2rem 1.2rem 3rem;
    }

    .search-icon {
        font-size: 1rem;
        left: 15px;
    }

    .search-badge {
        display: none;
        /* Hide 'SEARCH_V2.0' on mobile to save space */
    }
}

/* Product Grid - Net Geometry */
.menu-preview {
    padding: 1.5rem 4%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.6rem;
}

.section-title {
    font-size: 2rem;
}

.section-title span {
    color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.menu-item {
    background: var(--bg-dark);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    /* Removido para ser dinâmico */
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.tech-spec {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.6rem;
    color: var(--border-color);
    font-weight: 700;
    text-transform: uppercase;
}

@media (hover: hover) {
    .menu-item:hover {
        background: var(--bg-card);
    }
}

.menu-img-wrapper {
    width: 100%;
    height: 180px;
    background: #352846;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--transition);
}

@media (hover: hover) {
    .menu-item:hover .menu-img {
        filter: grayscale(0);
        transform: scale(1.05);
    }
}

/* Em dispositivos touch, mostrar imagem colorida por padrão ou com toque */
@media (hover: none) {
    .menu-img {
        filter: grayscale(0.5);
    }
}

.item-category {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.menu-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.menu-info p {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    min-height: 2.8em;
}

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

.price {
    font-size: 1rem;
    font-weight: 900;
}

.price span {
    font-size: 0.8rem;
    color: var(--primary);
}

.add-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.add-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Edit Mode Styles */
.edit-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    /* Opposite to TECHNICAL_SPEC text */
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 0.7rem;
}

.edit-btn:hover,
.edit-btn.editing {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

[contenteditable="true"] {
    outline: 1px dashed var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
    min-width: 10px;
    cursor: text;
}

[contenteditable="true"]:focus {
    outline: 2px solid var(--primary);
    background: rgba(var(--primary-rgb), 0.2);
}

.editable-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
    pointer-events: none;
}

.menu-item.editing .editable-image-overlay {
    opacity: 1;
    pointer-events: all;
}

/* Social Proof - Brutalist */
.social-section {
    padding: 3rem 4%;
    background: #20172a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.testimonial-card i {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

/* Footer */
footer {
    padding: 4rem 4% 100px;
    /* Extra padding for bottom nav */
    border-top: 1px solid var(--border-color);
}

/* Premium Constant Bottom Bar */
.premium-bottom-bar {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom));
    /* Floating look for premium feel */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 500px;
    height: 75px;
    background: rgba(41, 30, 53, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    z-index: 5000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(223, 255, 0, 0.05);
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 800;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 1rem;
}

.bottom-bar-item i {
    font-size: 1.3rem;
}

.bottom-bar-item:hover,
.bottom-bar-item.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(223, 255, 0, 0.3);
}

.bottom-bar-item.active::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 20px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h5 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        height: auto;
        padding: calc(0.8rem + env(safe-area-inset-top)) 4% 0.8rem;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .nav-links {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .nav-links .nav-link {
        display: block;
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
        border: 1px solid var(--border-color);
        white-space: nowrap;
    }

    .cart-trigger {
        padding: 0.5rem 0.8rem;
    }

    .category-filters {
        display: none;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ticker-wrap {
        margin: 0.5rem 0;
        height: 2.2rem;
    }

    .ticker__item {
        font-size: 0.7rem;
        padding: 0 1rem;
    }
}

/* Modal Content Helpers */
.info-list,
.hours-grid,
.info-details {
    margin-top: 1.5rem;
}

.info-item,
.hour-row {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
}

.hour-row {
    justify-content: space-between;
}

.info-item i {
    color: var(--primary);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.hour-row span {
    color: var(--primary);
    font-weight: 900;
}

.info-details p {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-main);
}

.modal-content h3 {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Animations - Keyframes */
@keyframes scanLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 3rem;
    background: var(--primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    position: relative;
    z-index: 50;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.ticker {
    display: flex;
    white-space: nowrap;
    width: fit-content;
    animation: ticker 25s linear infinite;
    will-change: transform;
}

.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.scan-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
    animation: scanLine 3s linear infinite;
}

/* Overlays and Modals */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 30, 53, 0.8);
    backdrop-filter: blur(5px);
    z-index: 6000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 90%;
    max-width: 800px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    z-index: 7000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.modal-content {
    padding: 3rem;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
}

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

.modal-img-container {
    width: 100%;
    height: 400px;
    background: #20172a;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
}

.quantity-selector button {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
}

.quantity-selector span {
    font-weight: 800;
    min-width: 20px;
    text-align: center;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 900;
}

textarea {
    width: 100%;
    background: #291E35;
    border: 1px solid var(--border-color);
    color: white;
    padding: 1rem;
    margin-bottom: 2rem;
    min-height: 100px;
    resize: none;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.btn-block {
    width: 100%;
}

/* Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    z-index: 8000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.cart-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.close-sidebar {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.cart-item-info p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.cart-item-price {
    font-weight: 800;
    color: var(--primary);
    margin-top: 0.5rem;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--accent-red);
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.sidebar-footer {
    padding: 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    background: #20172a;
    border-top: 1px solid var(--border-color);
}

.total-container {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Form Styling */
.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    background: #1a1321;
    border: 1px solid var(--border-color);
    padding: 1rem;
    color: white;
    outline: none;
}

.input-group input:focus {
    border-color: var(--primary);
}

.checkout-content {
    max-width: 500px;
}

/* Mobile Adjustments for Modals */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-img-container {
        height: 250px;
    }

    .modal-info h2 {
        font-size: 1.8rem;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .premium-bottom-bar {
        width: 100%;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
        height: calc(75px + env(safe-area-inset-bottom));
    }

    header {
        min-height: auto;
        padding-top: 20px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .cta-group {
        flex-direction: column;
    }
}

/* --- Login Modal Specific --- */
#login-modal {
    background: transparent;
    border: none;
    box-shadow: none;
}

#login-modal .login-modal-container {
    width: 90vw;
    max-width: 450px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.login-modal-header {
    background: #4b2c6d;
    padding: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.login-modal-header h4 {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-transform: none;
    border: none;
    padding: 0;
}

.login-modal-header .back-btn {
    position: absolute;
    left: 15px;
    cursor: pointer;
    font-size: 1.1rem;
}

.login-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f0f0f0;
    color: #333;
    font-size: 0.95rem;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.btn-login-main {
    width: 100%;
    padding: 1rem;
    background: #4b2c6d;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin: 0.8rem 0;
}

.forgot-pass {
    color: #333;
    text-decoration: underline;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.login-separator {
    margin: 0.5rem 0 1.5rem;
    font-weight: 800;
    color: #666;
    font-size: 0.8rem;
}

.btn-google {
    width: 100%;
    padding: 0.8rem;
    background: white;
    color: #444;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.8rem;
}

.btn-google img {
    width: 20px;
    height: 20px;
}

.btn-create-acc {
    width: 100%;
    padding: 1rem;
    background: #4b2c6d;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}