:root {
    --primary: #003366;
    --accent: #AB1212;
    --success: #0B652C;
    --bg: #f8f9fa;
    --text: #2d3436;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    margin: 0;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: white;
    padding: 20px 0;
    border-bottom: 3px solid var(--primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    text-align: right;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
}

.header-info i { color: var(--accent); margin-right: 5px; }

/* Barra de Confianza */
.trust-bar {
    background: var(--primary);
    color: white;
    padding: 12px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Grid de Productos */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* Tarjeta de Producto Profesional */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-header {
    padding: 20px;
    background: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.product-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
}

.model-text { font-size: 1.2rem; color: #000000; display: block; }

.product-volt {
    background: var(--accent);
    color: white;
    padding: 4px 8px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
    height: fit-content;
}

.image-container {
    height: 250px;
    padding: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-height: 150%;
    object-fit: contain;
}

.no-image-box {
    text-align: center;
    color: #ccc;
}

.no-image-box i { font-size: 3rem; margin-bottom: 10px; }

.specs {
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.specs-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 8px;
}

.card-footer {
    padding: 20px;
    background: #fcfcfc;
    border-top: 1px solid #eee;
}

.accessories {
    margin-bottom: 15px;
}

.acc-tag {
    background: #e9ecef;
    padding: 3px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    margin-right: 5px;
    color: #444;
}

.action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stock-info {
    font-size: 0.8rem;
    font-weight: 600;
}

.status-dot {
    height: 8px;
    width: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.btn-whatsapp-modern {
    background: var(--success);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-whatsapp-modern:hover {
    background: #1eb954;
}

.main-footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* Estilo para que el enlace herede el color blanco y no tenga subrayado */
.trust-item {
    color: inherit; /* Hereda el blanco del contenedor padre */
    text-decoration: none; /* Quita la línea de abajo */
    display: flex;
    align-items: center;
    gap: 8px; /* Espacio entre el icono y el texto */
    margin:5px;
}

/* Opcional: un ligero cambio al pasar el mouse para que el usuario sepa que es clickeable */
a.trust-item:hover {
    opacity: 0.8;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container iframe {
    transition: filter 0.3s ease;
}

/* Opcional: El mapa se ve gris hasta que pasas el ratón */
.map-container iframe {
    filter: grayscale(0.5);
}
.map-container iframe:hover {
    filter: grayscale(0);
}

@media (max-width: 600px) {
    /*.header-content { flex-direction: column; text-align: center; gap: 15px; }*/
    .header-content { flex-direction: column; }
    .header-info { text-align: center; }
    .trust-grid { flex-direction: column; gap: 10px; align-items: center; }
}