.info-card {
  background-color: #d2b48c; 
  color: #3e2723;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.info-card:hover {
  background-color: #b08968; 
  transform: translateY(-5px); 
  color: #ffffff;
}

.coffee-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}


.img-container {
  aspect-ratio: 1 / 1; 
  overflow: hidden;
}


.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}


.coffee-card:hover img {
  transform: scale(1.1);
}


.coffee-title {
  background-color: #6f4e37;
  color: white;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

footer {
  background-color: #6f4e37;
  color: #fff;
  padding: 20px 0;
}


.footer-flex {
  display: flex;
  align-items: center;      
  justify-content: space-between;
}


.texto-izquierda {
  margin-left: 20px;
}


.texto-centro {
  margin-left: 90px;
  text-align: center;
}


#iconos {
  display: flex;
  gap: 4px;
}


#iconos img {
  width: 80px;
  height: 80px;
  transition: filter 0.3s ease;
}

#iconos img:hover {
  filter: brightness(1.3);
}


.accordion,
.accordion-item,
.accordion-header {
  margin: 0;
  padding: 0;
  border: 0;
}


.accordion-item {
  border-bottom: 0;
}


.accordion-button {
  background-color: #e0e7ff;
  color: #000;
  font-weight: 500;
  padding: 1rem;
  border-radius: 0;
  box-shadow: none;
}


.accordion-button:not(.collapsed) {
  background-color: #c7d2fe;
}


.accordion-button::after {
  margin-left: auto;
}


.accordion-body {
  background-color: #f8f9fa;
  padding: 0.75rem 1.25rem;
}


.accordion-collapse {
  border: 0;
}
.accordion{
    padding-top: 10px;
    padding-bottom: 60px;
}


.card-info {
    position: relative;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}


.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.75); 
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


.info-overlay.activo {
    opacity: 1;
    visibility: visible;
}

.info-overlay .cerrar-info {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}


.ver-info {
    text-decoration: none;
}


.card-body {
    padding: 10px;
}
.card-info {
    position: relative;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.info-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 215, 0, 0.75);
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.info-overlay.activo {
    opacity: 1;
    visibility: visible;
}



.tabs-custom.nav-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    margin: 0 4px;
    padding: 8px 16px;
    font-weight: 500;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}


.tabs-custom .tab-combo {
    color: crimson !important;
}

.tabs-custom .tab-temporada {
    color: darkgreen !important;
}

.tabs-custom .tab-latte {
    color: darkmagenta !important;
}

.tabs-custom .tab-frappe {
    color: darkorange !important;
}

.tabs-custom .tab-batido {
    color: deeppink !important;
}

.tabs-custom .tab-jugos {
    color: slateblue !important;
}


.tabs-custom .tab-combo.active {
    background-color: rgba(220, 20, 60, 0.25) !important;
    color: darkred !important;
}

.tabs-custom .tab-temporada.active {
    background-color: rgba(0, 100, 0, 0.25) !important;
    color: #064b06 !important;
}

.tabs-custom .tab-latte.active {
    background-color: rgba(139, 0, 139, 0.25) !important;
    color: indigo !important;
}

.tabs-custom .tab-frappe.active {
    background-color: rgba(255, 140, 0, 0.3) !important;
    color: #b45309 !important;
}

.tabs-custom .tab-batido.active {
    background-color: rgba(255, 20, 147, 0.3) !important;
    color: #9b003f !important;
}

.tabs-custom .tab-jugos.active {
    background-color: rgba(106, 90, 205, 0.3) !important;
    color: #2f2f8f !important;
}


.tabs-custom .nav-link:hover {
    color: inherit !important;
}



.tab-all.active {
  background-color: #dc3545;
  color: #fff;
}

.tab-compose.active {
  background-color: #6f42c1;
  color: #fff;
}

.tab-bts.active {
  background-color: #198754;
  color: #fff;
}

.tab-machines.active {
  background-color: #ffc107;
  color: #000;
}


.bg-purple {
  background-color: #6f42c1;
}

.tag {
  font-weight: 800;    
  margin-right: 6px;   
}

.tag.compose {
  color: #6c757d; 
}

.tag.bts {
  color: #198754;
}

.tag.machines {
  color: #ffc107; 
}

.tab-all i {
  font-size: 0.9rem;
}



