        /* Variables y Reset Básico */
        :root {
            --color-dark: #282828; /* Fondo principal oscuro */
            --color-light: #f7f7f7; /* Fondo de tarjetas y navegación inferior */
            --color-text-dark: #333;
            --color-text-light: #fff;
            --color-accent: #e6b35d; /* Dorado/Amarillo para acentos si se requiere */
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--color-light);
            color: var(--color-text-dark);
            line-height: 1.6;
        }

        /* --------------------
        1. CABECERA Y HERO
        -------------------- */

        .top-bar {
            background-color: var(--color-dark);
            color: var(--color-text-light);
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9em;
        }

        .top-bar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-bar a, .top-bar span {
            color: #ccc;
            text-decoration: none;
            cursor: pointer;
        }
        
        /* Simulación de icono de búsqueda */
        .search-icon::after {
            content: '🔍'; 
            font-size: 1.2em;
        }

        .hero {
            background-color: var(--color-dark);
            color: var(--color-text-light);
            padding: 80px 5%;
            text-align: left;
            border-bottom: 1px solid #444;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .hero p {
            font-size: 1.2em;
            color: #aaa;
            margin-top: 0;
        }

        /* --------------------
        2. NAVEGACIÓN PRINCIPAL
        -------------------- */

        .main-nav {
            background-color: #e5e5e5; /* Color crema/gris claro de la imagen */
            padding: 15px 5%;
            text-align: center;
            border-bottom: 1px solid #ccc;
        }

        .main-nav a {
            color: var(--color-text-dark);
            text-decoration: none;
            padding: 0 20px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9em;
        }

        .main-nav a:hover {
            color: var(--color-accent);
        }

        /* --------------------
        3. CONTENIDO Y PRODUCTOS
        -------------------- */

        .content-section {
            width: 90%;
            max-width: 1200px;
            margin: 40px auto;
        }
        
        .collection-header {
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .collection-header span {
            color: var(--color-accent); /* Color para los brillos */
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            justify-content: center;
        }

        .product-card {
        background-color: #fff;
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        }

        .card-image {
            width: 100%;
            height: 250px; /* Altura fija para simular las imágenes */
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Para que la imagen cubra el contenedor */
        }
        
        /* Texto dentro del placeholder para las imágenes */
        .card-image-placeholder {
            font-size: 0.8em;
            color: #999;
            padding: 10px;
        }


        .product-details h4 {
            margin: 5px 0;
            font-size: 1.1em;
            font-weight: 600;
        }

        .product-details p.category {
            margin: 0 0 10px 0;
            font-size: 0.8em;
            color: #888;
        }

        .card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }

        .card-bottom .price {
            font-weight: bold;
            color: var(--color-text-dark);
            font-size: 1.2em;
        }

        .card-bottom button {
            background-color: var(--color-dark);
            color: var(--color-text-light);
            border: none;
            padding: 8px 15px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            border-radius: 3px;
            font-size: 0.8em;
            transition: background-color 0.3s;
        }
        
        .card-bottom button:hover {
            background-color: #444;
        }


        /* --------------------
        4. PIE DE PÁGINA
        -------------------- */

        footer {
            background-color: var(--color-dark);
            color: #aaa;
            padding: 50px 5% 30px;
            text-align: center;
            margin-top: 50px;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.9em;
        }

        footer strong {
            color: var(--color-text-light);
        }