        /* --- Tarjeta de Producto Individual --- */
	.product-grid {
	    display: grid;
	    grid-template-columns: repeat(6, 1fr); /* 6 columns by default for larger screens */
	    gap: 20px; /* Adjust gap as needed */
	    padding: 20px 0; /* Adjust padding as needed */
	}

        .product-card {
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        .product-link {
            text-decoration: none;
            color: inherit;
        }

        .product-image-container {
            width: 100%;
            padding-top: 100%; /* Relación de aspecto 1:1 */
            position: relative;
            background-color: #f8f8f8;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .product-image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
        }

        .product-info {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

	/*
        .product-title {
            font-size: 1.0em;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            text-align: center;
            min-height: 40px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
	    word-break: break-word;
        }
	*/

	.product-title {
	    font-size: 1em;
	    font-weight: 600;
	    color: #333;
	    text-align: center;
	    line-height: 1.2em;                  /* Altura de línea */
	    height: calc(1.2em * 2);             /* Altura fija para 2 líneas */
	    display: -webkit-box;
	    -webkit-line-clamp: 2;               /* Limita a 2 líneas */
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    word-break: break-word;
	    margin-bottom: 8px;
	}


	.product-features {
	    font-size: 0.8em;
	    color: #666;
	    margin-bottom: 10px;
	    text-align: center;
	    line-height: 1.2em;              /* Altura de línea */
	    max-height: calc(1.2em * 2);     /* Altura para 2 líneas */
	    overflow: hidden;                /* Oculta el exceso */
	    text-overflow: ellipsis;        /* Añade "..." si se corta */
	    display: -webkit-box;
	    -webkit-line-clamp: 2;           /* Limita a 2 líneas */
	    -webkit-box-orient: vertical;
	    word-break: break-word;          /* Evita cortar palabras a la mitad */
	}


        .product-colors {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        /*.color-swatch {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 1px solid #ccc;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .color-swatch:hover {
            transform: scale(1.1);
            border-color: #555;
        }*/

	.color-swatch {
	    width: 14px;
	    height: 14px;
	    border-radius: 50%;
	    border: 1px solid #ccc;
	    cursor: pointer;
	    /*background-color: white; */ /* Asegura fondo blanco */
	    /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); */ /* Sombra más sutil */
	    transition: transform 0.2s ease, border-color 0.2s ease;
	}

	.color-swatch:hover {
	    transform: scale(1.1);
	    border-color: #555;
	    /*box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);*/  /* Sombra más suave al hacer hover */
	    background-color: white;  /* Asegura fondo blanco */
	}


        .product-price {
            font-size: 1.2em;
            font-weight: 700;
            color: #e67e22;
            text-align: center;
            margin-bottom: 15px;
        }

        .product-button {
            display: block;
            width: 90%;
            margin: 0 auto;
            padding: 10px 15px;
            background-color: #cdcdcd;
            color: #fff;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .product-button:hover {
            background-color: #9B9B9B;
	    color: #FFFFFF;
        }

        /* --- Media Queries para Responsividad --- */
        /* Ajustamos las columnas a medida que la pantalla se reduce */
        @media (max-width: 1700px) { /* Por ejemplo, 5 columnas en pantallas ligeramente más pequeñas */
            .product-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        @media (max-width: 1400px) { /* 4 columnas */
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 1100px) { /* 3 columnas */
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) { /* 2 columnas */
            .container {
                padding: 15px 10px;
            }
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .product-title {
                font-size: 0.95em;
            }
            .product-price {
                font-size: 1.1em;
            }
            .product-features {
                font-size: 0.75em;
            }
            .color-swatch {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 576px) { /* 1 columna en móviles muy pequeños */
            .container {
                padding: 10px 5px;
            }
            .product-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .product-card {
                max-width: 300px;
                margin: 0 auto;
            }
        }
