/*
 * Gia Dung 16 — Eco Living Guide
 * Handcrafted component styles (BEM) that complement the Tailwind utility
 * build in src/style.css. This file is NEVER touched by `npm run build`.
 *
 * Design tokens (mirrors src/input.css):
 *   --color-primary:  #7c8ff0
 *   --color-secondary:#c99bea
 *   --color-accent:   #3fa677
 *   --color-bg:       #f6f7fc
 *   --color-surface:  #ffffff
 *   --color-border:   #e3e6f2
 *   --color-text:     #1f2430
 *   --color-muted:    #6b7280
 *   --font-display:   "Outfit"
 *   --font-body:      "Source Sans 3"
 *   --brand-gradient: linear-gradient(225deg, #aac6ff 0%, #b3cbff 25%, #dacdff 50%, #ffcbf8 75%, #ffc6ef 100%)
 */

:root {
  --brand-gradient: linear-gradient(225deg, #aac6ff 0%, #b3cbff 25%, #dacdff 50%, #ffcbf8 75%, #ffc6ef 100%);
}

/* ==========================================================================
   Top bar
   ========================================================================== */

.gd6-topbar {
  background: var(--brand-gradient);
  color: #2a2450;
}

.gd6-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.gd6-topbar__eco {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.gd6-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.gd6-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.gd6-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.gd6-logo__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-text);
  line-height: 1.1;
}

.gd6-logo__sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.gd6-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.gd6-nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.gd6-nav__list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gd6-nav__list a:hover {
  color: var(--color-primary);
}

@media (max-width: 63.99rem) {
  .gd6-nav {
    display: none;
  }
}

.gd6-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.gd6-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.gd6-icon-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.gd6-mobile-toggle {
  display: none;
}

@media (max-width: 63.99rem) {
  .gd6-mobile-toggle {
    display: inline-flex;
  }
}

.gd6-tag-rail {
  border-top: 1px dashed var(--color-border);
  background: var(--color-bg);
  overflow: hidden;
}

.gd6-tag-rail__inner {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.65rem 0;
  scrollbar-width: none;
}

.gd6-tag-rail__inner::-webkit-scrollbar {
  display: none;
}

.eco-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.eco-tag:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.gd6-search-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease;
  padding: 0 0;
}

.gd6-search-panel.open {
  max-height: 6rem;
  opacity: 1;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}

.gd6-drawer {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.gd6-drawer.open {
  max-height: 28rem;
  opacity: 1;
}

.gd6-drawer a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.gd6-drawer a:hover {
  background: var(--color-bg);
}

/* ==========================================================================
   Badges
   ========================================================================== */

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(63, 166, 119, 0.12);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.eco-badge .material-symbols-outlined {
  font-size: 15px !important;
}

.eco-badge--lg {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #2a2450;
}

.eco-badge--lg .material-symbols-outlined {
  font-size: 18px !important;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.gd6-hero {
  background: linear-gradient(180deg, #eef1ff 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.gd6-hero__inner {
  padding: 3rem 0;
}

.gd6-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 63.99rem) {
  .gd6-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gd6-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.gd6-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.gd6-hero__title a {
  color: var(--color-text);
  text-decoration: none;
}

.gd6-hero__title a:hover {
  color: var(--color-primary);
}

.gd6-hero__excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 1.75rem;
  max-width: 42rem;
}

.gd6-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(124, 143, 240, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gd6-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(124, 143, 240, 0.45);
}

.gd6-hero__media {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(124, 143, 240, 0.25);
}

.gd6-hero__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gd6-hero__media:hover img {
  transform: scale(1.03);
}

.gd6-hero__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.gd6-hero__mini {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.6rem;
  border-radius: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gd6-hero__mini:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.gd6-hero__mini-thumb {
  width: 100%;
  height: 5.5rem;
  border-radius: 0.65rem;
  overflow: hidden;
}

.gd6-hero__mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gd6-hero__mini h4 {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.gd6-section {
  padding: 3.5rem 0;
}

.gd6-section--tint {
  background: var(--color-bg);
}

.gd6-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gd6-section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.gd6-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--color-text);
}

/* ==========================================================================
   Drag rail
   ========================================================================== */

.gd6-drag-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.gd6-drag-scroll::-webkit-scrollbar {
  height: 6px;
}

.gd6-drag-scroll::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 999px;
}

.gd6-drag-scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gd6-drag-scroll.is-dragging a {
  pointer-events: none;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.gd6-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gd6-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31, 36, 48, 0.1);
  border-color: var(--color-primary);
}

.gd6-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-bg);
}

.gd6-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gd6-card:hover .gd6-card__thumb img {
  transform: scale(1.06);
}

.gd6-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}

.gd6-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.gd6-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gd6-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.gd6-card__meta {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ==========================================================================
   Tips grid
   ========================================================================== */

.gd6-tip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 63.99rem) {
  .gd6-tip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 39.99rem) {
  .gd6-tip-grid {
    grid-template-columns: 1fr;
  }
}

.gd6-tip-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  padding: 1.6rem 1.4rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gd6-tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(31, 36, 48, 0.08);
}

.gd6-tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--brand-gradient);
  color: #2a2450;
  margin-bottom: 1rem;
}

.gd6-tip-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.gd6-tip-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Reuse grid
   ========================================================================== */

.gd6-reuse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 63.99rem) {
  .gd6-reuse-grid {
    grid-template-columns: 1fr;
  }
}

.gd6-reuse-card {
  position: relative;
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.gd6-reuse-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gd6-reuse-card:hover img {
  transform: scale(1.06);
}

.gd6-reuse-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(0deg, rgba(20, 25, 20, 0.85) 0%, rgba(20, 25, 20, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gd6-reuse-card__overlay h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.gd6-reuse-card__overlay .eco-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ==========================================================================
   Case study
   ========================================================================== */

.gd6-case {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(31, 36, 48, 0.07);
}

.gd6-case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 63.99rem) {
  .gd6-case__grid {
    grid-template-columns: 1fr;
  }
}

.gd6-case__media {
  min-height: 20rem;
}

.gd6-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gd6-case__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.gd6-case__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gd6-case__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
}

.gd6-case__title a {
  color: var(--color-text);
  text-decoration: none;
}

.gd6-case__title a:hover {
  color: var(--color-primary);
}

.gd6-case__excerpt {
  color: var(--color-muted);
  line-height: 1.7;
}

.gd6-case__stats {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px dashed var(--color-border);
  border-bottom: 1px dashed var(--color-border);
}

.gd6-case__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gd6-case__stat b {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-accent);
}

.gd6-case__stat span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */

.gd6-newsletter {
  background: var(--brand-gradient);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  color: #2a2450;
}

.gd6-newsletter h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.gd6-newsletter p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.gd6-newsletter form {
  display: flex;
  gap: 0.6rem;
  max-width: 26rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.gd6-newsletter input {
  flex: 1;
  min-width: 10rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: none;
  font-size: 0.88rem;
  outline: none;
}

.gd6-newsletter button {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--color-text);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gd6-newsletter button:hover {
  opacity: 0.85;
}

/* Sidebar / single variant (compact) */
aside .gd6-newsletter {
  padding: 1.75rem;
  text-align: left;
}

aside .gd6-newsletter form {
  flex-direction: column;
  max-width: none;
}

/* ==========================================================================
   Notice
   ========================================================================== */

.gd6-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(63, 166, 119, 0.08);
  border: 1px solid rgba(63, 166, 119, 0.25);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--color-text);
}

.gd6-notice .material-symbols-outlined {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ==========================================================================
   Sidebar blocks
   ========================================================================== */

.gd6-side-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.gd6-side-block__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.gd6-side-block__title .material-symbols-outlined {
  color: var(--color-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.gd6-footer {
  background: #1f2035;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
  margin-top: 2rem;
}

.gd6-footer__heading {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.gd6-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.gd6-footer__list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.gd6-footer__list a:hover {
  color: #fff;
}

.gd6-footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.gd6-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.gd6-footer__social a:hover {
  background: var(--color-primary);
}

.gd6-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   Prose (single/page content)
   ========================================================================== */

.prose img,
.prose video {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.75rem 0;
  box-shadow: 0 14px 30px rgba(31, 36, 48, 0.1);
}

.prose iframe,
.prose .wp-embed,
.prose .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 1rem;
  margin: 1.75rem 0;
  border: none;
}

.prose blockquote {
  background: var(--color-bg);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 1rem 1rem 0;
  padding: 1.25rem 1.5rem;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  color: var(--color-text);
}

.prose a {
  color: var(--color-primary);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.gd6-pagination,
.page-numbers {
  display: flex;
}

.gd6-pagination {
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.gd6-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gd6-pagination .page-numbers:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.gd6-pagination .page-numbers.current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.gd6-pagination .page-numbers.dots {
  border: none;
  background: none;
}

/* ==========================================================================
   Back to top button
   ========================================================================== */

.gd6-btt {
  position: fixed;
  z-index: 50;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(124, 143, 240, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem) scale(0.9);
  transition: all 0.3s ease;
}

.gd6-btt.is-visible,
.gd6-btt.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.gd6-btt:hover {
  background: var(--color-secondary);
}
