/* 
 * BSB Vinhos - Frontend Styles 
 * Premium & Elegant Design
 */

:root {
  --bsb-wine-primary: #8a2b3e; /* Burgundy/Wine Red */
  --bsb-wine-text: #2c2c2c;
  --bsb-wine-text-light: #777777;
  --bsb-wine-bg-light: #fdfdfd;
  --bsb-wine-border: #eaeaea;
  --bsb-wine-font-sans: "Inter", -apple-system, sans-serif;
  --bsb-wine-font-serif: "Playfair Display", Georgia, serif;
  --bsb-badge-bg: #8a2b3e;
  --bsb-badge-text: #ffffff;
}

/* ==========================================================================
   Widget: Wine Grid
   ========================================================================== */
.bsb-wine-grid-container,
.bsb-ajax-grid {
  display: grid;
  grid-template-columns: repeat(var(--bsb-cols-desktop, 4), 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .bsb-wine-grid-container,
  .bsb-ajax-grid {
    grid-template-columns: repeat(var(--bsb-cols-tablet, 3), 1fr);
  }
}

@media (max-width: 768px) {
  .bsb-wine-grid-container,
  .bsb-ajax-grid {
    grid-template-columns: repeat(var(--bsb-cols-mobile, 2), 1fr);
  }
}

/* Garante que a gaveta ocupa a largura toda da grelha (1 a -1) */
.bsb-related-drawer {
  grid-column: 1 / -1;
  width: 100%;
}

/* Fallback Grid when Swiper is disabled via JS */
.bsb-related-drawer .bsb-grid-mode {
  display: grid;
  gap: 20px;
}
/* We apply columns via JS inline style so we don't need fixed CSS for it */

.bsb-wine-card {
  background: var(--e-global-color-c08f037, #ffffff);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
  padding: 20px;
}

.bsb-wine-card:hover {
  background-color: var(--e-global-color-bd90e6c, #f3f0e7);
  --bsb-card-bg: var(--e-global-color-bd90e6c, #f3f0e7);
}

.bsb-wine-card.bsb-card-context-grid.bsb-drawer-active {
  background: var(--e-global-color-bd90e6c);
}

/* Overflow do Slider */
.bsb-wine-carousel {
  width: 100%;
}

.bsb-carousel-overflow-visible {
  overflow: visible !important;
}

.bsb-carousel-overflow-hidden {
  overflow: hidden !important;
}

.bsb-wine-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 16px;
}

.bsb-wine-card-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bsb-wine-card-image-wrapper img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* Wishlist Button */
.bsb-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: translateY(-10px);
  cursor: pointer;
  color: var(--e-global-color-e517805);
  z-index: 10;
}

.bsb-wishlist-btn:hover {
  color: var(--e-global-color-e517805);
}

.bsb-wishlist-btn svg {
  width: 20px;
  height: 20px;
}

.bsb-wine-card:hover .bsb-wishlist-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Add to Cart Button */
.bsb-wine-card-image-wrapper .bsb-add-to-cart-btn {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--e-global-color-31d9a12) !important;
  color: #fff !important;
  text-align: center;
  padding: 12px !important;
  font-family: var(--e-global-typography-45c0771-font-family);
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 10;
  display: block !important;
}

.bsb-wine-card-image-wrapper .bsb-add-to-cart-btn:hover {
  background: #6a1f2e; /* Darker shade */
  color: #fff;
}

.bsb-wine-card-image-wrapper .bsb-add-to-cart-btn.loading {
  opacity: 0.7;
}

.bsb-add-to-cart-btn.added {
  background: #46b450;
}

.bsb-wine-card:hover .bsb-add-to-cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.bsb-wine-producer-name {
  font-family: var(--bsb-wine-font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--e-global-color-e517805);
}

.bsb-wine-title,
.bsb-wine-title a {
  font-family: var(--e-global-typography-primary-font-family) !important;
  font-size: 24px !important;
  color: var(--bsb-wine-text);
  margin: 0;
  font-weight: 400 !important;
  line-height: 31.2px !important;
}

.bsb-wine-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.bsb-wine-title a:hover {
  color: var(--bsb-wine-primary);
}

.bsb-title-behavior-ellipsis .bsb-wine-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bsb-title-behavior-clamp_2 .bsb-wine-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Flex Spacer Utilities for Equal Height Cards */
.bsb-flex-space-image-yes .bsb-wine-card-image-wrapper {
  margin-bottom: auto !important;
}
.bsb-flex-space-producer-yes .bsb-wine-producer-name {
  margin-bottom: auto !important;
}
.bsb-flex-space-title-yes .bsb-wine-title {
  margin-bottom: auto !important;
}
.bsb-flex-space-chips-yes .bsb-wine-badges {
  margin-bottom: auto !important;
}
.bsb-flex-space-price-yes .bsb-wine-price {
  margin-bottom: auto !important;
}

/* Chip Behaviors */
.bsb-chip-behavior-clamp_2 .bsb-wine-badges {
  max-height: 2.8rem;
  overflow: hidden;
}

.bsb-chip-behavior-fade_1 .bsb-wine-badges {
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}

.bsb-chip-behavior-fade_1 .bsb-wine-badges::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    var(--bsb-card-bg, var(--bsb-wine-bg-light))
  );
  pointer-events: none;
}

.bsb-wine-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 16px 0;
}

.bsb-wine-badges .bsb-badge,
.bsb-badge {
  background-color: var(--e-global-color-fe7ff33);
  color: #ffffff;
  padding: 8px 12px;
  font-family: var(--e-global-typography-45c0771-font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.bsb-wine-price {
  font-family: var(--e-global-typography-45c0771-font-family);
  font-size: 16px;
  color: var(--bsb-wine-text);
  margin-bottom: 0;
  font-weight: 400;
  line-height: 27.2px;
  flex: auto;
  display: flex;
  align-items: flex-end;
}

.bsb-wine-button {
  display: none; /* Old button, replaced by overlay add to cart */
}

/* Related Toggle Dummy */
.bsb-related-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: var(--e-global-typography-45c0771-font-family);
  font-size: 13px;
  color: var(--e-global-color-d44d2fe);
  cursor: pointer;
  /* padding-top: 16px; */
  /* border-top: 1px solid var(--bsb-wine-border); */
  margin-top: 16px;
  transition: color 0.3s;
}

.bsb-related-toggle:hover {
  color: var(--bsb-wine-primary);
}

/* ==========================================================================
   Widget: Technical Sheet
   ========================================================================== */
.bsb-tech-sheet-wrapper {
  background: #fff;
  border-top: 1px solid var(--bsb-wine-border);
  padding: 2rem 0;
  margin-top: 2rem;
}

.bsb-tech-sheet-title {
  font-family: var(--bsb-wine-font-serif);
  font-size: 1.25rem;
  color: var(--bsb-wine-text);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.bsb-tech-sheet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bsb-tech-sheet-item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bsb-wine-border);
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.9rem;
}

.bsb-tech-sheet-item:last-child {
  border-bottom: none;
}

/* ==========================================================================
   Widget: Producer
   ========================================================================== */
.bsb-producer-wrapper {
  padding: 2rem 0;
  border-bottom: 1px solid var(--bsb-wine-border);
}

.bsb-producer-section-title {
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bsb-wine-text-light);
  margin-bottom: 1rem;
}

.bsb-producer-name {
  font-family: var(--bsb-wine-font-serif);
  font-size: 1.8rem;
  color: var(--bsb-wine-primary);
  margin-bottom: 1rem;
  font-weight: 400;
}

.bsb-producer-desc {
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--bsb-wine-text);
  margin-bottom: 1.5rem;
}

.bsb-producer-link {
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.85rem;
  color: var(--bsb-wine-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bsb-producer-link:hover {
  border-color: var(--bsb-wine-primary);
}

/* ==========================================================================
   Relacionados Drawer & Overlay
   ========================================================================== */

#bsb-related-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: transparent;
  /* cursor: pointer; */
}

.bsb-related-drawer {
  grid-column: 1 / -1;
  background-color: var(--e-global-color-bd90e6c, #f4f2eb);
  padding: 0;
  margin-top: -20px;
  position: relative;
  z-index: 1000;
  /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
  border-bottom: 20px solid var(--e-global-color-bd90e6c, #f4f2eb);
}

.bsb-related-carousel-title {
  text-align: center;
  font-size: 32px;
  font-family: var(--e-global-typography-primary-font-family);
  color: var(--e-global-color-c4debf2, #8e7f5e);
  padding: 16px;
  line-height: 42px;
}

.bsb-related-swiper {
  padding-bottom: 0px !important; /* space for pagination */
}

.bsb-related-toggle {
  cursor: pointer;
  z-index: 1001; /* above overlay when active */
  position: relative;
}

/* ==========================================================================
   Swiper Overrides
   ========================================================================== */
.bsb-wine-carousel .swiper-button-prev,
.bsb-wine-carousel .swiper-button-next {
  color: var(--bsb-wine-primary, #9b1c31);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.bsb-wine-carousel .swiper-button-prev:hover,
.bsb-wine-carousel .swiper-button-next:hover {
  opacity: 1;
}

.bsb-wine-carousel .swiper-pagination-bullet-active {
  background: var(--bsb-wine-primary, #9b1c31);
}

/* ==========================================================================
   Store Archive (Filters & Grid) Layout
   ========================================================================== */
.bsb-store-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.bsb-store-sidebar {
  width: 100%;
  flex: 0 0 100%;
}

@media (min-width: 992px) {
  .bsb-store-sidebar {
    flex: 0 0 280px;
  }
  .bsb-store-main {
    flex: 1;
    min-width: 0;
  }
}

.bsb-store-main {
  width: 100%;
}

/* Topbar */
.bsb-store-topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 0;
  flex-wrap: wrap;
  gap: 15px;
}

.bsb-results-count {
  font-family: var(--bsb-wine-font-sans);
  color: var(--bsb-wine-text-light);
  font-size: 0.9rem;
}

.bsb-store-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bsb-sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bsb-sort-label {
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.9rem;
  color: var(--bsb-wine-text-light);
}

.bsb-sort-select {
  padding: 8px 45px 8px 10px;
  border: 1px solid var(--e-global-color-3d017ca);
  border-radius: 0;
  font-family: var(--bsb-wine-font-sans);
  font-size: 13px;
  color: var(--e-global-color-67833de);
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232c2c2c%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 10px auto;
}

.bsb-view-toggles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bsb-view-label {
  font-weight: 500;
  font-size: 13px;
  color: var(--e-global-color-d536683);
  margin-right: 8px;
}

.bsb-view-toggle {
  background: none;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  color: var(--bsb-wine-text-light);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.9rem;
  border-radius: 4px;
}

.bsb-view-toggle.active {
  background-color: var(--bsb-wine-bg-light);
  color: var(--bsb-wine-primary);
  font-weight: 500;
}

.bsb-view-toggle:hover {
  color: var(--bsb-wine-primary);
}

/* Active Filters */
.bsb-active-filters-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--bsb-wine-border);
}

.bsb-active-chips-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bsb-active-chips-wrapper > span:first-child {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 12px;
  color: var(--e-global-color-d44d2fe);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.1px;
}

.bsb-active-chip {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--e-global-color-b024545);
  height: 36px;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--bsb-wine-font-sans);
  font-size: 14px;
  color: var(--e-global-color-49c3530);
  gap: 10px;
}

.bsb-remove-chip {
  padding: 8px;
  cursor: pointer;
  font-size: 16px;
  line-height: 16px;
  color: var(--e-global-color-1f7a474);
  transition: color 0.2s;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background-image: url(/wp-content/plugins/bsb-vinhos-natwine/assets/icons/remove.png);
  background-position: center;
  background-size: 18px;
  background-repeat: no-repeat;
}

.bsb-remove-chip:hover {
  color: var(--bsb-wine-primary);
}

.bsb-active-filters-container button.bsb-clear-all-filters {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 13px;
  text-decoration: none;
  border-radius: 0;
  border: 0;
  background: var(--e-global-color-d6d6ec0);
  color: #fff;
  line-height: 20.5px;
  padding: 7.5px 24px;
  transition: color 0.3s;
}

.bsb-active-filters-container .bsb-clear-all-filters:hover {
  background: var(--e-global-color-cecd84d);
}

/* Sidebar Filters */
.bsb-filter-group .bsb-filter-title {
  border-bottom: 1px solid var(--e-global-color-3d017ca);
  padding: 10px;
}
.bsb-filter-group:first-child {
  padding-top: 0;
}
.bsb-filter-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--bsb-wine-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  height: 48px;
  padding: 10px;
}

.bsb-filter-toggle {
  width: 12px;
  height: 12px;
  position: relative;
}

.bsb-filter-toggle::before,
.bsb-filter-toggle::after {
  content: "";
  position: absolute;
  /* background-color: currentColor; */
  transition: transform 0.3s ease;
}

.bsb-filter-toggle::before {
  top: 2px;
  left: 0;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
}

.bsb-filter-group:not(.bsb-collapsed) .bsb-filter-toggle::before {
  transform: rotate(225deg);
  opacity: 1;
}

.bsb-filter-content .bsb-filter-search {
  width: calc(100% - 0px);
  padding: 8px 10px;
  border: 1px solid var(--bsb-wine-border);
  border-radius: 4px;
  margin: 16px 0px 8px;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.85rem;
  border: 1px solid var(--e-global-color-3d017ca);
  font-size: 13px;
  padding: 8px 10px 8px 10px;
  border-radius: 0;
  color: var(--e-global-color-67833de);
}

.bsb-filter-options-list {
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding: 18px 0;
}
.bsb-filter-content .bsb-filter-search + .bsb-filter-options-list {
  padding: 0 0 16px;
}

.bsb-filter-option {
  display: flex;
  align-items: center;
  height: 32px;
  cursor: pointer;
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.9rem;
  color: var(--bsb-wine-text);
}

.bsb-filter-option:last-child {
  margin-bottom: 0;
}

.bsb-filter-option input[type="checkbox"] {
  display: none;
}

.bsb-checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid var(--e-global-color-3d017ca);
  border-radius: 2px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}

.bsb-filter-option input:checked + .bsb-checkbox-custom {
  background-color: var(--e-global-color-a68cd2f);
  border-color: var(--e-global-color-a68cd2f);
}

.bsb-filter-option input:checked + .bsb-checkbox-custom::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bsb-filter-option:has(input:checked) span.bsb-filter-count {
  background: var(--e-global-color-a68cd2f);
  color: #fff;
}

.bsb-filter-name {
  flex-grow: 1;
  color: var(--e-global-color-67833de);
  font-size: 16px;
  line-height: 27.2px;
  height: 28px;
}

.bsb-filter-count {
  background-color: var(--e-global-color-bd858b1);
  font-size: 12px;
  margin-left: 5px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--e-global-color-52d83be);
  padding: 0 8px;
  border-radius: 50px;
  min-width: 27px;
  text-align: center;
}

/* Price Slider Overrides */
.bsb-price-slider-wrapper {
  padding: 10px 5px 0;
}

.noUi-connect {
  background: var(--e-global-color-a68cd2f);
}

.noUi-horizontal {
  height: 16px;
}

.noUi-target {
  background: var(--e-global-color-b024545);
  border-radius: 16px;
  border: 1px solid var(--e-global-color-b024545);
}

.noUi-handle {
  width: 16px !important;
  height: 16px !important;
  right: -9px !important;
  top: -1px !important;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--e-global-color-d6d6ec0);
  box-shadow: none;
  cursor: grab;
}

.noUi-handle::before,
.noUi-handle::after {
  display: none;
}

.bsb-price-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}
/* .bsb-price-inputs span {
  display: none;
} */

.bsb-price-inputs .bsb-price-input {
  width: 100%;
  padding: 5px 5px 5px 32px;
  border: 1px solid var(--e-global-color-df443a6);
  border-radius: 0;
  text-align: left;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 13px;
}

.bsb-price-input-wrapper {
  position: relative;
}

.bsb-price-input-wrapper:after {
  content: "€";
  color: #99a1af;
  font-size: 13px;
  line-height: 20.15px;
  position: absolute;
  top: 0;
  left: 0;
  height: 31.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0px 0 16px;
}

/* List View Overrides */
.bsb-ajax-grid[data-view="list"] {
  display: flex;
  flex-direction: column;
}

.bsb-ajax-grid[data-view="list"] > .bsb-wine-card {
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}

.bsb-ajax-grid[data-view="list"] > .bsb-wine-card .bsb-wine-card-image-wrapper {
  height: 250px;
  width: 250px;
  flex: 0 0 250px;
}

/* Hide overlay buttons in list view */
.bsb-ajax-grid[data-view="list"]
  > .bsb-wine-card
  .bsb-wine-card-image-wrapper
  .bsb-wishlist-btn,
.bsb-ajax-grid[data-view="list"]
  > .bsb-wine-card
  .bsb-wine-card-image-wrapper
  .bsb-add-to-cart-btn {
  display: none !important;
}

.bsb-ajax-grid[data-view="list"] > .bsb-wine-card .bsb-wine-card-content {
  justify-content: center;
  padding: 0px;
}

/* List View Specific Content (Hidden in Grid) */
.bsb-list-view-content {
  display: none;
  margin-top: 16px;
}

.bsb-ajax-grid[data-view="list"] > .bsb-wine-card .bsb-list-view-content {
  display: block;
}

.bsb-list-short-desc {
  font-family: var(--bsb-wine-font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--bsb-wine-text);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bsb-list-actions-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bsb-list-qty {
  display: flex;
  align-items: center;
  background-color: var(--e-global-color-bd90e6c, #f3f0e7);
  height: 56px;
}

.bsb-list-qty button {
  background: transparent;
  border: none;
  width: 56px;
  min-width: 56px;
  height: 56px;
  cursor: pointer;
  font-size: 20px;
  color: var(--bsb-wine-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
}

.bsb-list-qty input.bsb-qty-input {
  width: 56px;
  height: 100%;
  text-align: center;
  background: transparent;
  border: none;
  font-weight: 500;
  font-family: var(--bsb-wine-font-sans);
  font-size: 16px;
  padding: 0;
  -moz-appearance: textfield;
}

.bsb-list-qty input::-webkit-outer-spin-button,
.bsb-list-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bsb-list-view-content .bsb-list-actions-bar .bsb-list-add-to-cart {
  background-color: var(--e-global-color-31d9a12) !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 14px 32px !important;
  flex: 1;
  text-decoration: none;
  font-family: var(--bsb-wine-font-sans);
  font-size: 16px;
  transition: opacity 0.3s;
  border-radius: 0;
}

.bsb-list-add-to-cart:hover {
  opacity: 0.9;
  color: #fff;
}

.bsb-list-view-content .bsb-list-actions-bar .bsb-list-add-to-cart svg {
  width: 20px;
  height: 20px;
}

.bsb-list-wishlist {
  background-color: var(--e-global-color-bd90e6c);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bsb-wine-text);
  transition: background-color 0.3s;
}

.bsb-list-wishlist:hover {
  background-color: #e5e0cf;
}

.bsb-list-wishlist svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .bsb-ajax-grid[data-view="list"] > .bsb-wine-card {
    flex-direction: column;
  }
  .bsb-ajax-grid[data-view="list"]
    > .bsb-wine-card
    .bsb-wine-card-image-wrapper {
    height: 250px;
    width: 100%;
    flex: none;
  }
  .bsb-list-actions-bar {
    flex-wrap: wrap;
  }
}

.bsb-ajax-grid.loading {
  pointer-events: none;
}

/* ==========================================================================
   Wizard Banner & Pagination (Load More)
   ========================================================================== */

/* Accordion closed state */
/* CSS removed for bsb-filter-content because it conflicts with jQuery slideToggle. 
   We will use inline style="display:none;" in PHP. */

/* Wizard Banner */
.bsb-wizard-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--e-global-color-b209b6e);
  border: 1px solid var(--e-global-color-e38f297);
  padding: 22px 24px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.bsb-wizard-banner-title {
  font-family: var(--e-global-typography-45c0771-font-family);
  font-size: 16px;
  color: var(--e-global-color-67833de);
  font-weight: 400;
}

.bsb-wizard-banner-link {
  font-family: var(--e-global-typography-45c0771-font-family) !important;
  font-size: 16px !important;
  color: var(--e-global-color-408f40e);
  text-decoration: none;
  font-weight: 400 !important;
  transition: opacity 0.3s;
}

.bsb-wizard-banner-link:hover {
  opacity: 0.8;
}

/* Pagination / Load More */
.bsb-pagination-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.bsb-pagination-progress {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.bsb-progress-text {
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.85rem;
  color: var(--bsb-wine-text-light);
  margin-bottom: 10px;
}

.bsb-progress-bar {
  width: 100%;
  height: 2px;
  background-color: var(--bsb-wine-border);
  position: relative;
}

.bsb-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #d1c7a3; /* Beige/Gold from the layout */
  transition: width 0.3s ease;
}

.bsb-load-more-btn {
  background-color: transparent;
  color: var(--bsb-wine-text);
  border: 1px solid var(--bsb-wine-border);
  padding: 12px 30px;
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bsb-load-more-btn:hover {
  border-color: var(--bsb-wine-primary);
  color: var(--bsb-wine-primary);
}

.bsb-load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bsb-recently-viewed-container h3.bsb-recently-viewed-title {
  background: var(--e-global-color-bd90e6c);
  text-align: center;
  margin: 0;
  padding: 16px;
  font-size: 32px;
  line-height: 42px;
  color: var(--e-global-color-c4debf2);
}

/* ==========================================================================
   Wishlist Styles (Guardados para mais tarde)
   ========================================================================== */

.bsb-in-wishlist {
  color: var(--e-global-color-67833de) !important;
}

.bsb-in-wishlist svg {
  fill: var(--e-global-color-c4debf2);
  stroke-width: 0;
}

.bsb-single-wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  background: transparent;
  color: var(--bsb-wine-text);
  border: 1px solid var(--bsb-wine-border);
  padding: 12px 20px;
  font-family: var(--bsb-wine-font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  vertical-align: middle;
}

.bsb-single-wishlist-btn:hover {
  border-color: var(--bsb-wine-primary);
  color: var(--bsb-wine-primary);
}

.bsb-single-wishlist-btn.bsb-in-wishlist {
  border-color: var(--bsb-wine-primary);
  background: rgba(138, 43, 62, 0.05);
}

.bsb-single-wishlist-btn svg {
  width: 18px;
  height: 18px;
}

.bsb-loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Wishlist My Account Grid View */
.bsb-wishlist-actions-inline {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
}

.bsb-cart-bottom-tabs .bsb-wishlist-actions-inline .bsb-add-to-cart-btn {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  flex: 1;
  border-radius: 0px;
  background: var(--e-global-color-bd90e6c);
  padding: 14.5px 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--e-global-color-f2f53bb);
}

.bsb-wishlist-actions-inline .bsb-wishlist-btn {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  width: 60px;
  height: 56px;
  border: 0px solid var(--bsb-wine-border);
  background: var(--e-global-color-bd90e6c);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0;
}

.bsb-cart-bottom-tabs .bsb-wishlist-actions-inline .bsb-add-to-cart-btn:hover,
.bsb-cart-bottom-tabs .bsb-wishlist-actions-inline .bsb-wishlist-btn:hover {
  color: var(--e-global-color-f2f53bb);
  background: var(--e-global-color-e38f297);
}

.bsb-wishlist-empty {
  font-family: var(--bsb-wine-font-sans);
  color: var(--bsb-wine-text-light);
  font-size: 1rem;
  padding: 20px 0;
}

/* ==========================================================================
   Single Product Page Overrides
   ========================================================================== */

/* Header Area */
.bsb-single-producer-name {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--e-global-color-e517805);
  /* margin-bottom: 5px; */
}

.woocommerce div.product div.summary .bsb-single-title {
  font-family: var(--bsb-wine-font-serif);
  font-size: 36px;
  color: var(--e-global-color-67833de);
  margin: 0 0 16px 0;
  font-weight: 400;
  line-height: 1.1;
}

.bsb-single-badges {
  margin-bottom: 16px;
  gap: 8px;
}

/* Price & Club Area */
.bsb-single-price-club-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.bsb-single-price .woocommerce-Price-amount {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}

.bsb-single-club-placeholder {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 13px;
  color: var(--e-global-color-c4debf2);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.bsb-club-price-placeholder {
  color: var(--e-global-color-d6d6ec0);
  font-weight: 700;
}

.bsb-info-icon {
  width: 18px;
  height: 18px;
  color: var(--e-global-color-e517805);
}

/* Form Add to cart & Wishlist layout adjustment */
.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--e-global-color-df443a6);
  margin: 0;
}

/* Quantity Input Buttons */
.woocommerce div.product form.cart .quantity {
  display: flex;
  align-items: center;
  /* border: 1px solid var(--bsb-wine-border); */
  border-radius: 0;
  overflow: hidden;
  background: var(--e-global-color-bd90e6c);
  margin: 0 !important;
}

.woocommerce div.product form.cart .quantity .qty {
  width: 56px;
  height: 56px;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 20px;
  padding: 0;
  margin: 0;
  background: transparent;
}

.woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce div.product form.cart .quantity .bsb-qty-minus,
.woocommerce div.product form.cart .quantity .bsb-qty-plus {
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  color: var(--bsb-wine-text);
  font-size: 24px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bsb-list-qty .bsb-qty-minus:hover,
.bsb-list-qty .bsb-qty-plus:hover {
  background: var(--e-global-color-f2f53bb);
}

.woocommerce div.product form.cart .single_add_to_cart_button.button.alt {
  float: none;
  flex: auto;
  height: 56px;
  border: 0;
  border-radius: 0;
  background: var(--e-global-color-31d9a12);
  text-align: left;
  padding: 14px 32px;
}
.woocommerce div.product form.cart .button.alt.bsb-single-wishlist-btn {
  height: 56px;
  width: 56px;
  border-radius: 0;
  background: var(--e-global-color-bd90e6c);
  color: var(--e-global-color-67833de);
}
.woocommerce div.product form.cart::before,
.woocommerce div.product form.cart::after,
button.button.alt.bsb-single-wishlist-btn span {
  display: none;
}

/* Short Description & Temp */
.bsb-single-short-desc {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  line-height: 27.2px;
  color: #000;
  margin-bottom: 25px;
  margin-top: 24px;
  padding: 0 10px;
}

.bsb-single-serving-temp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 40px;
  font-family: var(--e-global-typography-text-font-family);
}

/* Accordions */
.bsb-accordion-wrapper {
  border-top: 1px solid var(--bsb-wine-border);
  margin-bottom: 0;
}

.bsb-accordion-wrapper:last-of-type {
  border-bottom: 1px solid var(--bsb-wine-border);
}

.bsb-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 10px;
  cursor: pointer;
}

.bsb-accordion-wrapper .bsb-accordion-header h3 {
  margin: 0;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 27.2px;
  color: var(--e-global-color-49c3530);
}

.bsb-accordion-arrow {
  transition: transform 0.3s ease;
  color: var(--e-global-color-49c3530);
  display: flex;
}

.bsb-accordion-arrow svg {
  width: 24px;
  height: 24px;
}

.bsb-accordion-wrapper.is-open .bsb-accordion-arrow {
  transform: rotate(180deg);
}

.bsb-accordion-content {
  padding-bottom: 25px;
  display: none;
}

.bsb-accordion-wrapper.is-open .bsb-accordion-content {
  display: block;
  max-height: unset;
}

/* Tech Sheet specific */
.bsb-accordion-wrapper .bsb-accordion-content {
  display: block;
  max-height: 280px;
  overflow: hidden;
  position: relative;
  padding: 0 10px 40px;
}

.bsb-tech-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 80%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 15px;
  z-index: 2;
}

.bsb-tech-read-more-btn {
  color: var(--bsb-wine-text);
  font-size: 16px;
  line-height: 27.2px;
  font-family: var(--e-global-typography-text-font-family);
  border: 1px solid var(--e-global-color-e38f297);
  border-radius: 0;
  height: 56px;
  background: #fff;
  padding: 14px 32px;
}

.bsb-tech-read-more-btn:hover {
  background: #fff;
  color: var(--bsb-wine-text);
  opacity: 0.8;
}

.bsb-tech-accordion:not(.is-half-open) .bsb-tech-overlay {
  display: none;
}

/* Tech List inside Accordion */
.bsb-tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bsb-tech-list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 8px;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 12px;
}

.bsb-tech-list li:last-child {
  border-bottom: none;
}

.grape-icon {
  width: 40px;
  height: 40px;
  background: var(--e-global-color-b024545);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #999;
}

.grape-icon svg {
  width: 24px;
  height: 24px;
}

.bsb-tech-list li p.bsb-tech-item {
  margin: 8px 0 0;
  line-height: 18.7px;
}

.bsb-tech-label {
  color: var(--e-global-color-df443a6);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 500;
}

.bsb-tech-value {
  color: var(--e-global-color-fb541cf);
}

/* Producer Info inside Accordion */
.bsb-prod-acc-title {
  font-family: var(--e-global-typography-text-font-family);
  text-transform: uppercase;
  font-size: 24px;
  color: var(--e-global-color-e517805);
  margin: 0 0 10px 0;
  font-weight: 500;
  letter-spacing: 1.1px;
}

.bsb-prod-acc-desc {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  line-height: 27.2px;
  color: var(--bsb-wine-text);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bsb-prod-acc-desc p {
  margin: 0;
}

.bsb-accordion-wrapper .bsb-accordion-content .bsb-prod-acc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  color: var(--e-global-color-9f07017);
  text-decoration: none;
  line-height: 27.2px;
}

.bsb-prod-acc-link svg {
  width: 16px;
  height: 16px;
}

.bsb-placeholder-text {
  font-family: var(--bsb-wine-font-sans);
  color: var(--bsb-wine-text-light);
  font-size: 0.9rem;
  font-style: italic;
}

.woocommerce div.product {
  margin-bottom: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  float: none;
  width: 100%;
}
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  float: none;
  width: 100%;
  clear: none;
}

.woocommerce div.product[data-elementor-type="product-archive"] {
  display: block;
}

/* Bottom Tabs */
.bsb-single-tabs-section {
  margin-top: 64px;
  padding-top: 16px;
  /* border-top: 1px solid var(--bsb-wine-border); */
  float: none;
  grid-area: 2 / 1 / 3 / 3;
}

.bsb-single-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.bsb-tab-btn {
  background: var(--e-global-color-bd90e6c);
  border: none;
  padding: 14px 16px;
  border-radius: 40px;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  color: var(--e-global-color-67833de);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bsb-tab-btn.active,
.bsb-tab-btn:hover {
  background: var(--bsb-wine-text);
  color: #fff;
}

.bsb-tab-pane {
  display: none;
}

.bsb-tab-pane.active {
  display: block;
}

/* CUSTOM STYLES */

button.bsb-view-toggle {
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--e-global-color-df443a6);
  transition: 0.15s all linear;
}

button.bsb-view-toggle.active,
button.bsb-view-toggle:hover {
  color: var(--e-global-color-d44d2fe);
  background-color: transparent !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "" !important;
  content: "" !important;
  font-size: 0;
  line-height: normal;
  font-weight: 700;
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
  border-right: 6px solid var(--e-global-color-e38f297);
  border-bottom: 6px solid var(--e-global-color-e38f297);
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
  transform: rotate(-45deg);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
  transform: rotate(135deg);
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
  display: none;
}

.swiper-slide {
  height: auto;
}

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
select,
textarea {
  border: 1px solid var(--e-global-color-df443a6);
  border-radius: 0;
}

/* ==========================================================================
   Widget: Mega Menu Producers
   ========================================================================== */
.bsb-mega-menu-producers {
  background: #fff;
  width: 100%;
  font-family: var(--bsb-wine-font-sans);
  padding: 40px 0;
}

.bsb-mmp-columns {
  display: flex;
  width: 100%;
  gap: 24px;
}

.bsb-mmp-col {
  flex: 1;
  /* border-right: 1px solid var(--bsb-wine-border); */
  /* padding: 20px 0; */
  min-height: 446px;
}

.bsb-mmp-col:last-child {
  border-right: none;
}

.bsb-mmp-col .bsb-mmp-col-title {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--e-global-color-408f40e);
  padding: 0 0px 8px 0px;
  font-weight: 400;
  border-bottom: 1px solid var(--e-global-color-e38f297);
}

.bsb-mmp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bsb-mmp-panel {
  display: none;
}

.bsb-mmp-panel.active {
  display: block;
  animation: bsbMmpFadeIn 0.3s ease;
}

@keyframes bsbMmpFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bsb-mmp-item {
  display: block;
}

.bsb-mmp-item .bsb-mmp-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  color: var(--e-global-color-67833de);
  text-decoration: none;
  transition:
    background-color 0.2s,
    color 0.2s;
  font-size: 16px;
}

.bsb-mmp-item.active > .bsb-mmp-link,
.bsb-mmp-link:hover {
  background-color: var(--e-global-color-bd90e6c, #f3f0e7);
  color: var(--e-global-color-67833de);
}

.bsb-mmp-count {
  font-size: 12px;
  color: var(--e-global-color-67833de);
  line-height: 18.7px;
  letter-spacing: 1.1px;
  background: var(--e-global-color-65d0ca5);
  padding: 4px 8px;
  border-radius: 20px;
}

.bsb-mmp-col-regions,
.bsb-mmp-col-producers {
  visibility: hidden;
}

.bsb-mega-menu-producers.has-active-country .bsb-mmp-col-regions,
.bsb-mega-menu-producers.has-active-region .bsb-mmp-col-producers {
  display: block;
  animation: bsbMmpFadeIn 0.3s ease;
  visibility: unset;
}

.bsb-mmp-footer {
  padding: 24px 0px 0;
  border-top: 1px solid var(--e-global-color-65d0ca5);
  font-size: 16px;
  color: var(--e-global-color-c4debf2);
  text-align: left;
  line-height: 27.2px;
}

@media (max-width: 768px) {
  .bsb-mmp-columns {
    flex-direction: column;
  }
  .bsb-mmp-col {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--bsb-wine-border);
  }
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 32px;
  padding: 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  .woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--e-global-color-c4debf2);
  line-height: 20.15px;
  font-weight: 400;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  .woocommerce-breadcrumb
  a {
  color: var(--e-global-color-c4debf2);
  font-size: 13px;
  line-height: 20.15px;
  font-weight: 400;
}

nav.woocommerce-breadcrumb,
nav.woocommerce-breadcrumb a {
  color: var(--e-global-color-c4debf2);
  font-size: 13px;
  line-height: 20.15px;
  font-family: var(--e-global-typography-text-font-family);
}
