/*************************************************
 * FORMAVIS SHOP · Archive, Kategorien, Karten,
 * Sortierung, Filterpanel, Related Slider
 *************************************************/

/* ============================================
   1) SHOP-WRAPPER & STANDARD BUTTONS
   ============================================ */

/* In den Warenkorb – etwas kleinere Schrift im Grid */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product_type_variable,
.woocommerce ul.products li.product .product_type_simple {
  font-size: 0.82rem !important;
  line-height: 1.1 !important;
}

/* Allgemeine Shop-Hintergründe (falls nötig) */
.formavis-shop-archive {
  background: transparent;
}


/* ============================================
   2) SHOP – WILLKOMMENSBEREICH (Haupt-Shopseite)
   ============================================ */

.formavis-shop-welcome {
  padding: 2.8rem 1.5rem 1.8rem;
  margin: 0 auto 1rem;
  max-width: 1200px;

  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.06),
    rgba(255, 180, 70, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.4rem;

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.formavis-shop-welcome-inner {
  text-align: center;
}

.formavis-shop-welcome h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--fv-text);
}

.formavis-shop-welcome p {
  font-size: 1rem;
  color: var(--fv-text-soft);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}


/* ============================================
   3) KATEGORIE-HEADER (eigener Header)
   ============================================ */

.formavis-category-header {
  padding: 2.4rem 1.5rem 1.5rem;
  margin: 0 auto 0.6rem;
  max-width: 1200px;
}

.formavis-category-header-inner {
  background: var(--fv-bg-elevated);
  border-radius: 1.4rem;
  border: 1px solid var(--fv-border);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(15, 16, 20, 0.9);
  padding: 1.6rem 1.8rem;
  text-align: left;
}

.fv-cat-kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(44, 156, 124, 0.12);
  border: 1px solid rgba(44, 156, 124, 0.6);
  color: var(--fv-text-soft);
  margin-bottom: 0.7rem;
}

.fv-cat-title {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
  color: var(--fv-text);
}

.fv-cat-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--fv-text-soft);
}

/* Mobile etwas kompakter */
@media (max-width: 768px) {
  .formavis-category-header {
    padding: 1.8rem 1.1rem 1.2rem;
  }
  .formavis-category-header-inner {
    padding: 1.3rem 1.2rem;
  }
  .fv-cat-title {
    font-size: 1.5rem;
  }
}

/* Standard Woo-Kategorieheader ausblenden – wir nutzen unseren eigenen */
.tax-product_cat .woocommerce-products-header,
.tax-product_cat .woocommerce-products-header__title,
.tax-product_cat .term-description,
.tax-product_cat h1.page-title,
.tax-product_cat h1.entry-title {
  display: none !important;
}


/* ============================================
   4) SHOP / KATEGORIE – CONTAINER & GRID
   ============================================ */

/* Kategorie-Archive: Container breiter machen */
body.tax-product_cat .site-content .ast-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

/* Seitenleisten auf Kategorie-Archiven ausblenden */
body.tax-product_cat .widget-area,
body.tax-product_cat .secondary,
body.tax-product_cat .ast-right-sidebar,
body.tax-product_cat .ast-left-sidebar {
  display: none !important;
}

/* Content-Bereich volle Breite */
body.tax-product_cat .content-area,
body.tax-product_cat .primary {
  width: 100% !important;
  float: none !important;
}

/* Produktgrid in Kategorien wie auf Shop-Startseite */
body.tax-product_cat ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)) !important;
  gap: 1.5rem !important;
}

/* Produktkarte flexibel */
body.tax-product_cat ul.products li.product {
  width: 100% !important;
  max-width: none !important;
  flex: 1 1 auto !important;
}

/* Astra-Reset für Kategorie-Archive */
body.tax-product_cat .ast-woocommerce-container ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
}

/* Sterne nur bei echten Bewertungen zeigen (klass: fv-no-rating via PHP/JS setzen) */
.woocommerce ul.products li.product.fv-no-rating .star-rating,
.woocommerce ul.products li.product.fv-no-rating .woocommerce-product-rating {
  display: none !important;
}


/* ============================================
   5) SORTIERUNG, RESULT COUNT & PP-PER-PAGE
   ============================================ */

/* Sortieren-nach Label (falls eigenes Label genutzt wird) */
.fv-sorting-label {
  display: none !important;
}

/* Sortierleiste */
.fv-sorting-bar {
  display: flex !important;
  align-items: center !important;
  gap: 0.9rem !important;
  flex-wrap: nowrap !important;
  margin-top: 1rem !important;
}

/* Sortier-Select im Premium-Button-Stil */
.fv-sorting-bar .woocommerce-ordering {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

.fv-sorting-bar .woocommerce-ordering select.orderby {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background-image: linear-gradient(135deg, var(--fv-primary), var(--fv-secondary)) !important;
  border-radius: 999px !important;
  border: 1px solid rgba(44, 156, 124, 0.85) !important;

  color: #F9FAFB !important;
  padding: 0.55rem 2.4rem 0.55rem 1.4rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  line-height: 1.2;

  cursor: pointer !important;
  min-width: 260px !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.85) !important;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-image 0.18s ease,
    border-color 0.18s ease !important;
}

.fv-sorting-bar .woocommerce-ordering select.orderby:hover {
  background-image: linear-gradient(135deg, var(--fv-accent), var(--fv-primary)) !important;
  border-color: rgba(180, 111, 66, 0.9) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.95) !important;
}

/* Pfeil im Sortier-Select */
.fv-sorting-bar .woocommerce-ordering::after {
  content: "▾";
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #F9FAFB;
  pointer-events: none;
  opacity: 0.85;
}

/* Ergebnisanzeige */
.woocommerce-result-count.fv-result-count {
  color: #F9FAFB;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  text-align: left;
}

.fv-result-count-top {
  display: block;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.fv-result-count-bottom {
  display: block;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Artikel pro Seite (oben) */
.fv-ppp-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  width: 100%;
  margin: 0.8rem 0 1.4rem;
  padding-left: 0.1rem;
  font-size: 0.85rem;
}

.fv-ppp-label {
  color: #F9FAFB;
  font-size: 0.83rem;
  font-weight: 500;
  margin-right: 0.35rem;
  white-space: nowrap;
}

.fv-ppp-button {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(44, 156, 124, 0.8);
  color: #F9FAFB;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-image 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.8);
}

.fv-ppp-button:hover {
  background-image: linear-gradient(135deg, var(--fv-primary), var(--fv-secondary));
  border-color: rgba(180, 111, 66, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.95);
}

.fv-ppp-button.fv-ppp-button--active {
  background-image: linear-gradient(135deg, var(--fv-primary), var(--fv-secondary));
  border-color: rgba(180, 111, 66, 0.9);
  color: #F9FAFB;
}

/* Artikel pro Seite (unten bei Pagination) */
.fv-ppp-bar-bottom {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.35rem;
  margin-top: 0.6rem !important;
  margin-bottom: 0 !important;
}

.fv-ppp-bar-bottom .fv-ppp-label {
  font-size: 0.9rem !important;
  margin-right: 0.4rem !important;
}

@media (max-width: 768px) {
  .fv-ppp-bar-bottom {
    justify-content: center !important;
    text-align: center;
  }
}


/* ============================================
   6) FILTER-BUTTON & OFF-CANVAS PANEL
   ============================================ */

/* Filter-Button in der Sortierleiste */
.fv-filter-toggle {
  position: relative;
  background-image: linear-gradient(135deg, var(--fv-primary), var(--fv-secondary)) !important;
  border-radius: 999px !important;
  border: 1px solid rgba(44, 156, 124, 0.85) !important;

  color: #F9FAFB !important;
  padding: 0.55rem 1.4rem 0.55rem 2.1rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  cursor: pointer !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85) !important;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-image 0.18s ease,
    border-color 0.18s ease !important;
}

.fv-filter-toggle:hover {
  background-image: linear-gradient(135deg, var(--fv-accent), var(--fv-primary)) !important;
  border-color: rgba(180, 111, 66, 0.9) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.95) !important;
}

/* Filter-Icon im Button */
.fv-filter-toggle::before {
  content: "≡";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #F9FAFB;
  opacity: 0.85;
}

/* Overlay hinter Filterpanel */
.fv-filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
  z-index: 999;
}

.fv-filter-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Off-Canvas Panel rechts */
.fv-filter-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 100%);
  max-width: 100%;
  background: var(--fv-bg-elevated, #05060a);
  box-shadow: -0.75rem 0 2.5rem rgba(0, 0, 0, 0.85);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.fv-filter-panel.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

body.fv-filter-open {
  overflow: hidden;
}

/* Panel-Header */
.fv-filter-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    90deg,
    rgba(0, 255, 136, 0.08),
    transparent
  );
  backdrop-filter: blur(8px);
}

.fv-filter-panel-header h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fv-text, #ffffff);
}

/* Close Button */
.fv-filter-close {
  border: none;
  background: rgba(255, 255, 255, 0.06);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--fv-muted, #bbbbbb);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fv-filter-close:hover {
  background: rgba(0, 255, 136, 0.25);
  color: var(--fv-accent, #00ff88);
}

/* Panel Body */
.fv-filter-panel-body {
  padding: 1rem 1.25rem 1.5rem;
  overflow-y: auto;
}

/* Widgets im Panel */
.fv-filter-widget {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fv-filter-widget:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fv-filter-widget-title {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fv-muted, #b6b8c5);
  margin: 0 0 0.5rem;
}

/* Fullwidth Panel auf Mobile */
@media (max-width: 768px) {
  .fv-filter-panel {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Filter-Header Aktionen (z.B. "Alle Filter löschen") */
.fv-filter-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fv-filter-reset {
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  color: var(--fv-text-soft, #cbd5e1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}

.fv-filter-reset:hover {
  background: linear-gradient(
    135deg,
    var(--fv-accent, #00ff88),
    #ffb347
  );
  color: #020617 !important;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.35);
}


/* ============================================
   7) KATEGORIEN-ACCORDION IM FILTERPANEL
   ============================================ */

.fv-filter-panel ul.product-categories > li.cat-parent > a,
.fv-filter-panel ul.wc-block-product-categories-list > li.has-children > a {
  position: relative;
  padding-right: 1.2rem;
}

.fv-filter-panel ul.product-categories > li.cat-parent > a::after,
.fv-filter-panel ul.wc-block-product-categories-list > li.has-children > a::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--fv-muted, #b6b8c5);
  transition: transform 0.18s ease;
}

.fv-filter-panel li.fv-cat-parent-collapsed > a::after {
  transform: translateY(-50%) rotate(-90deg);
}

.fv-filter-panel ul.product-categories li,
.fv-filter-panel ul.wc-block-product-categories-list li {
  margin-bottom: 0.3rem;
}

.fv-filter-panel ul.product-categories a,
.fv-filter-panel ul.wc-block-product-categories-list a {
  font-size: 0.9rem;
  color: var(--fv-text-soft, #c7c9d6);
}

.fv-filter-panel ul.product-categories a:hover,
.fv-filter-panel ul.wc-block-product-categories-list a:hover {
  color: var(--fv-accent, #00ff88);
}


/* ============================================
   8) EIGENER PREISFILTER IM PANEL
   ============================================ */

.fv-filter-price-widget .fv-price-filter-fields {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fv-filter-price-widget .fv-price-field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--fv-text-soft, #c7c9d6);
}

.fv-filter-price-widget .fv-price-field label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--fv-text-soft, #9ca3af);
}

.fv-filter-price-widget .fv-price-field .fv-price-input-wrap {
  position: relative;
}

.fv-filter-price-widget .fv-price-field .fv-price-input-wrap::after {
  content: "€";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fv-text-soft, #c7c9d6);
  font-size: 0.9rem;
  pointer-events: none;
  opacity: 0.85;
}

.fv-filter-price-widget .fv-price-field input[type="number"] {
  width: 100%;
  height: 2.6rem;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0 2.2rem 0 0.8rem;
  color: var(--fv-text, #f9fafb);
  font-size: 1rem;
  outline: none;
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fv-filter-price-widget .fv-price-field input[type="number"]:focus {
  border-color: var(--fv-accent, #00ff88);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.4);
}

/* Button "Preis filtern" */
.fv-price-filter-button {
  width: 100%;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--fv-accent, #00ff88) 0%,
    #ffb347 55%,
    #ffe08a 100%
  );
  color: #000 !important;
  border-radius: 999px !important;
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.8);
  transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.fv-price-filter-button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.9);
}


/* ============================================
   9) RELATED PRODUCTS · SLIDER DELUXE
   ============================================ */

/* Wrapper */
.single-product .related {
  position: relative;
  margin-top: 2.4rem;
}

/* Titel + Hinweis */
.single-product .related > h2 {
  margin-bottom: 0.3rem;
}

.fv-related-hint {
  font-size: 0.9rem;
  margin: -0.3rem 0 1rem;
  color: var(--fv-accent, #00ff88);
  opacity: 0.85;
  font-weight: 500;
}

/* UL als Slider */
.single-product .related ul.products {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;

  gap: 1.2rem;
  padding: 0.25rem 0 1rem;
  margin: 0 !important;
}

/* Kartenbreite */
.single-product .related ul.products li.product {
  scroll-snap-align: start;
  flex: 0 0 24%;
  max-width: 24%;
  width: auto !important;
  margin: 0 !important;
}

/* Innenabstand der Card leicht erhöhen */
.single-product .related ul.products li.product .astra-shop-summary-wrap {
  padding: 1rem 1.1rem;
}

/* Scrollbar dezent */
.single-product .related ul.products::-webkit-scrollbar {
  height: 4px;
}
.single-product .related ul.products::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
}
.single-product .related ul.products::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.6);
  border-radius: 999px;
}

/* Responsive Breiten */
@media (max-width: 1200px) {
  .single-product .related ul.products li.product {
    flex: 0 0 28%;
    max-width: 28%;
  }
}
@media (max-width: 1024px) {
  .single-product .related ul.products li.product {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 768px) {
  .single-product .related ul.products li.product {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
@media (max-width: 480px) {
  .single-product .related ul.products li.product {
    flex: 0 0 85%;
    max-width: 85%;
  }
}

/* Pfeile */
.fv-related-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  cursor: pointer;

  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: var(--fv-accent, #00ff88);
  font-size: 1.2rem;

  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.25);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease;
  backdrop-filter: blur(4px);

  opacity: 0;
  pointer-events: none;
}

/* Nur anzeigen, wenn wirklich horizontal gescrollt werden kann (per JS Klasse) */
.single-product .related.fv-related-has-scroll .fv-related-arrow {
  opacity: 0.6;
  pointer-events: auto;
}

/* Hover-Effekt */
.single-product .related.fv-related-has-scroll:hover .fv-related-arrow {
  opacity: 1;
}

.fv-related-arrow:hover {
  background: rgba(0, 255, 136, 0.22);
  border-color: var(--fv-accent, #00ff88);
  box-shadow: 0 12px 30px rgba(0, 255, 136, 0.45);
  color: #00ff88;
  transform: translateY(-50%) translateY(-1px);
}

/* Linker / rechter Pfeil */
.fv-related-arrow--left {
  left: -10px;
}
.fv-related-arrow--right {
  right: -10px;
}

/* Mobile: Pfeile näher an den Slider */
@media (max-width: 768px) {
  .fv-related-arrow--left {
    left: 4px;
  }
  .fv-related-arrow--right {
    right: 4px;
  }
}

/* Pagination Dots */
.fv-related-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.fv-related-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.7);
  cursor: pointer;
  transition:
    width 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
  opacity: 0.75;
}

.fv-related-dot.is-active {
  width: 18px;
  background: var(--fv-accent, #00ff88);
  border-color: var(--fv-accent, #00ff88);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.65);
  opacity: 1;
}