
* {
    box-sizing: border-box;
}
.exclusive-deals-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.exclusive-deals-tabs button {
    padding: 10px 20px;
    background: #efefef;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.exclusive-deals-tabs button.active {
    background: #ca1a1f;
    color: white;
}
.exclusive-deals {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-family: sans-serif;
}
.exclusive-deal {
    border-top: 1px solid #eee;
    padding: 20px 0;
}
.exclusive-deal .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.exclusive-deal .logo {
    flex: 0 0 120px;
}
.exclusive-deal .logo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100%;
}

.exclusive-deal .info {
    flex: 1 1 200px;
}

.exclusive-deal .info .partner {
    font-size: 22px;
    font-weight: bold;
}
.exclusive-deal .info .category {
    color: #ca1a1f;
    font-size: 15px;
}
.exclusive-deal .type {
    flex: 1 1 200px;
    font-weight: bold;
    font-size: 16px;
}
.exclusive-deal .terms {
    flex: 2 1 300px;
    font-size: 14px;
    line-height: 1.5;
}
.exclusive-deal .button {
    flex: 0 0 150px;
    text-align: center;
}
.exclusive-deal .button a {
    display: inline-block;
    background-color: #ca1a1f;
    color: white;
    padding: 12px 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 999px;
    font-size: 15px;
    text-transform: uppercase;
}

.sc_item_filters_tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
  font-family: var(--theme-font, inherit);
}

.sc_item_filters_tabs li {
  padding-bottom: 10px;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #0e1f40;
  transition: all 0.3s ease;
}

.sc_item_filters_tabs li.active {
  color: #ff5722; /* colore attivo */
}

.sc_item_filters_tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #ff5722; /* underline attivo */
  transition: width 0.3s ease;
}
.social-icon {
    display: inline-block;
    margin-right: 10px;
    color: #ca1a1f;
    font-size: 24px;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.social-icon i {
    vertical-align: middle;
}

.social-icon:hover {
    color: #000;
}

.row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 20px 0;
}

.logo {
    width: 10%;
    min-width: 80px;
    text-align: center;
}

.info {
    width: 20%;
}

.type {
    width: 30%;
    font-weight: bold;
}

.terms {
    width: 30%;
}

.social-icons {
    width: 10%;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-self: flex-start;
}
.exclusive-deal.hidden {
    display: none !important;
}


