/*
 * TEMA COPA DO MUNDO 2026 - RUMO AO HEXA (v2 Premium)
 * Inspirado no design Copa Grupo K
 * Core: Verde #009739 | Amarelo #FEDD00 | Azul #002776
 */

:root {
  --hexa-green: #009739;
  --hexa-green-light: #28a745;
  --hexa-green-dark: #006b28;
  --hexa-yellow: #FEDD00;
  --hexa-yellow-light: #ffe866;
  --hexa-blue: #002776;
  --hexa-blue-light: #1a4a9e;
  --hexa-white: #FFFFFF;
  --hexa-gold: #FFD700;
  --hexa-bg: #0a0e17;
  --hexa-bg-card: #111827;
  --hexa-bg-dark: #070a12;
  --hexa-border: rgba(0, 151, 57, 0.15);
  --hexa-border-hover: rgba(254, 221, 0, 0.3);
  --hexa-glow-green: 0 0 30px rgba(0, 151, 57, 0.15);
  --hexa-glow-yellow: 0 0 30px rgba(254, 221, 0, 0.1);
  --hexa-glass-bg: rgba(17, 24, 39, 0.85);
  --hexa-glass-border: rgba(0, 151, 57, 0.12);
}

/* ---- Base ---- */
body.hexa-theme {
  position: relative;
}

body.hexa-theme::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0, 151, 57, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(254, 221, 0, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 39, 118, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Custom Scrollbar ---- */
body.hexa-theme::-webkit-scrollbar {
  width: 8px;
}
body.hexa-theme::-webkit-scrollbar-track {
  background: var(--hexa-bg);
}
body.hexa-theme::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--hexa-green), var(--hexa-blue));
  border-radius: 4px;
}
body.hexa-theme::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--hexa-green-light), var(--hexa-yellow));
}

/* ---- Glass Navbar ---- */
body.hexa-theme .navbar.bg-dark1 {
  background: var(--hexa-glass-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hexa-glass-border) !important;
}

body.hexa-theme .navbar.bg-dark1 .navbar-brand {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

body.hexa-theme .navbar.bg-dark1 .navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hexa-green), var(--hexa-yellow));
  border-radius: 1px;
}

body.hexa-theme .darkernavhover .nav-item:hover .nav-link {
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  border-radius: 6px;
}

/* ---- Announcement Bar ---- */
.hexa-announce {
  background: linear-gradient(90deg, var(--hexa-green), var(--hexa-blue), var(--hexa-green-dark));
  background-size: 200% 100%;
  animation: hexa-gradient-shift 6s ease infinite;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1031;
  border-bottom: 2px solid var(--hexa-yellow);
}

@keyframes hexa-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hexa-announce a {
  color: var(--hexa-yellow);
  text-decoration: underline;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hexa-announce .close-announce {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: opacity 0.2s;
}

.hexa-announce .close-announce:hover {
  opacity: 1;
}

.hexa-announce-divider {
  opacity: 0.3;
  margin: 0 10px;
  font-weight: 300;
}

/* ---- Stripe Dividers ---- */
.hexa-stripe {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hexa-green), var(--hexa-yellow), var(--hexa-blue), var(--hexa-green));
  background-size: 300% 100%;
  animation: hexa-stripe-flow 8s linear infinite;
  border: none;
  margin: 0;
  position: relative;
  z-index: 1;
}

@keyframes hexa-stripe-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.hexa-stripe-blue {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--hexa-blue), var(--hexa-green), var(--hexa-blue));
  border: none;
  margin: 0;
}

/* ---- Hero Section (Premium) ---- */
.hexa-hero {
  text-align: center;
  padding: 70px 20px 50px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.hexa-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0, 151, 57, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(254, 221, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: hexa-hero-pulse 8s ease-in-out infinite;
}

@keyframes hexa-hero-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hexa-hero .subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  color: #fff;
  padding: 8px 28px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 151, 57, 0.3);
}

.hexa-hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hexa-white);
  text-shadow: 0 0 60px rgba(0, 151, 57, 0.2);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hexa-hero h1 .yellow {
  color: var(--hexa-yellow);
  text-shadow: 0 0 40px rgba(254, 221, 0, 0.3);
}

.hexa-hero h1 .green {
  color: var(--hexa-green-light);
}

.hexa-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  pointer-events: none;
}

.hexa-hero > *:not(.hexa-hero-overlay) {
  position: relative;
  z-index: 2;
}

.hexa-hero p {
  font-size: 1.1rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}

/* ---- Premium Countdown ---- */
.hexa-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 25px 0;
  position: relative;
  z-index: 1;
}

.hexa-countdown-item {
  text-align: center;
  background: var(--hexa-glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hexa-glass-border);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 80px;
  box-shadow: var(--hexa-glow-green);
  transition: all 0.3s ease;
}

.hexa-countdown-item:hover {
  transform: translateY(-4px);
  border-color: var(--hexa-border-hover);
  box-shadow: var(--hexa-glow-yellow);
}

.hexa-countdown-item .number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--hexa-white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hexa-countdown-item .label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hexa-yellow);
  margin-top: 6px;
  font-weight: 700;
}

/* ---- Premium Product Cards ---- */
body.hexa-theme .card {
  background: var(--hexa-bg-card);
  border: 1px solid var(--hexa-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.hexa-theme .card.card-listing:hover {
  border-color: var(--hexa-border-hover);
  box-shadow: 0 8px 32px rgba(0, 151, 57, 0.15), 0 0 0 1px rgba(254, 221, 0, 0.05);
  transform: translateY(-6px);
}

body.hexa-theme .card.card-listing:active {
  transform: translateY(-2px) scale(0.99);
}

body.hexa-theme .card .card-img-top {
  transition: transform 0.5s ease;
}

body.hexa-theme .card.card-listing:hover .card-img-top {
  transform: scale(1.05);
}

body.hexa-theme .card .card-body {
  position: relative;
  z-index: 1;
}

body.hexa-theme .card .card-title {
  color: var(--hexa-white);
  font-weight: 700;
  font-size: 0.95rem;
}

body.hexa-theme .card .card-text {
  color: #9ca3af;
  font-size: 0.85rem;
}

body.hexa-theme .card .card-footer {
  background: transparent;
  border-top: 1px solid var(--hexa-border);
}

/* ---- Product Badge "Selecao" ---- */
.hexa-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---- Premium Buttons ---- */
body.hexa-theme .btn-success {
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

body.hexa-theme .btn-success:hover {
  background: linear-gradient(135deg, var(--hexa-green-dark), var(--hexa-green));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 151, 57, 0.35);
}

body.hexa-theme .btn-primary {
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-blue));
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

body.hexa-theme .btn-primary:hover {
  background: linear-gradient(135deg, var(--hexa-blue), var(--hexa-green));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 39, 118, 0.3);
}

body.hexa-theme .btn-outline-secondary {
  border: 2px solid var(--hexa-border);
  color: var(--hexa-green-light);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

body.hexa-theme .btn-outline-secondary:hover {
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 151, 57, 0.25);
}

/* ---- Type Badge ---- */
.typebadge span {
  font-size: 9px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  width: 80px;
  display: block;
  position: absolute;
  top: 12px;
  right: -4px;
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  color: #fff;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ---- Page Header ---- */
body.hexa-theme .page-header {
  border-left: 4px solid var(--hexa-green);
  padding-left: 15px;
}

/* ---- Category Hero (Premium) ---- */
.hexa-cat-hero {
  background: linear-gradient(135deg, var(--hexa-blue) 0%, #001a4d 50%, var(--hexa-green-dark) 100%);
  padding: 50px 20px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hexa-cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(254, 221, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(0, 151, 57, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hexa-cat-hero::after {
  content: '★';
  position: absolute;
  bottom: 10px;
  right: 30px;
  font-size: 4rem;
  color: rgba(254, 221, 0, 0.06);
  pointer-events: none;
}

.hexa-cat-hero h1 {
  position: relative;
  color: #fff;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hexa-cat-hero .cat-count {
  position: relative;
  display: inline-block;
  background: rgba(254, 221, 0, 0.12);
  color: var(--hexa-yellow);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(254, 221, 0, 0.15);
}

/* ---- Item Page Specific ---- */
body.hexa-theme .item-header {
  border-bottom: 2px solid var(--hexa-border);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

body.hexa-theme .item-header h1 {
  color: var(--hexa-white);
  font-weight: 800;
}

body.hexa-theme .item-price {
  color: var(--hexa-green-light);
  font-weight: 900;
  font-size: 1.8rem;
}

body.hexa-theme .item-price .currency {
  color: var(--hexa-yellow);
}

body.hexa-theme .nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--hexa-yellow);
  color: var(--hexa-yellow) !important;
  background: var(--hexa-bg-card);
}

body.hexa-theme .nav-tabs .nav-link {
  color: #9ca3af;
  border-radius: 8px 8px 0 0;
}

/* ---- Section Titles ---- */
.hexa-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hexa-section-title h2,
.hexa-section-title .h4 {
  margin: 0;
  white-space: nowrap;
  color: var(--hexa-white);
  font-weight: 800;
}

.hexa-section-title .title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--hexa-green), transparent);
}

.hexa-section-title .title-star {
  color: var(--hexa-yellow);
  font-size: 0.8rem;
  animation: hexa-spin-star 4s linear infinite;
}

@keyframes hexa-spin-star {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---- Banner Slot ---- */
.hexa-banner-slot {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--hexa-blue), #001a4d);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 39, 118, 0.2);
}

.hexa-banner-slot img {
  width: 100%;
  height: auto;
  display: block;
}

.hexa-banner-slot .banner-placeholder {
  padding: 40px 20px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hexa-banner-slot .banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.hexa-banner-slot .banner-content h3 {
  color: var(--hexa-yellow);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hexa-banner-slot .banner-content p {
  color: #fff;
  font-size: 0.9rem;
  max-width: 400px;
  opacity: 0.9;
}

/* ---- Similar Products header ---- */
.hexa-similar-header {
  border-left: 4px solid var(--hexa-green);
  padding-left: 15px;
  margin-bottom: 20px;
}

/* ---- Premium Footer ---- */
body.hexa-theme footer {
  border-top: 2px solid var(--hexa-border);
  padding-top: 30px;
  margin-top: 50px;
  position: relative;
}

body.hexa-theme footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hexa-green), var(--hexa-yellow), var(--hexa-blue), var(--hexa-green));
}

body.hexa-theme footer .hexa-footer-brand {
  font-weight: 800;
  color: var(--hexa-yellow);
}

.hexa-footer-stripe {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hexa-green), var(--hexa-yellow), var(--hexa-blue), var(--hexa-green));
  background-size: 300% 100%;
  animation: hexa-stripe-flow 8s linear infinite;
  margin-bottom: 25px;
  border-radius: 2px;
}

/* ---- DSP Button Premium ---- */
.dsp-btn, .dsp-btn:visited {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  border: none;
  color: #fff;
  text-align: center;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 151, 57, 0.25);
}

.dsp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 151, 57, 0.4);
  color: #fff;
  text-decoration: none;
}

/* ---- Jumbotron Premium ---- */
body.hexa-theme .jumbotron.bg-light {
  background: var(--hexa-bg-card) !important;
  border: 1px solid var(--hexa-border);
  border-radius: 12px;
}

/* ---- Modal Premium ---- */
body.hexa-theme .modal-content {
  background: var(--hexa-bg-card);
  border: 1px solid var(--hexa-border);
  border-radius: 16px;
}

body.hexa-theme .modal-header {
  background: var(--hexa-bg-dark);
  border-bottom: 1px solid var(--hexa-border);
  border-radius: 16px 16px 0 0;
}

body.hexa-theme .modal-header .close {
  color: var(--hexa-yellow);
  text-shadow: none;
  opacity: 1;
}

body.hexa-theme .modal-body {
  background: var(--hexa-bg-card);
  color: #d1d5db;
}

body.hexa-theme .modal-footer {
  background: var(--hexa-bg-dark);
  border-top: 1px solid var(--hexa-border);
  border-radius: 0 0 16px 16px;
}

/* ---- List Group Premium ---- */
body.hexa-theme .list-group-item {
  background: var(--hexa-bg-card);
  border: 1px solid var(--hexa-border);
  color: #d1d5db;
}

body.hexa-theme .list-group-item.active {
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}

body.hexa-theme .list-group-item-action:hover {
  background: rgba(0, 151, 57, 0.08);
  color: var(--hexa-green-light);
  border-color: var(--hexa-border);
}

/* ---- Table Premium ---- */
body.hexa-theme .table {
  color: #d1d5db;
}

body.hexa-theme .table-striped tbody tr:nth-of-type(odd) {
  background: rgba(0, 151, 57, 0.03);
}

body.hexa-theme .table td, 
body.hexa-theme .table th {
  border-top: 1px solid var(--hexa-border);
}

/* ---- Pagination Premium ---- */
body.hexa-theme .page-link {
  background: var(--hexa-bg-card);
  border-color: var(--hexa-border);
  color: #d1d5db;
  transition: all 0.2s ease;
}

body.hexa-theme .page-link:hover {
  background: rgba(0, 151, 57, 0.1);
  color: var(--hexa-green-light);
  border-color: var(--hexa-green);
}

body.hexa-theme .page-item.active .page-link {
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark));
  border-color: transparent;
  color: #fff;
}

/* ---- Dropdown Premium ---- */
body.hexa-theme .dropdown-menu {
  background: var(--hexa-glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--hexa-glass-border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body.hexa-theme .dropdown-menu .dropdown-item {
  color: #d1d5db;
  border-radius: 6px;
  margin: 2px 4px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

body.hexa-theme .dropdown-menu .dropdown-item:hover {
  background: rgba(0, 151, 57, 0.1);
  color: var(--hexa-green-light);
}

/* ---- Input/Search Premium ---- */
body.hexa-theme .form-control {
  background: var(--hexa-bg-dark);
  border: 1px solid var(--hexa-border);
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

body.hexa-theme .form-control:focus {
  border-color: var(--hexa-green);
  box-shadow: 0 0 0 3px rgba(0, 151, 57, 0.15);
  background: var(--hexa-bg-dark);
  color: #fff;
}

body.hexa-theme .header-search {
  background: var(--hexa-bg-dark);
  border: 1px solid var(--hexa-border);
}

body.hexa-theme .header-searchcustombtn {
  background: var(--hexa-bg-dark);
  border: 1px solid var(--hexa-border);
  color: var(--hexa-green-light);
  transition: all 0.3s ease;
}

body.hexa-theme .header-searchcustombtn:hover {
  background: var(--hexa-green);
  color: #fff;
  border-color: var(--hexa-green);
}

/* ---- Alert Premium ---- */
body.hexa-theme .alert-primary {
  background: rgba(0, 151, 57, 0.08);
  border: 1px solid var(--hexa-border);
  color: #d1d5db;
  border-radius: 8px;
}

body.hexa-theme .alert-success {
  background: rgba(0, 151, 57, 0.1);
  border: 1px solid rgba(0, 151, 57, 0.2);
  color: var(--hexa-green-light);
  border-radius: 8px;
}

body.hexa-theme .alert-danger {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.15);
  color: #fca5a5;
  border-radius: 8px;
}

/* ---- Badge Premium ---- */
body.hexa-theme .badge-primary {
  background: linear-gradient(135deg, var(--hexa-green), var(--hexa-green-dark)) !important;
  color: #fff !important;
}

/* ---- Animation Classes ---- */
@keyframes hexa-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hexa-pulse {
  animation: hexa-pulse 2s ease-in-out infinite;
}

@keyframes hexa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hexa-float {
  animation: hexa-float 3s ease-in-out infinite;
}

@keyframes hexa-particle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

@keyframes hexa-particle-star {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
}

@keyframes hexa-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hexa-fade-in {
  animation: hexa-fade-in-up 0.6s ease forwards;
}

.hexa-fade-in-delay-1 {
  animation-delay: 0.1s;
}
.hexa-fade-in-delay-2 {
  animation-delay: 0.2s;
}
.hexa-fade-in-delay-3 {
  animation-delay: 0.3s;
}

/* ---- Glass Card Utility ---- */
.hexa-glass {
  background: var(--hexa-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hexa-glass-border);
  border-radius: 12px;
}

/* ---- Gold Accent Text ---- */
.hexa-text-gold {
  color: var(--hexa-gold);
}

.hexa-text-green {
  color: var(--hexa-green-light);
}

/* ---- Widget Premium ---- */
body.hexa-theme .widget-small .icon {
  background: var(--hexa-bg-card);
  border: 1px solid var(--hexa-border);
  color: var(--hexa-green-light);
  border-radius: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hexa-hero {
    padding: 40px 15px 30px;
  }
  .hexa-hero h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  .hexa-countdown {
    gap: 8px;
  }
  .hexa-countdown-item {
    min-width: 60px;
    padding: 8px 12px;
  }
  .hexa-countdown-item .number {
    font-size: 1.5rem;
  }
  .hexa-cat-hero h1 {
    font-size: 1.5rem;
  }
  .hexa-cat-hero {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .hexa-countdown {
    gap: 6px;
  }
  .hexa-countdown-item {
    min-width: 50px;
    padding: 6px 8px;
  }
  .hexa-countdown-item .number {
    font-size: 1.2rem;
  }
  .hexa-hero h1 {
    font-size: 1.4rem;
  }
}

/* ===== BANNER CARROSSEL ===== */
.hexa-banner-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hexa-banner-carousel .carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hexa-banner-carousel .carousel-slide {
  flex: 0 0 auto;
  width: 100%;
}

.hexa-banner-carousel .carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.hexa-banner-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hexa-banner-carousel .carousel-btn:hover {
  background: var(--hexa-green);
  box-shadow: 0 0 20px rgba(0,151,57,0.4);
}

.hexa-banner-carousel .carousel-btn.prev { left: 12px; }
.hexa-banner-carousel .carousel-btn.next { right: 12px; }

.hexa-banner-carousel .carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hexa-banner-carousel .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s;
}

.hexa-banner-carousel .carousel-dot.active {
  background: var(--hexa-green);
  border-color: var(--hexa-green);
  box-shadow: 0 0 10px rgba(0,151,57,0.6);
  width: 24px;
  border-radius: 5px;
}

.hexa-banner-carousel .carousel-dot:hover {
  background: var(--hexa-yellow);
  border-color: var(--hexa-yellow);
}

@media (max-width: 768px) {
  .hexa-banner-carousel .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .hexa-banner-carousel .carousel-dot {
    width: 8px;
    height: 8px;
  }
  .hexa-banner-carousel .carousel-dot.active {
    width: 18px;
  }
}

/* ===== Coupon Badge ===== */
.coupon-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 16px;
  line-height: 1;
  z-index: 5;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  cursor: help;
  transition: transform .2s;
}
.coupon-badge:hover { transform: scale(1.15); }

/* ===== Glassmorphism Cards ===== */
.card {
  background: rgba(20, 25, 35, 0.65) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: all .3s ease;
}
.card:hover {
  background: rgba(30, 36, 48, 0.8) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.card-footer {
  background: transparent !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}
