/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
#desktop_logo {
    margin:0 30px;
}

.img-radius img {
    border-radius: 20px;
}
.slidetoptext{
    text-align: center;  
    cursor: pointer;
}
.toptextcitrus{
    display: none;
}
#header .header-nav{
    padding: 0;
}

/* Estilos para tabla de descuentos por volumen */
.product-discount-wrapper {
  border: 2px solid #F5A442;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.product-discount-header {
  background-color: #F5A442;
  color: #fff;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #E88B1F;
}

.table-product-discounts {
  margin: 0;
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.table-product-discounts thead {
  background-color: #fff;
}

.table-product-discounts thead tr {
  border-bottom: 2px solid #F5A442;
}

.table-product-discounts thead th {
  color: #333;
  font-weight: 700;
  padding: 16px 20px;
  border: none;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.5px;
  background-color: #fff0d9;
}

.table-product-discounts tbody tr {
  border-bottom: 1px solid #f0f0f0;
  background-color: #fafafa;
}

.table-product-discounts tbody tr:last-child {
  border-bottom: 2px solid #F5A442;
}

.table-product-discounts tbody td {
  padding: 14px 20px;
  color: #333;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 500;
  background-color: #fff0d9;
}

.table-product-discounts tbody tr:hover {
  background-color: #FFF9F4;
  transition: background-color 0.2s ease-in-out;
}