:root {
    /* Colores primarios */
    --primary-color: #879643;

  /* Colores primarios */
  /* --primary-color: #879643;
  --secondary-color: #2ecc71;
  --accent-color: #e74c3c; */
  
  /* Escala de grises */
  /* --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000; */
  
  /* Estados y feedback */
  /* --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --info-color: #17a2b8; */
  
  /* Fondos */
  /* --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #212529; */
  
  /* Textos */
  /* --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-light: #ffffff; */
  
  /* Bordes */
  /* --border-color: #dee2e6;
  --border-light: #e9ecef; */
  
  /* Sombras */
  /* --shadow: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.3); */
}

/* .elemento {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 4px var(--shadow);
} */

/* Configuración completa de Helvetica Neue */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueBlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueHeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeued.jght.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeued.jghtItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueThin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueThintalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeuedIltral.ight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeuedIltral.ightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-weight: 400; /* Regular */
            overflow: hidden;
            color: #333;
        }
        
        .vista {
            width: 100vw;
            height: 100vh;
            position: relative;
            /* overflow: hidden; */
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
        
        section {
            position: absolute;
            top: 5%;
            left: 5%;
            width: 90%;
            height: 90%;
            display: none;
            padding: 0;
            border-radius: 15px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
            transition: all 0.5s ease;
            flex-direction: column;
            /* overflow: hidden; */
        }
        
        .uno, .dos, .tres, .cuatro, .cinco, .seis {
            /* Fondo transparente para todas las secciones de edición */
        }
        
        .navegacion {
            position: fixed;
            top: 10px;
            /* bottom: 20px; */
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 1000;
            flex-wrap: wrap;
            padding: 0 10px;
        }
        
        .navegacion button {
            padding: 12px 20px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
        }
        
        .navegacion button:hover {
            background-color: white;
            transform: translateY(-3px);
            /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); */
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            color: #222;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #222;
        }
        
        p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .contenido-seccion {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        
        .botones-seccion {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .botones-seccion button {
            padding: 12px 25px;
            background-color: rgba(255, 255, 255, 0.8);
            color: #333;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
        }
        
        .botones-seccion button:hover {
            background-color: white;
            transform: translateY(-3px);
            /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); */
        }
        
        
        .ocultar {
            opacity: 0;
            transform: scale(0.9);
        }
        
        .indicador {
            position: fixed;
            top: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            z-index: 1000;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .contenedor-cards {
            display: flex;
            width: 100%;
            height: 100%;
            padding: 10px;
            gap: 10px;
        }
        
        .card-izquierda {
            flex: 0 0 30%;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            /* overflow: hidden; */
            overflow-y: auto;
            border-radius: 10px;
        }
        
        .card-derecha {
            flex: 1;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            /* overflow: hidden; */
            overflow-y: auto;
            border-radius: 10px;
        }
        
        .card-titulo {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #000000;
            border-bottom: 2px solid #000000;
            padding-bottom: 10px;
        }
        
        .card-contenido {
            text-align: left;
            line-height: 1.6;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .color-selector {
            position: relative;
            width: 100%;
            max-width: 280px;
            margin-bottom: 20px;
        }
        
        .selector-header {
            background: #000;
            color: #fff;
            border-radius: 25px;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .color-grid {
            display: none;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            margin-top: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
            position: absolute;
            width: 100%;
            z-index: 10;
        }
        
        .color-grid.active {
            display: grid;
        }
        
        .color-option {
            width: 35px;
            height: 35px;
            border-radius: 5px;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .color-option:hover {
            border: 2px solid #000;
        }
        
        .color-option.selected {
            border: 2px solid #000;
        }
        
        .herramientas {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        
        .textocolor {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .miboton {
            padding: 10px 15px;
            /* background-color: #adadadff; */
            box-shadow: 1 4px 8px rgba(0,0,0,0.12); /* sombra suave */
            /* color: white; */
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            /* font-weight: bold; */
        }
        
        .miboton:hover {
            /* background-color: #2980b9; */
            background-color: #000000;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-cargar-logo {
            padding: 10px 15px;
            /* background-color: #9b59b6; */
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            /* font-weight: bold; */
        }
        
        .btn-cargar-logo:hover {
            /* background-color: #8e44ad; */
            background-color: #000000;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-limpiar {
            padding: 10px 15px;
            /* background-color: #e74c3c; */
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            /* font-weight: bold; */
        }
        
        .btn-limpiar:hover {
            /* background-color: #c0392b; */
            background-color: #000000;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-cotiza {
            padding: 12px 20px;
            background-color: #000000;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .btn-cotiza:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .file-input-logo {
            display: none;
        }
        
        .lienzo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            overflow: auto;
            padding: 10px;
        }
        
        .lienzo {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }
        
        .canvas-editor {
            max-width: 90%;
            max-height: 90%;
            /* border: 1px solid #ddd; */
            border-radius: 5px;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
        }
        
        
        .section {
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
        }

        .section h3 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            cursor: pointer;
            margin: 0;
        }

        .options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 10px;
        }

        .optionsmini {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 10px;
        }

        .option {
            text-align: center;
            cursor: pointer;
            border-radius: 10px;
            padding: 8px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .option img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            margin-bottom: 5px;
        }

        .option span {
            display: block;
            font-size: 14px;
        }

        .option.selected {
            border: 2px solid var(--primary-color);
            background: #eaf2ff;
        }

        .dropdown-icon {
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .collapsed .dropdown-icon {
            transform: rotate(-90deg);
        }

        .collapsed .options {
            display: none;
        }

        @media (max-width: 1024px) {
            .contenedor-cards {
                flex-direction: column;
            }
            
            .card-izquierda, .card-derecha {
                flex: 1;
                width: 100%;
            }
            
            .card-izquierda {
                flex: 0 0 auto;
                max-height: 40%;
            }
            
            .card-derecha {
                flex: 1;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 0;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            p {
                font-size: 1rem;
            }
            
            .navegacion {
                bottom: 10px;
            }
            
            .navegacion button {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .botones-seccion button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .contenedor-cards {
                flex-direction: column;
                padding: 10px;
                gap: 10px;
            }
            
            .card-derecha, .card-izquierda {
                flex: 1;
                width: 100%;
            }
            
            .contenido-seccion {
                padding: 20px;
            }
            
            .opciones-prendas {
                gap: 50px;
            }
            
            .prenda img {
                height: 150px;
            }
        }
        
        @media (max-width: 480px) {
            section {
                top: 2.5%;
                left: 2.5%;
                width: 95%;
                height: 95%;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            p {
                font-size: 0.9rem;
            }
            
            .navegacion {
                gap: 5px;
            }
            
            .navegacion button {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
            
            .botones-seccion {
                gap: 10px;
            }
            
            .botones-seccion button {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
            
            .card-izquierda, .card-derecha {
                padding: 15px;
            }
            
            .contenedor-cards {
                padding: 8px;
                gap: 8px;
            }
            
            .opciones-prendas {
                gap: 20px;
            }
            
            .prenda img {
                height: 120px;
            }
            
            .contenedor-prenda {
                height: 280px;
            }
        }


/* el otro bot */

/* Estilos del chatbot */
        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .chatbot-toggle {
            width: 60px;
            height: 60px;
            /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
            background-color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .chatbot-toggle:hover {
            transform: scale(1.1);
        }
        
        .chatbot-toggle img {
            /* width: 60px;
            height: 60px; */
            filter: brightness(0) invert(1);
        }
        
        .chatbot-messages {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 300px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 400px;
            overflow-y: auto;
            padding: 10px;
        }
        
        .message {
            padding: 12px 16px;
            border-radius: 18px;
            max-width: 80%;
            animation: fadeIn 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            word-wrap: break-word;
        }
        
        .bot-message {
            background-color: var(--primary-color);
            color: white;
            align-self: flex-start;
            border-bottom-left-radius: 5px;
        }
        
        .user-message {
            background-color: #e9ecef;
            color: #333;
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }
        
        .options-container {
            display: flex;
            flex-wrap: wrap; 
            /* flex-wrap: nowrap; */
            gap: 8px;
            margin-top: 8px;
        }
        
        .option-btn {
            background-color: white;
            color: #000000;
            border: none;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background-color 0.2s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .option-btn:hover {
            background-color: #f0f4ff;
        }
        
        .close-chat {
            position: absolute;
            top: 5px;
            right: 5px;
            /* background: none; */
            background-color: rgba(0, 0, 0, 0.05);
            border: none;
            color: #000000;
            font-size: 1.2rem;
            cursor: pointer;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-chat:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hidden {
            display: none;
        }

        .boo {
            background-color: var(--primary-color) !important; 
            color: #fff !important;
        }

        .a {
            background-color: #f4f4f4ff;
        }

        .contorno {
            background-color: #f4f4f4ff;
        }

        /* test */



/* SOLO PARA PANTALLAS PEQUEÑAS < 400px */
@media (max-width: 500px) {

    /* El contenedor se mantiene sin scroll */
    .contenedor-cards {
        display: flex;
        flex-direction: column;
        overflow: hidden; /* muy importante */
    }

    /* Card izquierda con scroll interno */
    .card-izquierda {
        max-height: 75vh;     /* alto visible */
        overflow-y: auto;     /* scroll SOLO en esta sección */
        padding-right: 10px;
    }

    /* La derecha NO se mueve */
    .card-derecha {
        /* overflow: hidden !important; */
        overflow-y: auto; 
        height: auto;
    }
}


/* ====== RESPONSIVE 500px ====== */
@media (max-width: 500px) {
    .opciones-prendas {
        gap: 15px;
    }

    .contenedor-prenda {
            height: 340px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 25px;
            box-sizing: border-box;
            padding: 20px;
        }

    .navegacion {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        }

    .prenda img {
        width: 140px;
    }

    .titulo {
        font-size: 22px;
    }
}

/* ====== RESPONSIVE 400px ====== */
@media (max-width: 400px) {
    .opciones-prendas {
        flex-direction: column;
        gap: 20px;
    }

    .contenedor-prenda {
            height: 340px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 25px;
            box-sizing: border-box;
            padding: 20px;
        }

     .navegacion {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        }

    .prenda img {
        width: 130px;
    }

    .titulo {
        font-size: 20px;
    }
}

/* ====== RESPONSIVE 300px ====== */
@media (max-width: 300px) {


    .contenedor-prenda {
            height: 340px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 25px;
            box-sizing: border-box;
            padding: 20px;
        }



    .opciones-prendas {
        flex-direction: column;
        gap: 15px;
    }

     .navegacion {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        }

    .prenda

    .prenda img {
        width: 110px;
    }

    .titulo {
        font-size: 18px;
    }
}


/* */

/* Estilos para el menú móvil */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            z-index: 1000;
            padding: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .hamburger {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px 10px;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            background-color: #000000;
            width: 100%;
            position: absolute;
            top: 100%;
            left: 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #444;
            text-align: center;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a:hover {
            background-color: #444;
        }

        /* Mostrar solo en pantallas menores a 500px */
        @media (max-width: 500px) {
            .mobile-nav {
                display: block;
            }
        }

        /* Ocultar en pantallas mayores a 500px */
        @media (min-width: 501px) {
            .mobile-nav {
                display: none;
            }
        }

/* FIN DEL CSS */
/* seccion 1 no responsive */

.mostrar {
    display: flex !important;
    opacity: 1;
    transform: scale(1);
    }

/* .mostrar {
    display: flex !important;
    opacity: 1;
    transform: scale(1);
    }

.contenedor-prenda {
            width: calc(100% - 40px);
            height: 340px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            padding: 20px;
        }
        
        .opciones-prendas {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 150px;
            flex-wrap: wrap;
        }
        
        .prenda img {
            height: 200px;
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.3s ease;
            padding-bottom: 60px;
        }
        
        .prenda img:hover {
            transform: scale(1.05);
            opacity: 0.8;
        }
        
        .titulo {
            color: #000000;
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .flecha {
            font-size: 16px;
        } */

        /* FIN DEL CSS */


.contenido-seccion {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            box-sizing: border-box;
        }

        .contenedor-prenda {
            width: calc(100% - 40px);
            max-width: 800px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            padding: 20px;
        }
        
        .opciones-prendas {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            /* gap: 150px; */
            flex-wrap: wrap;
            width: 100%;
        }
        
        .prenda {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .prenda img {
            height: 200px;
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        
        .prenda img:hover {
            transform: scale(1.05);
            opacity: 0.8;
        }
        
        .prenda h3 {
            margin-top: 10px;
            font-size: 18px;
            color: #333;
        }
        
        .titulo {
            color: #000000;
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 5px;
            text-align: center;
        }
        
        /* .flecha {
            font-size: 16px;
        } */
        
        .section {
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
        }

        /* Responsividad */
        @media (max-width: 768px) {
            .opciones-prendas {
                gap: 80px;
            }
            
            .prenda img {
                height: 160px;
            }
        }

        @media (max-width: 500px) {
            .opciones-prendas {
                flex-direction: column;
                gap: 40px;
            }

            /* .flecha {
            display: none;
        } */
            
            .prenda img {
                height: 140px;
            }
            
            .titulo {
                font-size: 20px;
                margin-bottom: 30px;
            }
            
            .contenedor-prenda {
                padding: 15px;
                border: 0px solid #fff;
            }
        }

        @media (max-width: 400px) {
            .prenda img {
                height: 120px;
            }

            /* .flecha {
            display: none;
        } */
            
            .titulo {
                font-size: 18px;
                margin-bottom: 25px;
            }
            
            .contenedor-prenda {
                padding: 10px;
                border: 0px solid #fff;
            }
        }

        @media (max-width: 300px) {
            .prenda img {
                height: 100px;
            }

            .flecha {
            display: none;
        }
            
            .titulo {
                font-size: 16px;
                margin-bottom: 20px;
            }
            
            .contenedor-prenda {
                padding: 8px;
                border: 0px solid #fff;
            }
        }

        /* boton */

  .number-input {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px; /* Espacio entre el input y el precio */
}

.number-input button {
    background: #f8f8f8;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.number-input button:hover {
    background: #e8e8e8;
}

.number-input button:active {
    background: #ddd;
}

.number-input input {
    width: 50px;
    height: 20px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    background: white;
    color: #333;
    -moz-appearance: textfield;
}

/* Ocultar flechas en navegadores WebKit */
.number-input input::-webkit-outer-spin-button,
.number-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.precio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
}

.precio strong {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.precio span {
    font-size: 12px;
    color: #666;
}

/* Estilos para el contenedor principal */
center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px; /* Espacio entre los elementos */
}

.fixmg {
    margin-top: -15px;
}

.fixmg2 {
    margin-top: -18px;
}

.fixmg3 {
    margin-top: -10px;
}

/* ajustes picker color */

.option.textocolor {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.miboton {
    padding: 8px 16px;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

/* .miboton:hover {
    background-color: #0056b3;
} */

/* Estilo para el input de color circular como iPhone */
.color-picker {
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    background: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.color-picker::-webkit-color-swatch {
    border: none;
    border-radius: 50%;
    padding: 0;
}

.color-picker::-webkit-color-swatch-wrapper {
    padding: 0;
    border-radius: 50%;
}

.color-picker::-moz-color-swatch {
    border: none;
    border-radius: 50%;
}

/* Responsive - asegurar que estén en la misma línea 768 */
@media (max-width: 768px) {
    .option.textocolor {
        flex-wrap: nowrap; /* Forzar que estén en la misma línea */
        justify-content: flex-start;
    }
    
    .miboton {
        flex-shrink: 0; /* Evitar que el botón se reduzca demasiado */
        white-space: nowrap; /* Evitar que el texto se divida en varias líneas */
    }
    
    .color-picker {
        flex-shrink: 0; /* Mantener tamaño del círculo de color */
    }
}

.textpz {
    font-size: 14px;
    /* font-weight: 500; */
}

/* */

.botecito {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 20px;
    /* left: 20px; */
    bottom: 80px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
}

.botecito.hover {
    opacity: 1;
    transform: scale(1.1);
}


/* nuevo menu navbar */

 .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0 20px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px; /* 80 */
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 30px;
        }

        .nav-link {
            text-decoration: none;
            color: #333333;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #000000;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #000000;
            transition: width 0.3s ease;
        }

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

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333333;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Estilos para dispositivos móviles 768 */
        @media screen and (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background-color: #ffffff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 15px 0;
            }

            .hamburger {
                display: block;
            }

            /* Animación del menú hamburguesa */
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        .select-input{
  width: auto;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  /* outline: none; */
}
.select-input:focus{
border-color: #000;
}

/* test */

/* ===========================
   SECCIÓN 1 – Selector prendas
   =========================== */

#seccion1.uno {
  width: 100%;
  padding: 32px 14px;
  display: block;
}

#seccion1 .contenido-seccion {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#seccion1 .contenedor-prenda {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

#seccion1 .titulo {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#seccion1 .titulo span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #000, transparent);
  opacity: .12;
}

/* GRID responsive */
#seccion1 .opciones-prendas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Cards */
#seccion1 .prenda {
  border: 1px solid #ededed;
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

#seccion1 .prenda:hover {
  transform: translateY(-2px);
  border-color: #dcdcdc;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
}

/* Link ocupa toda la card */
#seccion1 .prenda a {
  display: grid;
  place-items: center;
  text-decoration: none;
  outline: none;
}

/* Contenedor imagen */
#seccion1 .prenda img {
  width: min(170px, 80%);
  height: auto;
  display: block;
  margin: 6px auto 8px;
  transform: translateZ(0);
  transition: transform .18s ease;
}

#seccion1 .prenda:hover img {
  transform: scale(1.03);
}

/* Texto */
#seccion1 .prenda h3 {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .2px;
  color: #111;
}

/* Detalle decorativo */
#seccion1 .prenda::after {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at center, rgba(0,0,0,.08), transparent 60%);
  transform: rotate(15deg);
  pointer-events: none;
  opacity: .6;
}

/* Estado activo (opcional: si quieres marcar selección) */
#seccion1 .prenda.is-active {
  border-color: #000;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

/* Breakpoints */
@media (min-width: 640px) {
  #seccion1 .opciones-prendas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  #seccion1 .prenda h3 { font-size: 15px; }
}

@media (min-width: 1024px) {
  #seccion1.uno { padding: 44px 18px; }
  #seccion1 .contenedor-prenda { padding: 28px; }
  #seccion1 .opciones-prendas {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }
}

/* Accesibilidad: foco visible */
#seccion1 .prenda a:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
  border-radius: 14px;
}
