/* ============================================================
   1. BASE - TODO EL EQUIPO
   ============================================================ */
:root {
    --white: #FFFFFF;
    --light-grey: #F8F9FA;
    --medium-grey: #57626B;
    --dark-grey: #353A49;
    --google-blue: #1A73E8;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--dark-grey);
    line-height: 1.4;
}

section {
    padding-top: none;
    padding-bottom: none;
    padding-left: 20px;
    padding-right: 20px;
}


/* ============================================================
   2. NAVEGACIÓN - DORIS GUERRA
   ============================================================ */
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--white);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);

}

.google-logo img {
    height: 24px;
}

.nav-icons ul {
    display: flex;
    list-style: none; /* Limpieza de puntos */
    gap: 15px;
}

.nav-icons img {
    width: 20px;
}

/* Estado inicial: ocultamos links y mostramos hamburguesa */
.nav-links {
    display: none;
}

.menu-mobile {
    display: block; 
    list-style: none;
}

/* ============================================================
   3. CUERPO Y PRODUCTO - DHANA CORREDOR / IRINA DIAZ
   ============================================================ */
.tarjeta-producto {
    text-align: left;
}

.tarjeta-producto p:first-of-type {
    font-size: 12px;
    color: var(--medium-grey);
    margin-bottom: 20px;
}

.tarjeta-producto img {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
}

/*Cambios Irina para columna de escritorio*/   
.tarjeta-producto {
    text-align: left;
    display: flex;
}

.image-principal{
    background-color: #F8F9FA;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.image-principal img {
    width: 420px;
    height: auto;
}
.galeria-images {
    display: none;
    padding-top: 30px;
  }
.galeria-images img {
    width: 2rem;
    height: 2rem;
    border-radius:50%;
    border:0.5px solid #100101;
}
/*fin Irina*/


h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tarjeta-producto p:last-of-type {
    font-size: 12px;
    color: var(--medium-grey);
}

h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
}

hr {
    border: none;
    border-top: 1px solid var(--medium-grey);
    opacity: 0.3;
}

/* Selectores de Color e Interacción */
.color-selector {
    border: none;
    margin: 20px 0;
}

.color-selector legend {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.color {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-right: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color:hover {
    transform: scale(1.1);
}

/* Colores específicos */
.blue { background-color: #8bb6d9; }
.white { background-color: #ffffff; }
.black { background-color: #000000; }
.grey { background-color: #57626B; }
.green { background-color: #AECBFA; }
.orange { background-color: #F28B82; }
.pink { background-color: #F8BBD0; }
.yellow { background-color: #FFF475; }

input[type="radio"] {
    display: none;
}

/* Feedback visual al seleccionar color */
input[type="radio"]:checked + .color {
    outline: 2px solid var(--google-blue);
    outline-offset: 2px;
}

#cantidad {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--medium-grey);
    border-radius: 4px;
    margin-bottom: 15px;
}

button[type="submit"] {
    background-color: var(--google-blue);
    color: var(--white);
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

/* ============================================================
   4. FOOTER MOBILE
   ============================================================ */
.site-footer {
    background-color: #f1f3f4;
    padding: 1rem 1.25rem 0.75rem;
    text-align: center;
}

.site-redes-sociales {
    margin-bottom: 0.35rem;
}

.lista-redes-sociales, 
.lista-politicas {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none; /* Quitamos los puntos de lista */
    margin: 0;
    padding: 0;
}

.lista-redes-sociales {
    gap: 0.75rem;
}

.lista-politicas {
    flex-direction: column; /* Apilados en móvil */
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.lista-redes-sociales a,
.lista-politicas a {
    text-decoration: none;
    color: #5f6368;
    font-size: 0.7rem;
}

.icon {
    width: 1rem;
    height: 1rem;
    display: block;
}

.site-pais {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #5f6368;
    margin-top: 10px;
}

.icon-bandera {
    width: 1.4rem;
    height: auto;
}