/* ─── Prevent horizontal overflow on mobile ──────────────────────────────────── */

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ─── Global Header ─────────────────────────────────────────────────────────── */

.global-header-liquid {
  text-align: center;
  margin-bottom: 4rem;
}

.global-header-liquid h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 950;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 1rem;
}

.global-header-liquid p {
  color: var(--cl-accent);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 800;
  font-size: 0.85rem;
}

/* ─── Product Cards ──────────────────────────────────────────────────────────── */

.liquid-product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px 10px 50px 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none !important;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.liquid-product-card:hover {
  border-radius: 10px 50px 10px 50px;
  background: rgba(var(--cl-accent-rgb), 0.05);
  border-color: rgba(var(--cl-accent-rgb), 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.liquid-product-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: rotate(35deg);
  transition: all 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.liquid-product-card:hover::after {
  left: 200%;
}

/* ─── Product Image ──────────────────────────────────────────────────────────── */

.liquid-product-image-wrapper {
  position: relative;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: var(--product-card-image-aspect-ratio);
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease;
}

.liquid-product-card:hover .liquid-product-image-wrapper {
  border-radius: 8px 40px 8px 40px;
}

.liquid-product-image {
  width: 100%;
  height: 100%;
  object-fit: var(--product-image-fit);
  transition: transform 0.6s ease;
}

.liquid-product-card:hover .liquid-product-image {
  transform: scale(1.1);
}

/* ─── Product Badges ─────────────────────────────────────────────────────────── */

.liquid-product-badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  z-index: 10;
  pointer-events: none;
}

.liquid-product-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

/* ─── Product Info ───────────────────────────────────────────────────────────── */

.liquid-product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.liquid-product-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.liquid-product-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.liquid-product-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--cl-accent);
}

.liquid-product-price-slash {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.liquid-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.liquid-product-stock {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.liquid-product-stock i {
  font-size: 0.8rem;
  color: var(--cl-accent);
}

.liquid-product-btn {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
}

.liquid-product-card:hover .liquid-product-btn {
  background: var(--cl-accent);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(var(--cl-accent-rgb), 0.3);
  transform: translateY(-2px);
}

/* ─── Shared Liquid Header ───────────────────────────────────────────────────── */

.liquid-header {
  text-align: left;
  margin-bottom: 5rem;
  border-left: 5px solid var(--cl-accent);
  padding-left: 2rem;
}

.liquid-header h2 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -3px;
  margin: 0;
}

.liquid-header h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -3px;
}

.liquid-header p {
  color: var(--cl-accent);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .liquid-header {
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
}

/* ─── Policy Section ─────────────────────────────────────────────────────────── */

.policy-section-liquid {
  padding-top: 10rem !important;
  padding-bottom: 5rem;
}

@media (max-width: 991.98px) {
  .policy-section-liquid {
    padding-top: 8rem !important;
  }
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */

.liquid-footer {
  position: relative;
  background: rgba(var(--cl-background-secondary-rgb), 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 0 0;
  overflow: hidden;
}

.liquid-footer-glow {
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(var(--cl-accent-rgb), 0.18) 0%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.8;
}

.liquid-footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.visitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.visitor-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px #22c55e;
}

.visitor-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #22c55e;
  border-radius: 50%;
  animation: visitor-pulse 2s infinite;
}

@keyframes visitor-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.visitor-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.visitor-count {
  color: var(--cl-accent);
}

.liquid-footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  position: relative;
}

.liquid-footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--cl-accent);
}

.liquid-footer .nav-link {
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 500;
  padding: 0.5rem 0 !important;
  transition: all 0.3s ease;
  display: inline-block;
}

.liquid-footer .nav-link:hover {
  color: var(--cl-accent) !important;
}

.liquid-footer .nav-link i {
  transition: all 0.3s ease;
}

.liquid-footer .nav-link.discord:hover   i { color: #5865F2 !important; filter: drop-shadow(0 0 8px #5865F2); }
.liquid-footer .nav-link.telegram:hover  i { color: #26A5E4 !important; filter: drop-shadow(0 0 8px #26A5E4); }
.liquid-footer .nav-link.instagram:hover i { color: #E4405F !important; filter: drop-shadow(0 0 8px #E4405F); }
.liquid-footer .nav-link.tiktok:hover    i { color: #00f2ea !important; filter: drop-shadow(0 0 8px #00f2ea); }
.liquid-footer .nav-link.youtube:hover   i { color: #FF0000 !important; filter: drop-shadow(0 0 8px #FF0000); }

.liquid-footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.liquid-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.liquid-footer-copyright a {
  color: var(--cl-accent);
  text-decoration: none;
  font-weight: 600;
}

/* ─── Product Page ───────────────────────────────────────────────────────────── */

.liquid-product-container {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.liquid-product-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.liquid-variant-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 15px !important;
  padding: 1.25rem !important;
  transition: all 0.4s ease !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.liquid-variant-card.active {
  background: rgba(var(--cl-accent-rgb), 0.1) !important;
  border-color: var(--cl-accent) !important;
  box-shadow: 0 0 20px rgba(var(--cl-accent-rgb), 0.2);
}

.liquid-variant-card:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ── Out of stock variant — dim entire row ── */
.liquid-variant-card[disabled] {
  opacity: 0.38 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.liquid-variant-card[disabled] .liquid-price-tag {
  color: rgba(255,255,255,0.3) !important;
  text-shadow: none !important;
}

.liquid-price-tag {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cl-accent);
  text-shadow: 0 0 20px rgba(var(--cl-accent-rgb), 0.3);
}

/* ── Description tab — underline style ── */
.liquid-tab-btn {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 0.6rem 0.25rem !important;
  margin-right: 1.5rem !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: rgba(255, 255, 255, 0.35) !important;
  transition: all 0.2s ease !important;
}

.liquid-tab-btn:hover {
  color: rgba(255, 255, 255, 0.7) !important;
  border-bottom-color: rgba(255,255,255,0.2) !important;
}

.liquid-tab-btn.active {
  background: transparent !important;
  color: #fff !important;
  border-bottom-color: var(--cl-accent) !important;
  box-shadow: none !important;
}

/* ── Rating bar under product title ── */
.ppage-rating-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.ppage-stars {
  display: flex;
  gap: 2px;
}

.ppage-stars svg {
  width: 15px;
  height: 15px;
  fill: #ffd84d;
}

.ppage-rating-score {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffd84d;
  letter-spacing: -0.01em;
}

.ppage-rating-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

.ppage-rating-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

.liquid-image-main {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.liquid-thumb {
  border-radius: 12px !important;
  overflow: hidden;
  border: 2px solid transparent !important;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.liquid-thumb.active {
  border-color: var(--cl-accent) !important;
  opacity: 1;
  transform: translateY(-3px);
}

.liquid-stats-item {
  background: rgba(var(--cl-accent-rgb), 0.05);
  border-left: 3px solid var(--cl-accent);
  padding: 0.75rem 1rem;
  border-radius: 0 12px 12px 0;
  font-weight: 600;
}

/* ─── Status Page ────────────────────────────────────────────────────────────── */

.liquid-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1rem;
}

.liquid-status-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(10px);
  border-color: rgba(var(--cl-accent-rgb), 0.3);
}

.liquid-status-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.liquid-status-group-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 3rem 0 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--cl-accent);
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
  .liquid-product-container {
    padding: 1.5rem;
    border-radius: 20px;
  }
}

/* ─── Overrides ──────────────────────────────────────────────────────────────── */

.card.p-4 {
  background: rgba(var(--cl-background-secondary-rgb), 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

button.w-100.mt-4.btn.btn-outline-primary {
  color: #ffffff;
  border-color: #ffffff;
}

.navbar-component {
  top: var(--announcement-bar-height, 0px);
}

/* Hero Glow Enhancement */
.global-header-liquid {
  position: relative;
}

.global-header-liquid::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at center,
    rgba(88, 101, 242, 0.20) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.global-header-liquid > * {
  position: relative;
  z-index: 1;
}

.navbar-brand img {
  height: 155px !important;
  width: auto !important;
}

.navbar {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.navbar-brand {
  gap: 10px !important;
}

.navbar-brand span,
.navbar-brand .site-title,
.navbar-brand .brand-text {
  display: none !important;
}

/* Announcement bar mobile fix */
@media (max-width: 767px) {
  .announcement-bar,
  .announcement-bar-liquid,
  [class*="announcement"] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.75rem;
  }
}

.payment-name {
  display: none;
}

.payment-icon-wrapper {
  width: 120px !important;
  height: 120px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  padding: 18px !important;
}

.payment-icon-wrapper img {
  max-height: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: none !important;
}

.payment-item {
  min-width: unset !important;
  width: 160px !important;
  height: 160px !important;
  padding: 20px !important;
  border-radius: 26px !important;
}

.hero-title {
  max-width: 760px !important;
  margin: 0 0 1.05rem 0 !important;
  font-size: clamp(2rem, 2.85vw, 3.05rem) !important;
  font-weight: 700 !important;
  line-height: 1.06 !important;
  letter-spacing: -1.2px !important;
  color: #ffffff !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-title-line {
  display: block !important;
}

.hero-title-accent {
  color: #8566ff !important;
}

.hero-title-nowrap {
  white-space: nowrap !important;
}

.hero-subtitle {
  max-width: 620px !important;
  margin-bottom: 2rem !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: clamp(0.95rem, 0.9vw, 1rem) !important;
  line-height: 1.6 !important;
}

@media (max-width: 1399.98px) {
  .hero-title {
    font-size: clamp(1.8rem, 2.9vw, 2.9rem) !important;
    max-width: 920px !important;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    max-width: 100% !important;
    font-size: clamp(1.9rem, 6vw, 2.8rem) !important;
    line-height: 1.08 !important;
  }

  .hero-title-nowrap {
    white-space: normal !important;
  }

  .hero-subtitle {
    max-width: 100% !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem !important;
    letter-spacing: -1px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-title-single {
    white-space: normal;
  }
}

/* 1) REDUCE HERO VISUAL WEIGHT */
.hero-section::before {
  background: linear-gradient(
    135deg,
    rgba(6, 11, 26, 0.92) 0%,
    rgba(6, 11, 40, 0.86) 50%,
    rgba(6, 11, 26, 0.78) 100%
  ) !important;
}

.hero-glow--tr,
.hero-glow--bl,
.hero-image-glow {
  opacity: 0.65 !important;
}

/* 2) PRODUCT CARD HOVER (CLEAR CLICK FEEDBACK) */
.liquid-product-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.liquid-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(133, 102, 255, 0.35) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(133, 102, 255, 0.15);
}

/* 3) NAVBAR ACTIVE STATE (CLEAR LOCATION) */
.navbar-center .nav-link.active,
.navbar-center .nav-link[aria-current="page"] {
  background: rgba(133, 102, 255, 0.18);
  color: #ffffff !important;
  border-radius: 10px;
  padding: 6px 14px;
  box-shadow: 0 4px 14px rgba(133, 102, 255, 0.25);
}

/* 4) DISCORD BUTTON (BETTER CONTRAST) */
.hero-btn--discord {
  background: rgba(133, 102, 255, 0.10);
  border: 1px solid rgba(133, 102, 255, 0.45);
  color: #d6ccff;
}

.hero-btn--discord:hover {
  background: rgba(133, 102, 255, 0.18);
  border-color: rgba(133, 102, 255, 0.8);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(133, 102, 255, 0.25);
}

/* ─── Compact 2-col variant grid ─────────────────────────────────────────────── */

.variant-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.liquid-variant-compact {
  padding: 0.85rem 0.9rem !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.variant-compact-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.variant-compact-desc {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}

.variant-compact-stock {
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.variant-compact-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--cl-accent);
  margin-top: 2px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.variant-compact-slash {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 400px) {
  .variant-grid-compact {
    grid-template-columns: 1fr;
  }
}

/* ─── Blog Index Header H1 Fix ─────────────────────────────────────────────── */

.liquid-blog-header h1,
.liquid-blog-header h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(2.7rem, 5vw, 5rem) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}

.liquid-blog-header {
  max-width: 820px !important;
  margin: 0 auto 3rem !important;
  text-align: center !important;
}

.liquid-blog-header .blog-subtext {
  margin-top: 0.9rem !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: clamp(0.95rem, 1.4vw, 1.06rem) !important;
  line-height: 1.6 !important;
}

/* Product page CTA trust/conversion tweaks */
.liquid-product-btn[type="submit"] {
  box-shadow: 0 0 24px rgba(132, 99, 255, 0.45);
  transform: translateY(0);
  transition: all 0.2s ease;
}

.liquid-product-btn[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(132, 99, 255, 0.65);
}

.liquid-product-btn:not([type="submit"]) {
  opacity: 0.88;
}

.product-trust-line {
  line-height: 1.7;
}

@media (max-width: 576px) {
  .product-trust-line {
    font-size: 0.75rem;
  }

  .product-trust-line .mx-2 {
    margin-left: 0.35rem !important;
    margin-right: 0.35rem !important;
  }
}