
        .shop-section { padding: 80px 20px; background-color: #fdfaf9; font-family: 'Segoe UI', sans-serif; }
        .container { max-width: 1200px; margin: 0 auto; }
        .section-title { text-align: center; color: #4a4a4a; font-size: 2.5rem; margin-bottom: 50px; }
        
        /* CUADRÍCULA FIJA A 4 COLUMNAS */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* Fuerza 4 columnas exactas */
            gap: 25px; /* Espacio uniforme entre productos */
        }

        .product-card {
            background: #ffffff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .product-card:hover { transform: translateY(-5px); }
        .image-wrapper img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; }
        .price { font-size: 1.2rem; color: #4a4a4a; font-weight: bold; margin: 10px 0; }
        .cta-button { display: inline-block; margin-top: 10px; padding: 10px 20px; background-color: #e5b3bb; color: white; text-decoration: none; border-radius: 25px; }
    