html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

header {
    background-color: #eccd6a;

}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

#login-submit {
    background-color: #eccd6a;
    color: black;
}

#listaProductosSeleccionados div {
    padding: 10px 0;
}

#listaProductosSeleccionados .btn-sm {
    font-size: 14px;
    padding: 5px 8px;
}

.sticky-footer {
    position: sticky;
    bottom: 0;
    padding: 15px;
    text-align: center;
}

.nombre {
    font-family: "Meow Script", cursive;
    font-weight: 400;
    font-style: normal;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Estilo de la marca */
.brand {
    display: flex;
    align-items: center;
    padding-right: 20px;
    flex-shrink: 0;
}

.logo {
    width: 50px; /* Ajusta el tamaño del logo */
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
.right-content {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    flex-grow: 1; /* Esto empuja los elementos a la derecha */
    gap: 30px;
}

.separator {
    width: 1px;
    height: 40px; /* Ajusta la altura según necesidad */
    background-color: #808080;
    margin: 0 15px; /* Espaciado entre elementos */
}



/* Información de Contacto */
.info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: black;
}

/* Redes Sociales */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons span {
    font-size: 14px;
    font-weight: bold;
    color: black;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    transform: scale(1.1);
}
.modal-header {
    background-color: #eccd6a;
}


/* ventas */
.btn-producto {
    border-radius: 0.5rem;
    box-shadow: none;
    border: 1px solid #ffc10740;
    transition: transform 0.1s ease-in-out;
    font-size: 1.05rem;
    padding: 0.7rem;
    text-align: center;
}

.btn-producto:hover {
    transform: scale(1.03);
}

.table th, .table td {
    vertical-align: middle;
    border: none;
}

.sticky-bottom-bar {
    position: sticky;
    bottom: 0;
    background-color: #fff8dc;
    padding: 1rem;
    border-top: 2px solid #ffc107;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1030;
}

.sticky-bottom-bar h5 {
    margin: 0;
}

.sticky-bottom-bar .btn {
    min-width: 120px;
}
.fila-total td {
    font-size: 1.3rem;
}









@media (max-width: 768px) {
    .sticky-bottom-bar {
        flex-direction: column;
        gap: 0.5rem;
    }
    #tablaProductosSeleccionados {
        font-size: 0.85rem;
    }

    .table th, .table td {
        padding: 0.3rem;
    }

    .btn-producto {
        font-size: 1rem;
        padding: 0.5rem;
    }
}