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

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
            padding: 20px;
        }

        .productos {
            margin-bottom: 40px;
        }

        h1 {
            font-size: 28px;
            font-weight: bold;
            color: #fff;
            background: #e74c3c;
            padding: 15px 0;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .producto {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: 2px solid #f1f1f1;
        }

        .producto:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            border-color: #e74c3c;
        }

        .producto img {
            width: 70%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .producto:hover img {
            transform: scale(1.05);
        }

        .producto h3 {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .precio {
            font-size: 22px;
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 12px;
        }

        .descripcion-titulo {
            font-size: 14px;
            font-weight: 600;
            color: #7f8c8d;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .descripcion-lista {
            margin-bottom: 20px;
        }

        .descripcion-lista p {
            font-size: 13px;
            color: #6c757d;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .producto button {
            background: #e74c3c;
            color: #fff;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
        }

        .producto button:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
        }

        /* Separador simple */
        hr {
            border: none;
            height: 2px;
            background: #e74c3c;
            margin: 40px auto;
            width: 60%;
            border-radius: 1px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            h1 {
                font-size: 24px;
            }
        }

        .boton-titulo{
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: default;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        }

        .tallas-detalle {
            margin-bottom: 20px;
            border-radius: 8px;
        }

        .tallas-detalle summary {
            font-weight: bold;
            color: #f8faf9;
            font-size: 14px;
            cursor: default;
            padding: 8px 10PX;
        }
        .tallas {
            width: 25%;
            padding: 8px;
            border-radius: 8px;
            border: 1px solid #e74c3c;
            background: #fff;
            color: #070707;
            margin-top: 8px;
            font-size: 14px;
            transition: border-color 0.2s;
        }

        .tallas:focus {
            border-color: #e74c3c;
            outline: none;
        }

        .tallas option[disabled] {
            color: #aaa;
        }
        
 
