.logo-link {
    display: flex;
  }
.logo-link img {
    height: 120px;
  }
.title {
    margin: 0;
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.card img {
    width: 100%;
    height: auto;
    display: block;
}
.card_body {
    padding: 1rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;   
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;   
}
.menu-btn {
    color: var(--primary-dark);
}
.carrito-link {
    display: flex;
}
.carrito-link img {
    height: 40px;
}
.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
.btn2 {
    display: inline-flex;
    background-color: var(--surface);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 8px;
    margin-bottom: -1rem;
}
.btn2:hover {
    background-color: var(--primary);
    border-radius: var(--radius);
    transform: 1s ease background-color var(--primary-dark);
    color: white;
}
.input, .select, .textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    background: #fff;
}
.grid-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.product__image {
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #eef2ff;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem 0.7rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--primary-dark);
    font-size: 0.85rem;
    margin: 0;
}
.badge2 {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem 0.7rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #FFCEC7;
    color: #EB2F1A;
    font-size: 0.85rem;
    margin: 0;
}
.option {
    padding: 0.9rem 1rem;
    font-size: 0.65rem;
}
.search-btn {
    transform: translateX(-5px);
    border: none;
    cursor: pointer;
    display: flex;
    
}
.search-bar {
    width: 100%;
    border-radius: 14px;
    background: #fff;
    display: flex;
}
.precio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}
.precio_total {
    display: flex;
    align-items: center;
    justify-content:space-around;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--primary-dark);
    border-radius: 20px;
}
.profile {
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    justify-content: space-around;
    width: 150px;  /* Ajusta el ancho a tu gusto */
    height: 150px; /* Mantén el mismo alto para que sea un círculo perfecto */
    object-fit: cover; /* Evita que la imagen se estire o deforme */
    border-radius: 50%; /* Asegura que se mantenga circular */
}
.checkout {
    display: grid;
    gap: 1.5rem;
}
.checkout_header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.back_btn {
    font-size: 1.5rem;
}
label {
    display: block;
    margin: 0.8rem 0 0.3rem;
    font-weight: 500;
}
.methods {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.payment {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
}
.payment span {
    font-size: 1.5rem;
}
.payment.active {
    border: 2px solid var(--primary-dark);
    background-color: var(--surface);
}
.item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1rem;
}
.item img {
    border-radius: 10px;
    object-fit: cover;
}
.item span {
    font-size: 0.8rem;
    color: var(--muted);
}
.total_summary {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 1.2rem;
}
.btn_checkout {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: var(--primary);
    border-radius: 15px;
}
.card_empty {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
}
.card_body_empty {
    align-items: center;
    padding: 20px 10px;
}
.card_body_empty img {
    width: 100%;
    height: auto;
    display: flex;
}
.carrito {
    width: 45%;
}
.btn_pay {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;   
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.comparar-table {
    width: 100%;
    display: grid;
    text-align: center;
    justify-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.comparar-table th, .comparar-table td {
    border: 1px solid #ddd;
    padding: 8px;
    width: 50%;
    border-radius: var(--radius);
}
.comparar-table tbody tr:nth-child(odd) {
    background-color: #E8F5E6;
}

.comparar-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.comparar-table img {
    max-width: 100px;
    height: auto;
    margin-bottom: 0.5rem;
    margin: auto;
    border-radius: var(--radius);
}