/* =============================================
   SANTORINI RESTOBAR - MENU STYLES
   Paleta: #262624, #fbca45, #feffcf, #1ed760
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --color-dark: #262624;
    --color-dark-light: #1a1a18;
    --color-dark-lighter: #3a3a38;
    --color-dark-card: #2d2d2a;
    --color-gold: #fbca45;
    --color-gold-dark: #d4a93a;
    --color-gold-light: #ffd966;
    --color-cream: #feffcf;
    --color-green: #1ed760;
    --color-green-dark: #18b84d;
    --color-white: #ffffff;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Theme colors - Default Licores */
    --theme-primary: var(--color-gold);
    --theme-primary-dark: var(--color-gold-dark);
    --theme-glow: rgba(251, 202, 69, 0.3);
    --theme-glow-soft: rgba(251, 202, 69, 0.1);
}

/* Comidas Theme */
body[data-theme="comidas"] {
    --theme-primary: var(--color-green);
    --theme-primary-dark: var(--color-green-dark);
    --theme-glow: rgba(30, 215, 96, 0.3);
    --theme-glow-soft: rgba(30, 215, 96, 0.1);
}

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

/* =============================================
   CUSTOM SCROLLBAR
   ============================================= */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #fbca45 #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-dark);
    color: var(--color-cream);
    min-height: 100vh;
    overflow-x: hidden;
}

/* =============================================
   BACKGROUND EFFECTS
   ============================================= */

.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 0% 0%, var(--theme-glow-soft) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, var(--theme-glow-soft) 0%, transparent 50%);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fbca45' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* =============================================
   HEADER
   ============================================= */

.menu-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(38, 38, 36, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 202, 69, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.back-button,
.switch-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.back-button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-cream);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--theme-primary);
    color: var(--theme-primary);
}

.switch-menu {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    color: var(--color-dark);
    border: none;
}

.switch-menu:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px var(--theme-glow);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 45px;
    width: auto;
}

.header-text {
    display: none;
}

@media (min-width: 600px) {
    .header-text {
        display: block;
    }
}

.header-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--theme-primary);
    letter-spacing: 2px;
    line-height: 1.1;
}

.header-subtitle {
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--color-cream);
    letter-spacing: 5px;
    opacity: 0.7;
}

/* Mobile header adjustments */
@media (max-width: 500px) {
    .back-button span,
    .switch-menu span {
        display: none;
    }

    .back-button,
    .switch-menu {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .header-logo {
        height: 35px;
    }
}

/* =============================================
   HERO SECTION
   ============================================= */

.menu-hero {
    position: relative;
    z-index: 10;
    padding: 120px 20px 40px;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    color: var(--color-dark);
    font-size: 2rem;
    box-shadow: 0 10px 40px var(--theme-glow);
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: var(--color-cream);
    opacity: 0.7;
}

.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.deco-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--theme-primary), transparent);
}

.deco-diamond {
    width: 10px;
    height: 10px;
    background: var(--theme-primary);
    transform: rotate(45deg);
}

/* =============================================
   CATEGORY NAVIGATION
   ============================================= */

.category-nav {
    position: sticky;
    top: 69px;
    z-index: 100;
    background: rgba(38, 38, 36, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
}

.nav-scroll::-webkit-scrollbar {
    display: none;
}

.nav-item {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-cream);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--theme-primary);
    color: var(--theme-primary);
}

.nav-item.active {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    color: var(--color-dark);
    border-color: transparent;
    box-shadow: 0 5px 20px var(--theme-glow);
}

/* =============================================
   MENU CONTENT
   ============================================= */

.menu-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px 80px;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* =============================================
   SUBCATEGORY SECTIONS
   ============================================= */

.subcategory-section {
    margin-bottom: 60px;
    scroll-margin-top: 150px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.section-decoration {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
}

.section-decoration.right {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--theme-primary);
    text-align: center;
    letter-spacing: 2px;
}

.section-description {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-cream);
    opacity: 0.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   PRODUCTS GRID
   ============================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   PRODUCT CARDS
   ============================================= */

.product-card {
    position: relative;
    background: linear-gradient(145deg, var(--color-dark-card) 0%, var(--color-dark) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--theme-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-card.featured {
    border-color: var(--theme-primary);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    color: var(--color-dark);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark-lighter) 0%, var(--color-dark) 100%);
    color: var(--theme-primary);
    font-size: 3rem;
    opacity: 0.3;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--color-dark-card) 0%, transparent 100%);
    pointer-events: none;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-description-wrapper {
    margin-bottom: 15px;
    position: relative;
}

.product-description-wrapper.truncated .product-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description-wrapper.expanded .product-description {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.product-description {
    font-size: 0.8rem;
    color: var(--color-cream);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

.ver-mas-btn {
    background: none;
    border: none;
    color: var(--theme-primary);
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.ver-mas-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--theme-primary);
}

.product-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, var(--theme-glow-soft) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.product-card:hover .product-glow {
    opacity: 1;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--color-cream);
    opacity: 0.5;
    font-style: italic;
}

/* =============================================
   COMING SOON SECTION
   ============================================= */

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 40px 20px;
}

.coming-soon-content {
    text-align: center;
    max-width: 500px;
}

.coming-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    color: var(--color-dark);
    font-size: 2.5rem;
    box-shadow: 0 15px 50px var(--theme-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coming-soon h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--theme-primary);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.coming-soon p {
    color: var(--color-cream);
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.6;
}

.coming-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.coming-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(251, 202, 69, 0.4);
}

/* =============================================
   FOOTER
   ============================================= */

.menu-footer {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 20px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--theme-primary);
    margin-bottom: 8px;
}

.footer-brand p {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-cream);
    opacity: 0.6;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.contact-btn.location {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    color: var(--color-dark);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-cream);
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-info i {
    color: var(--theme-primary);
}

/* =============================================
   SCROLL TO TOP
   ============================================= */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    color: var(--color-dark);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    box-shadow: 0 5px 20px var(--theme-glow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--theme-glow);
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */

@media (max-width: 600px) {
    .menu-hero {
        padding: 100px 15px 30px;
    }

    .hero-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .hero-decoration {
        gap: 10px;
    }

    .deco-line {
        width: 50px;
    }

    .category-nav {
        top: 59px;
        padding: 10px 0;
    }

    .nav-item {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .menu-content {
        padding: 30px 15px 60px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .subcategory-section {
        margin-bottom: 50px;
    }

    .product-image {
        aspect-ratio: 1 / 1;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .product-description-wrapper.truncated .product-description {
        -webkit-line-clamp: 1;
    }

    .price-value {
        font-size: 1.1rem;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 15px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 380px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.2rem;
    }
}

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


/* Touch device optimizations */
@media (hover: none) {
    .product-card:hover {
        transform: none;
    }

    .product-card:active {
        transform: scale(0.98);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================
   BOTON MESERA
   ============================================= */

.contact-btn.mesera {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark);
    border: none;
    cursor: pointer;
}

.contact-btn.mesera:hover {
    box-shadow: 0 10px 30px rgba(251, 202, 69, 0.4);
}

/* =============================================
   MODAL STYLES
   ============================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.modal-container {
    background: linear-gradient(145deg, #2a2a28 0%, #1a1a18 100%);
    border: 1px solid rgba(251, 202, 69, 0.2);
    border-radius: 24px;
    padding: 35px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(251, 202, 69, 0.2);
    color: var(--color-gold);
}

.modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(251, 202, 69, 0.3);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal-title.success {
    color: var(--color-green);
    font-size: 1.6rem;
}

.modal-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 25px;
}

.modal-input-group {
    position: relative;
    margin-bottom: 20px;
}

.modal-input {
    width: 100%;
    padding: 18px 20px;
    padding-left: 75px;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 5px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(251, 202, 69, 0.3);
    border-radius: 16px;
    color: var(--color-gold);
    outline: none;
    transition: all 0.3s ease;
}

.modal-input::placeholder {
    color: rgba(251, 202, 69, 0.3);
    font-size: 1.5rem;
}

.modal-input:focus {
    border-color: var(--color-gold);
    background: rgba(251, 202, 69, 0.05);
    box-shadow: 0 0 20px rgba(251, 202, 69, 0.2);
}

.input-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.modal-btn {
    width: 100%;
    padding: 16px 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.modal-btn.success {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark);
}

.modal-btn.success:hover {
    box-shadow: 0 10px 30px rgba(251, 202, 69, 0.4);
}

/* =============================================
   SUCCESS ANIMATION
   ============================================= */

.success-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.success-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-green) 0%, #18a050 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 10px 40px rgba(30, 215, 96, 0.4);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
