﻿/* 
  IMPORTWEB v6.7 - PROFESSIONAL RECOVERY STABLE
*/

:root {
    --primary-red: #cc292e;
    --primary-blue: #0046be;
    --bg-light: #f4f6f8;
    --text-dark: #222;
    --border-color: #eee;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden !important;
    font-size: 14px;
    width: 100vw;
    /* Enforce exact width */
    max-width: 100vw;
    position: relative;
}

/* ANTI-GIANT IMAGE PROTECTION */
img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* === HEADER === */
header {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.top-bar,
.main-header,
.nav-bar {
    position: relative;
    z-index: 10001;
}

.top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 13px;
}

.brand-logos-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.brand-logos-header img {
    height: 16px;
    opacity: 0.7;
}

.main-header {
    height: 75px;
    display: flex;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-area img {
    height: 42px;
    width: auto;
}

/* FIX BANDERAS: Horizontal and clean */
.flags {
    display: flex !important;
    flex-direction: row !important;
    gap: 6px;
    border-left: 2px solid #eee;
    padding-left: 12px;
    align-items: center;
}

.flags img {
    width: 22px !important;
    height: 14px !important;
    object-fit: cover !important;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-area {
    flex: 1;
    margin: 0 30px;
    display: flex;
    background: #f1f3f4;
    border-radius: 8px;
    height: 42px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.search-area input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 15px;
    outline: none;
    font-size: 14px;
}

.btn-search {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 700;
    cursor: pointer;
}

.nav-bar {
    border-top: 1px solid #f0f0f0;
    background: white;
    padding: 10px 0;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav-bar a {
    text-decoration: none;
    color: #555;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.2s;
}

.nav-bar a:hover {
    color: var(--primary-blue);
}

.nav-novedades {
    color: #ff8a00 !important;
}

/* === APP === */
#app {
    padding-top: 165px;
    /* Bajamos el contenido para que no lo tape el header fijo en PC */
    padding-bottom: 60px;
    min-height: 80vh;
}

.home-layout {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 20px;
    align-items: start;
}

.sidebar-box {
    background: white;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.sidebar-title {
    padding: 0 20px;
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--primary-blue);
    font-size: 15px;
    text-transform: uppercase;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.sidebar-item:hover {
    background: #f0f4ff;
    color: var(--primary-blue);
}

/* === HERO === */
.hero-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: var(--shadow);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero-header img {
    height: 28px;
    margin-right: 12px;
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content {
    display: flex;
    align-items: center;
    /* Centrado vertical perfecto */
    justify-content: space-between;
    flex: 1;
}

.hero-cta {
    width: 280px;
    z-index: 10;
}

.hero-cta h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

.silla-img img {
    max-height: 320px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.trucks {
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trucks img {
    width: 100%;
    opacity: 0.8;
}

/* === PRODUCT GRID === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 25px;
    /* Restored Desktop Value */
}

.product-card {
    background: white;
    padding: 15px;
    /* Restored Desktop Value */
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.product-card img {
    height: 160px;
    /* Restored Desktop Value */
    width: 100%;
    object-fit: contain;
    margin-bottom: 12px;
}

.product-card h4 {
    font-size: 13px;
    height: 36px;
    overflow: hidden;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

.product-card .price {
    font-weight: 900;
    font-size: 19px;
    color: #111;
}

.card-buttons {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

/* BUTTON RECOVERY: Fix gigantic buttons in grid */
.btn-buy {
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    text-transform: uppercase;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-buy:hover {
    filter: brightness(1.1);
}

/* Main buy buttons (Hero or Product Detail) */
#app .btn-buy {
    height: 50px;
    font-size: 15px;
    background: var(--primary-blue);
}

#app .btn-now {
    background: #ff8a00 !important;
}

/* Small buttons in grid */
.product-card .btn-buy {
    height: 36px !important;
    font-size: 10px !important;
    padding: 0 5px;
}

.product-card .btn-now {
    background: #ff8a00 !important;
}

/* === PRODUCT DETAIL === */
.product-detail {
    display: grid;
    grid-template-columns: 80px 1fr 400px;
    gap: 30px;
    background: white;
    padding: 30px 30px 5px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    align-items: start;
    box-shadow: var(--shadow);
    margin-bottom: 0px;
}

.mobile-stack {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 25px;
    align-items: start;
}

.mobile-stack>div:first-child {
    background: white;
    border-radius: 12px;
}

.mobile-stack>div:last-child {
    position: sticky;
    top: 100px;
    /* Se queda fijo al hacer scroll */
}

.p-thumbs img {
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    object-fit: contain;
    padding: 4px;
    margin-bottom: 8px;
}

.p-thumbs img.active {
    border-color: var(--primary-blue);
}

.p-main-img {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #f9f9f9;
    border-radius: 15px;
    cursor: zoom-in;
}

.p-main-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* === CART === */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    /* Más corto */
    max-width: 90%;
    height: 100vh;
    background: white;
    z-index: 99999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

/* === LIGHTBOX GLOBAL === */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    touch-action: none;
}

.lightbox-overlay.active {
    display: flex;
}

.lb-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#lightboxImg {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    user-select: none;
    transition: opacity 0.2s ease-in-out;
    animation: zoomIn 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100001;
}

.lb-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lb-prev {
    left: 30px;
}

.lb-next {
    right: 30px;
}

.lb-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    font-weight: 200;
    z-index: 100002;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .lb-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lb-prev {
        left: 10px;
    }

    .lb-next {
        right: 10px;
    }
}

.fade-in {
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* === MOBILE === */
@media (max-width: 1200px) {
    .home-layout {
        grid-template-columns: 200px 1fr;
    }

    .right-sidebar {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {

    .top-bar,
    .flags,
    .desktop-only {
        display: none !important;
    }

    header {
        position: fixed;
        width: 100%;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .main-header {
        height: 55px;
        padding: 5px 0;
    }

    .logo-area {
        gap: 0px !important;
        margin-left: -12px !important;
    }

    .logo-area img {
        height: 26px !important;
    }

    .search-area {
        height: 38px;
        margin: 0 10px;
        border-radius: 6px;
        flex: 1;
        display: flex;
        align-items: center;
        background: #f4f4f4;
    }

    .search-area input {
        font-size: 11px;
        padding: 0 10px;
        border: none !important;
        background: transparent;
        flex: 1;
    }

    .btn-search-mobile {
        background: var(--primary-blue);
        color: white;
        border: none;
        height: 100%;
        width: 40px;
        border-radius: 0 6px 6px 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
    }


    .hero-title,
    .hero-cta {
        display: none !important;
    }

    .hero-header {
        display: none !important;
    }

    .silla-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .silla-img img {
        height: 180px !important;
        object-fit: contain !important;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    }

    .mobile-auth-buttons {
        display: flex !important;
    }

    .home-layout {
        grid-template-columns: 1fr;
    }

    .left-sidebar {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .p-main-img {
        height: 250px;
    }

    .mobile-stack {
        grid-template-columns: 1fr !important;
    }

    /* Ocultar botones amontonados en auth móvil si existen */
    #headerAuth .btn-search {
        padding: 0 8px;
        height: 32px !important;
        font-size: 9px;
    }
}

/* MODAL FIX */
#shippingModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#shippingModal.active {
    display: flex !important;
}


/* AUTH MODAL STYLES */
.auth-tab {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.auth-tab:hover {
    color: #555;
}

/* === CORRECCIONES MÓVILES DEFINITIVAS === */
@media (max-width: 900px) {

    /* 1. Categorías Estilo App */
    .nav-bar {
        display: block !important;
        padding: 8px 0 !important;
        background: #fff;
        border-bottom: 1px solid #eee;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .nav-bar ul {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        padding: 0 15px !important;
        margin: 0 !important;
        justify-content: flex-start !important;
    }

    .nav-bar a {
        display: inline-block !important;
        padding: 6px 14px !important;
        background: #f4f6f8 !important;
        color: #333 !important;
        border-radius: 20px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        border: 1px solid #ddd !important;
        text-transform: capitalize !important;
        text-decoration: none !important;
    }

    /* 2. Barra de Usuario Ordenada */
    .mobile-auth-buttons {
        display: flex !important;
        width: 100%;
        padding: 10px 15px;
        gap: 10px;
        background: #fff;
        border-bottom: 1px solid #eee;
        justify-content: center;
        margin-top: 0 !important;
    }

    .mobile-auth-buttons button {
        flex: 1;
        height: 36px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
        font-weight: 700 !important;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 3. Ajuste de Espacio Superior */
    #app {
        padding-top: 125px !important;
        /* Subimos el contenido mas cerca del menu en movil */
    }

    /* 4. Fix Hero */
    .hero-box {
        padding: 15px !important;
        background: radial-gradient(circle, #fafafa 0%, #fff 100%);
    }

    .hero-title,
    .hero-cta {
        display: none !important;
    }
}


/* === ESTILOS DEFINITIVOS AUTH MODAL (FLOTANTE) === */
#authModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.6) !important;
    z-index: 2147483647 !important;
    /* Tope absoluto */
    display: none;
    /* JS lo cambia a flex */
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(4px);
}

#authModal.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#authModal .modal-content {
    background: #fff !important;
    width: 90% !important;
    max-width: 400px !important;
    padding: 30px !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === CORRECCIÓN VISUAL DE BOTONES DEL MODAL === */

/* 1. Botón de Cerrar (X) */
.close-modal {
    position: absolute !important;
    top: 15px !important;
    right: 20px !important;
    font-size: 28px !important;
    font-weight: bold !important;
    color: #555 !important;
    cursor: pointer !important;
    line-height: 1 !important;
    z-index: 10 !important;
    background: none !important;
    border: none !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.close-modal:hover {
    color: #000 !important;
}

/* 2. Botón de Acción Principal (INGRESAR / CREAR) */
#authSubmitBtn {
    background: var(--primary-blue) !important;
    color: white !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    padding: 12px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 6px rgba(52, 131, 250, 0.3) !important;
    opacity: 1 !important;
    /* Estaba saliendo transparente */
    margin-top: 10px !important;
    width: 100% !important;
    text-transform: uppercase !important;
}

#authSubmitBtn:hover {
    background: #2968c8 !important;
    /* Un poco más oscuro al pasar el mouse */
}

/* === NEW THIN BANNER & FIXES === */
.thin-banner {
    width: 100%;
    background: var(--primary-blue) !important;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 5px;
    /* Stick products more */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tb-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.tb-logo {
    height: 38px;
    /* Mas grande aun */
    width: auto;
    filter: none;
    background: transparent !important;
    /* Quitar fondo blanco si lo tiene */
}

.tb-arrow {
    background: white;
    color: var(--primary-blue);
    /* Changed text color to match theme */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.mobile-only {
    display: none !important;
}

/* === SPECIAL BADGES === */
.badge-imperdible {
    background: #ff0000;
    color: white;
    font-weight: 900;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
    display: inline-block;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.3);
}

.badge-limited {
    background: #ff8a00;
    color: white;
    font-weight: 900;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
}

.badge-top {
    background: #0046be;
    color: white;
    font-weight: 900;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* FIX INVISIBLE BUTTONS IN MODALS & SIDEBAR */
#shippingForm button,
#shippingForm .btn-buy,
.cart-footer button,
.cart-footer .btn-buy {
    background-color: #0046be !important;
    /* Hardcoded Blue */
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
    font-weight: 900 !important;
    border: none !important;
    text-transform: uppercase;
    height: 50px !important;
    /* Enforce clickable height */
    visibility: visible !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#shippingForm button:hover,
.cart-footer button:hover {
    background-color: #003399 !important;
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }

    /* Mobile Banner Fix: COMPACT & FIXED UPWARDS */
    .thin-banner {
        border-radius: 0;
        margin: -15px -20px 10px -20px;
        /* Pull UP and Sideways */
        width: calc(100% + 40px);
        padding: 12px 15px;
    }

    .tb-logo {
        height: 22px;
    }

    .tb-content {
        font-size: 11px;
    }

    /* Compact Grid Mobile Override: FULL WIDTH */
    .product-grid {
        margin-top: 5px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: calc(100% + 20px) !important;
        /* Salirse para ocupar margenes */
        margin-left: -10px !important;
        padding: 0 5px;
    }

    .product-card {
        padding: 10px !important;
        border-radius: 8px !important;
    }

    .product-card img {
        height: 155px !important;
        /* Un poco mas grandes */
    }

    /* Mobile Form Stability */
    .shipping-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .zip-grid {
        grid-template-columns: 1fr !important;
    }

    .modal-content {
        width: 95% !important;
        margin: 10px auto !important;
        padding: 20px !important;
    }

    /* Fixed Header Brands Spacing */
    .brand-logos-header {
        gap: 8px;
    }

    .brand-logos-header span,
    .brand-logos-header svg {
        flex-shrink: 0;
    }
}

.shipping-grid-master {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.zip-grid {
    grid-template-columns: 1fr 0.6fr;
}

/* === ADMIN PANEL STYLES === */
.header-top {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background: white;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-primary:hover {
    background: #003399;
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.modal {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.flex-1 {
    flex: 1;
}