:root {
  /* Colors */
  --bg-main: #0B0E14; /* Deep dark background */
  --bg-panel: #151A23; /* Slightly lighter for panels */
  --bg-card: #1C222E; /* Lighter for cards */
  --accent-primary: #A182E8; /* GhostKey Purple */
  --accent-hover: #b69df0;
  --text-main: #FFFFFF;
  --text-muted: #9CA3AF;
  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  
  /* Layout */
  --sidebar-width-pc: 80px;
  --sidebar-width-expanded: 240px;
  --dock-height-mobile: 70px;
  --border-radius-lg: 20px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  
  /* Effects */
  --glass-bg: rgba(21, 26, 35, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 0 15px rgba(161, 130, 232, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html, body {
  height: 100vh;
  overflow: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  display: flex;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
}

/* Global Layout (Grid Dashboard) */
.dashboard-container {
  display: grid;
  --right-panel-width: 300px;
  grid-template-columns: var(--sidebar-width-pc) 1fr var(--right-panel-width);
  width: 100%;
  height: 100vh;
  transition: grid-template-columns 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-container.friends-panel-collapsed {
  --right-panel-width: 0px;
}

.dashboard-container.no-right-panel {
  grid-template-columns: var(--sidebar-width-pc) 1fr;
}

.dashboard-container.no-right-panel.friends-panel-collapsed {
  grid-template-columns: var(--sidebar-width-pc) 1fr;
}
/* --- GooeyNav (PC) --- */
.sidebar {
  background-color: var(--bg-panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  border-right: 1px solid var(--glass-border);
  position: relative;
  z-index: 100;
}

.brand-logo {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.nav-item {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  transition: color 0.3s ease;
  font-size: 1.2rem;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--text-main);
}

/* Gooey Indicator (PC) */
.nav-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background-color: var(--accent-primary);
  border-radius: var(--border-radius-sm);
  z-index: 1;
  transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-glow);
  pointer-events: none;
}

/* --- Top Bar --- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  background: var(--bg-main);
  z-index: 90;
}

.search-bar {
  background-color: var(--bg-panel);
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 300px;
  border: 1px solid var(--glass-border);
}

.search-bar input {
  background: none;
  border: none;
  color: var(--text-main);
  outline: none;
  width: 100%;
}

.search-bar i {
  color: var(--text-muted);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.action-btn {
  background-color: var(--bg-panel);
  border: none;
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.action-btn:hover {
  background-color: var(--bg-card);
  color: var(--accent-primary);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: var(--bg-panel);
  transition: background 0.2s;
}

.user-profile:hover {
  background-color: var(--bg-card);
}

.user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-card);
  flex-shrink: 0;
}

#user-name {
  font-weight: bold;
  font-size: 0.9rem;
  min-width: 80px;
}

.user-profile--loading {
  pointer-events: none;
  opacity: 0.85;
}



/* --- Loading States & Ghost Loader (Uiverse.io by BlackisPlay) --- */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 2rem;
  color: var(--text-muted);
}

.loading-state--inline {
  min-height: 280px;
}

.loading-text {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hero-skeleton {
  width: 100%;
  min-height: 350px;
  border-radius: var(--border-radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ghost-loader {
  position: relative;
  scale: 0.8;
}

.ghost-red {
  animation: ghostUpNDown infinite 0.5s;
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-template-rows: repeat(14, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  grid-template-areas:
    "a1  a2  a3  a4  a5  top0  top0  top0  top0  a10 a11 a12 a13 a14"
    "b1  b2  b3  top1 top1 top1 top1 top1 top1 top1 top1 b12 b13 b14"
    "c1 c2 top2 top2 top2 top2 top2 top2 top2 top2 top2 top2 c13 c14"
    "d1 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 d14"
    "e1 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 e14"
    "f1 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 top3 f14"
    "top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4"
    "top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4"
    "top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4"
    "top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4"
    "top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4"
    "top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4 top4"
    "st0 st0 an4 st1 an7 st2 an10 an10 st3 an13 st4 an16 st5 st5"
    "an1 an2 an3 an5 an6 an8 an9 an9 an11 an12 an14 an15 an17 an18";
}

@keyframes ghostUpNDown {
  0%, 49% { transform: translateY(0); }
  50%, 100% { transform: translateY(-10px); }
}

.ghost-top0, .ghost-top1, .ghost-top2, .ghost-top3, .ghost-top4,
.ghost-st0, .ghost-st1, .ghost-st2, .ghost-st3, .ghost-st4, .ghost-st5 {
  background-color: #ef4444;
}

.ghost-top0 { grid-area: top0; }
.ghost-top1 { grid-area: top1; }
.ghost-top2 { grid-area: top2; }
.ghost-top3 { grid-area: top3; }
.ghost-top4 { grid-area: top4; }
.ghost-st0 { grid-area: st0; }
.ghost-st1 { grid-area: st1; }
.ghost-st2 { grid-area: st2; }
.ghost-st3 { grid-area: st3; }
.ghost-st4 { grid-area: st4; }
.ghost-st5 { grid-area: st5; }

.ghost-an1, .ghost-an18 { animation: ghostFlicker0 infinite 0.5s; }
.ghost-an2, .ghost-an17, .ghost-an3, .ghost-an16, .ghost-an4, .ghost-an15 { animation: ghostFlicker1 infinite 0.5s; }
.ghost-an6, .ghost-an12, .ghost-an7, .ghost-an13, .ghost-an8, .ghost-an11 { animation: ghostFlicker0 infinite 0.5s; }
.ghost-an9, .ghost-an10 { animation: ghostFlicker1 infinite 0.5s; }

.ghost-an1 { grid-area: an1; }
.ghost-an2 { grid-area: an2; }
.ghost-an3 { grid-area: an3; }
.ghost-an4 { grid-area: an4; }
.ghost-an5 { grid-area: an5; }
.ghost-an6 { grid-area: an6; }
.ghost-an7 { grid-area: an7; }
.ghost-an8 { grid-area: an8; }
.ghost-an9 { grid-area: an9; }
.ghost-an10 { grid-area: an10; }
.ghost-an11 { grid-area: an11; }
.ghost-an12 { grid-area: an12; }
.ghost-an13 { grid-area: an13; }
.ghost-an14 { grid-area: an14; }
.ghost-an15 { grid-area: an15; }
.ghost-an16 { grid-area: an16; }
.ghost-an17 { grid-area: an17; }
.ghost-an18 { grid-area: an18; }

@keyframes ghostFlicker0 {
  0%, 49% { background-color: #ef4444; }
  50%, 100% { background-color: transparent; }
}

@keyframes ghostFlicker1 {
  0%, 49% { background-color: transparent; }
  50%, 100% { background-color: #ef4444; }
}

.ghost-eye {
  width: 40px;
  height: 50px;
  position: absolute;
  top: 30px;
  left: 10px;
}

.ghost-eye::before {
  content: "";
  background-color: white;
  width: 20px;
  height: 50px;
  transform: translateX(10px);
  display: block;
  position: absolute;
}

.ghost-eye::after {
  content: "";
  background-color: white;
  width: 40px;
  height: 30px;
  transform: translateY(10px);
  display: block;
  position: absolute;
}

.ghost-eye1 {
  left: auto;
  right: 30px;
}

.ghost-pupil {
  width: 20px;
  height: 20px;
  background-color: #3b82f6;
  position: absolute;
  top: 50px;
  left: 10px;
  z-index: 1;
  animation: ghostEyesMovement infinite 3s;
}

.ghost-pupil1 {
  left: auto;
  right: 50px;
}

@keyframes ghostEyesMovement {
  0%, 49% { transform: translateX(0); }
  50%, 99% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

.ghost-shadow {
  background-color: black;
  width: 140px;
  height: 140px;
  position: absolute;
  border-radius: 50%;
  transform: rotateX(80deg);
  filter: blur(20px);
  top: 80%;
  animation: ghostShadowMovement infinite 0.5s;
}

@keyframes ghostShadowMovement {
  0%, 49% { opacity: 0.5; }
  50%, 100% { opacity: 0.2; }
}

/* --- Main Content Area --- */
.main-content {
  padding: 0 2rem 2rem 2rem;
  overflow-y: auto;
  height: 100vh;
}

/* Hero Section */
.hero-banner {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-tag {
  background-color: var(--danger);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hero-price {
  font-size: 1.5rem;
  color: var(--accent-primary);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--glass-bg);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Horizontal Scroll Sections */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.horizontal-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
}
.horizontal-scroll::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* Product Cards */
.product-card {
  min-width: 280px;
  background-color: var(--bg-panel);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
  position: relative;
  text-decoration: none;
  color: var(--text-main);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img-wrapper {
  width: 100%;
  height: 150px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: color 0.3s;
  z-index: 10;
}

.wishlist-btn.active {
  color: var(--danger);
}

.stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-primary);
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: bold;
  z-index: 10;
}

.product-title {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 5px;
}

.product-price {
  color: var(--accent-primary);
  font-weight: bold;
}

/* --- Right Panel --- */
.right-panel {
  background-color: var(--bg-panel);
  border-left: 1px solid var(--glass-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100vh;
  overflow: hidden;
  position: relative;
  min-width: 0;
  transition: border-color 0.35s ease;
}

.dashboard-container.friends-panel-collapsed .right-panel {
  border-left-color: transparent;
  padding: 0;
}

.right-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 268px;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE/Edge */
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.right-panel__inner::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.dashboard-container.friends-panel-collapsed .right-panel__inner {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.panel-collapse-btn {
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 52px;
  border-radius: 14px 0 0 14px;
  border: 1px solid var(--glass-border);
  border-right: none;
  background: var(--bg-panel);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.panel-collapse-btn:hover {
  color: var(--accent-primary);
  background: var(--bg-card);
  box-shadow: var(--shadow-glow);
}

.dashboard-container.friends-panel-collapsed .panel-collapse-btn {
  left: auto;
  right: 0;
  border-radius: 14px 0 0 14px;
  border-right: none;
  border-left: 1px solid var(--glass-border);
  transform: translateY(-50%) translateX(0);
}

.dashboard-container.friends-panel-collapsed .panel-collapse-btn i {
  transform: rotate(180deg);
}

.friends-panel-tab {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 14px 8px;
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  border-right: none;
  border-radius: 12px 0 0 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  z-index: 95;
  gap: 8px;
  align-items: center;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.friends-panel-tab i {
  writing-mode: horizontal-tb;
  font-size: 1rem;
}

.friends-panel-tab:hover {
  color: var(--accent-primary);
  background: var(--bg-card);
  box-shadow: var(--shadow-glow);
}

.dashboard-container.friends-panel-collapsed .friends-panel-tab {
  display: flex;
}

.dashboard-container.friends-panel-collapsed .panel-collapse-btn {
  display: none;
}

.panel-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-title {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: normal;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: var(--border-radius-sm);
  transition: background 0.2s;
  cursor: pointer;
}

.list-item:hover {
  background-color: var(--bg-card);
}

.list-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-icon img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

.list-info {
  flex: 1;
}

.list-name {
  font-weight: bold;
  font-size: 0.9rem;
}

.list-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Mobile Dock & Menu --- */
.mobile-dock {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 10px 20px;
  gap: 15px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  align-items: center;
}

.dock-hamburger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.dock-hamburger input {
  display: none;
}

.dock-hamburger svg {
  height: 2.2rem;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-hamburger .line {
  fill: none;
  stroke: var(--text-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke 0.2s ease;
}

.dock-hamburger .line-top-bottom {
  stroke-dasharray: 12 63;
}

.dock-hamburger:hover .line {
  stroke: var(--accent-primary);
}

.dock-hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.dock-hamburger input:checked + svg .line {
  stroke: var(--accent-primary);
}

.dock-hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.35s ease;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  left: 50%;
  bottom: calc(var(--dock-height-mobile) + 36px);
  transform: translate(-50%, 110%);
  width: min(92vw, 360px);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translate(-50%, 0);
}

.mobile-menu__title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  padding: 0 0.5rem;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 0.75rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  background: var(--bg-card);
  color: var(--accent-primary);
}

.mobile-menu__link i {
  width: 20px;
  text-align: center;
  color: var(--accent-primary);
}

body.mobile-menu-open {
  overflow: hidden;
}

/* --- Product Page Buttons (Uiverse) --- */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

/* From Uiverse.io by vinodjangid07 - reward-btn */
.reward-btn {
  width: 100%;
  min-width: 140px;
  height: 48px;
  background-color: #101218;
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.IconContainer {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.IconContainer svg {
  width: 40%;
  z-index: 3;
}
.box-top {
  transition: all 0.3s;
}
.reward-btn .text {
  width: auto;
  padding-left: 8px;
  height: 100%;
  font-size: 14px;
  color: #6a8ef6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
}
.reward-btn:hover .IconContainer .box-top {
  transform: translateY(-5px);
}
.reward-btn:hover {
  background-color: #202531;
}
.reward-btn:hover .coin {
  transform: translateY(-5px);
  transition-delay: 0.2s;
}
.coin {
  width: 25%;
  height: 25%;
  background-color: #e4d61a;
  position: absolute;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 1;
  border: 2px solid #ffe956;
  margin-top: 4px;
}
.reward-btn.is-active {
  background-color: #202531;
  border-color: #6a8ef6;
  box-shadow: 0 0 15px rgba(106, 142, 246, 0.4);
}

/* From Uiverse.io by fthisilak - pay-btn */
.pay-btn {
  position: relative;
  width: 100%;
  height: 50px;
  background-color: var(--accent-primary, #6A8EF6);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pay-btn .btn-text {
  z-index: 2;
  transition: all 0.3s ease;
}

.pay-btn .icon-container {
  position: absolute;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  z-index: 2;
}

.pay-btn .icon {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

.pay-btn .card-icon,
.pay-btn .payment-icon,
.pay-btn .dollar-icon,
.pay-btn .check-icon {
  opacity: 0;
  transform: scale(0.5);
}

.pay-btn .default-icon {
  opacity: 1;
  transform: scale(1);
}

.pay-btn:hover {
  background-color: var(--accent-hover, #5577e0);
}

.pay-btn:hover .default-icon {
  opacity: 0;
  transform: scale(0.5);
}

.pay-btn:hover .dollar-icon {
  opacity: 1;
  transform: scale(1);
}

.btn-gift-gradient {
  position: relative;
  width: 100%;
  min-height: 44px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.btn-gift-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 10px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gift-gradient::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
  border-radius: 8px;
}

.btn-gift-gradient:hover::after {
  filter: blur(30px);
}

.btn-gift-gradient:hover::before {
  transform: rotate(-180deg);
}

.btn-gift-gradient:active::before {
  scale: 0.7;
}

.btn-gift-gradient.is-active {
  color: #40c9ff;
  box-shadow: 0 0 24px rgba(64, 201, 255, 0.35);
}

.btn-gift-gradient:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-buy-stars {
  background: linear-gradient(30deg, #000 35%, #ea8b19 73%);
  position: relative;
  padding: 17px 45px;
  font-size: 20px;
  font-weight: 500;
  color: white;
  border: 3px solid #ea8b19;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  cursor: pointer;
  overflow: visible;
}

.btn-buy-stars:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-buy-stars .star-1,
.btn-buy-stars .star-2,
.btn-buy-stars .star-3,
.btn-buy-stars .star-4,
.btn-buy-stars .star-5,
.btn-buy-stars .star-6 {
  position: absolute;
  fill: #ea8b19;
  filter: drop-shadow(0 0 0 #ea8b19);
  z-index: -5;
  pointer-events: none;
}

.btn-buy-stars .star-1 {
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.btn-buy-stars .star-2 {
  top: 45%;
  left: 45%;
  width: 15px;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.btn-buy-stars .star-3 {
  top: 40%;
  left: 40%;
  width: 5px;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.btn-buy-stars .star-4 {
  top: 20%;
  left: 40%;
  width: 8px;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.btn-buy-stars .star-5 {
  top: 25%;
  left: 45%;
  width: 15px;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.btn-buy-stars .star-6 {
  top: 5%;
  left: 50%;
  width: 5px;
  transition: all 0.8s ease;
}

.btn-buy-stars:hover:not(:disabled) {
  background: #000;
  color: #ea8b19;
  box-shadow: 0 0 50px #ea8b19;
}

.btn-buy-stars:hover:not(:disabled) .star-1 {
  top: -110%;
  left: -60%;
  width: 30px;
  filter: drop-shadow(0 0 10px #ea8b19);
  z-index: 2;
}

.btn-buy-stars:hover:not(:disabled) .star-2 {
  top: -45%;
  left: 0%;
  width: 20px;
  filter: drop-shadow(0 0 10px #ea8b19);
  z-index: 2;
}

.btn-buy-stars:hover:not(:disabled) .star-3 {
  top: 55%;
  left: 15%;
  width: 11px;
  filter: drop-shadow(0 0 10px #ea8b19);
  z-index: 2;
}

.btn-buy-stars:hover:not(:disabled) .star-4 {
  top: 45%;
  left: 85%;
  width: 15px;
  filter: drop-shadow(0 0 10px #ea8b19);
  z-index: 2;
}

.btn-buy-stars:hover:not(:disabled) .star-5 {
  top: 25%;
  left: 140%;
  width: 25px;
  filter: drop-shadow(0 0 10px #ea8b19);
  z-index: 2;
}

.btn-buy-stars:hover:not(:disabled) .star-6 {
  top: -5%;
  left: 60%;
  width: 15px;
  filter: drop-shadow(0 0 10px #ea8b19);
  z-index: 2;
}

.btn-buy-stars__box {
  width: 100%;
  transition: 0.5s linear;
  position: relative;
  display: block;
  padding: 8px;
  margin: -10px -15.5px;
  background: transparent;
  text-transform: uppercase;
  font-weight: 900;
}

.btn-buy-stars__box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  color: white;
  background: black;
}

.btn-buy-stars__box:hover::before {
  border-color: #fff;
  height: 100%;
  transform: translateX(0);
  transition: 0.3s transform linear, 0.3s height linear 0.3s;
}

.btn-buy-stars__box:hover::after {
  border-color: #ea8b19;
  height: 100%;
  transform: translateX(0);
  transition: 0.3s transform linear, 0.3s height linear 0.5s;
}

.btn-buy-stars__box::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}

.btn-buy-stars__box::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(-100%);
}

.dock-item {
  color: var(--text-muted);
  font-size: 1.5rem;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s;
}

.dock-item.active, .dock-item:hover {
  color: var(--accent-primary);
  transform: scale(1.2) translateY(-5px);
}

/* Particle Canvas for GooeyNav */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .dashboard-container {
    grid-template-columns: var(--sidebar-width-pc) 1fr;
  }
  .right-panel,
  .friends-panel-tab,
  .panel-collapse-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .dashboard-container {
    grid-template-columns: 1fr;
    padding-bottom: calc(var(--dock-height-mobile) + 40px);
  }
  .sidebar {
    display: none;
  }
  .mobile-dock {
    display: flex;
  }
  .hero-title {
    font-size: 2rem;
  }
  .top-bar {
      padding: 1rem;
  }
  .search-bar {
      width: auto;
      flex: 1;
      margin-right: 1rem;
  }
}

/* Formularios de Alto Contraste (Mobile) */
input, select, textarea {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid var(--glass-border);
  padding: 12px;
  border-radius: var(--border-radius-sm);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent-primary);
    outline: none;
}

/* --- Botón Regalar (Custom) --- */
.btn-gift {
  position: relative;
  width: auto;
  min-width: 150px;
  height: 45px;
  background-color: #000;
  display: flex;
  align-items: center;
  color: white;
  flex-direction: row;
  justify-content: center;
  border: none;
  padding: 12px;
  gap: 12px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-gift::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 10px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gift::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.btn-gift:hover::after {
  filter: blur(30px);
}

.btn-gift:hover::before {
  transform: rotate(-180deg);
}

.btn-gift:active::before {
  scale: 0.7;
}

/* --- Botón Comprar (Custom) --- */
.btn-buy-custom {
  background: linear-gradient(30deg, #000 35%, #ea8b19 73%);
  position: relative;
  padding: 17px 45px;
  font-size: 20px;
  font-weight: 500;
  color: white;
  border: 3px solid #ea8b19;
  border-radius: 8px;
  transition: all .3s ease-in-out;
  cursor: pointer;
  display: block;
  width: 100%;
  margin-top: 1rem;
}

.btn-buy-custom .star {
  position: absolute;
  fill: #ea8b19;
  height: auto;
  filter: drop-shadow(0 0 0 #ea8b19);
  z-index: -5;
}

.btn-buy-custom .star-1 { top: 20%; left: 20%; width: 25px; transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96); }
.btn-buy-custom .star-2 { top: 45%; left: 45%; width: 15px; transition: all 1s cubic-bezier(0, 0.4, 0, 1.01); }
.btn-buy-custom .star-3 { top: 40%; left: 40%; width: 5px; transition: all 1s cubic-bezier(0, 0.4, 0, 1.01); }
.btn-buy-custom .star-4 { top: 20%; left: 40%; width: 8px; transition: all .8s cubic-bezier(0, 0.4, 0, 1.01); }
.btn-buy-custom .star-5 { top: 25%; left: 45%; width: 15px; transition: all .6s cubic-bezier(0, 0.4, 0, 1.01); }
.btn-buy-custom .star-6 { top: 5%; left: 50%; width: 5px; transition: all .8s ease; }

.btn-buy-custom:hover {
  background: #000;
  color: #ea8b19;
  box-shadow: 0 0 50px #ea8b19;
}

.btn-buy-custom:hover .star-1 { top: -110%; left: -60%; width: 30px; filter: drop-shadow(0 0 10px #ea8b19); z-index: 2; }
.btn-buy-custom:hover .star-2 { top: -45%; left: 0%; width: 20px; filter: drop-shadow(0 0 10px #ea8b19); z-index: 2; }
.btn-buy-custom:hover .star-3 { top: 55%; left: 15%; width: 11px; filter: drop-shadow(0 0 10px #ea8b19); z-index: 2; }
.btn-buy-custom:hover .star-4 { top: 45%; left: 85%; width: 15px; filter: drop-shadow(0 0 10px #ea8b19); z-index: 2; }
.btn-buy-custom:hover .star-5 { top: 25%; left: 140%; width: 25px; filter: drop-shadow(0 0 10px #ea8b19); z-index: 2; }
.btn-buy-custom:hover .star-6 { top: -5%; left: 60%; width: 15px; filter: drop-shadow(0 0 10px #ea8b19); z-index: 2; }

.btn-buy-custom .box {
  transition: .5s linear;
  position: relative;
  display: block;
  background: transparent;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}
.btn-buy-custom:hover .box {
  color: white;
}

/* --- Hamburger Menu (Mobile Dock) --- */
.hamburger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  height: 2.5em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line {
  fill: none;
  stroke: var(--text-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s;
}

.hamburger.active .line, .hamburger:hover .line {
    stroke: var(--accent-primary);
}

.hamburger .line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* Panel Retractable */
.right-panel {
    transition: transform 0.4s ease, width 0.4s ease, opacity 0.3s ease;
}
.right-panel.collapsed {
    transform: translateX(100%);
    width: 0;
    padding: 0;
    opacity: 0;
    border: none;
}
.panel-toggle-btn {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

  /* --- Review Card (Social) --- */
  .review-card {
    position: relative;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 16px;
    width: 100%;
    min-width: 280px;
    max-width: 340px;
    box-sizing: border-box;
    align-self: stretch;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .review-stars {
    color: #fbbf24;
    font-size: 1.15rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
  }
  
  .review-card .username {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .review-card .username::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-primary), #6366f1);
    border-radius: 50%;
    opacity: 0.8;
  }
  
  .review-card .review-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    min-width: 0;
  }
  
  .review-card .text {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    width: 100%;
    font-style: italic;
  }
  
  .review-card .footer {
    position: relative;
    width: 100%;
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 16px;
    padding-top: 12px;
  }
  
  .review-card .footer div {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
  }
  
  .review-card .footer div:hover {
    color: var(--accent-primary);
  }
  .review-card .footer div:hover svg path {
    fill: var(--accent-primary);
    stroke: var(--accent-primary);
  }
  
  .review-card .footer svg {
    margin-right: 6px;
    height: 18px;
    width: 18px;
    stroke: var(--text-muted);
    fill: transparent;
    transition: all 0.2s ease;
  }
  
  .review-card .footer svg.liked path {
    fill: #ef4444;
    stroke: #ef4444;
  }
  .review-card .footer div.liked {
    color: #ef4444;
  } 

  /* --- Rating Stars --- */
  .rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .rating:not(:checked) > input {
    position: absolute;
    appearance: none;
    opacity: 0;
  }
  .rating:not(:checked) > label {
    cursor: pointer;
    font-size: 30px;
    color: #666;
    margin-right: 5px;
  }
  .rating:not(:checked) > label:before {
    content: '★';
  }
  .rating > input:checked + label:hover,
  .rating > input:checked + label:hover ~ label,
  .rating > input:checked ~ label:hover,
  .rating > input:checked ~ label:hover ~ label,
  .rating > label:hover ~ input:checked ~ label {
    color: #e58e09;
  }
  .rating:not(:checked) > label:hover,
  .rating:not(:checked) > label:hover ~ label {
    color: #ff9e0b;
  }
  .rating > input:checked ~ label {
    color: #ffa723;
  }

/* --- Search Bar Inputbox (Uiverse.io by VijinV) --- */
.inputbox {
  position: relative;
  width: 196px;
}
.inputbox input {
  position: relative;
  width: 100%;
  padding: 20px 10px 10px;
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
  color: var(--text-main);
  font-size: 1em;
  letter-spacing: 0.05em;
  transition: 0.5s;
  z-index: 10;
}
.inputbox span {
  position: absolute;
  left: 0;
  padding: 20px 10px 10px;
  font-size: 1em;
  color: #8f8f8f;
  letter-spacing: 0.05em;
  transition: 0.5s;
  pointer-events: none;
}
.inputbox input:valid ~span,
.inputbox input:focus ~span {
  color: #a78bfa;
  transform: translateX(-10px) translateY(-34px);
  font-size: 0.75em;
}
.inputbox i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #a78bfa;
  border-radius: 4px;
  transition: 0.5s;
  pointer-events: none;
  z-index: 9;
}
.inputbox input:valid ~i,
.inputbox input:focus ~i {
  height: 44px;
}

/* --- Product Cards (Uiverse.io by SachinKumar666) --- */
.card {
  --card-bg: var(--bg-card);
  --card-accent: #A182E8;
  --card-text: var(--text-main);
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);

  width: 100%;
  height: 100%;
  min-height: 254px;
  background: var(--card-bg);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: inherit;
  display: block; /* anchor behaves like block */
  text-decoration: none;
}

.card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card__glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(161, 130, 232, 0.3) 0%,
    rgba(161, 130, 232, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card__content {
  padding: 1.25em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  position: relative;
  z-index: 2;
}

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #10b981;
  color: white;
  padding: 0.25em 0.5em;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 600;
  transform: scale(0.8);
  opacity: 1; /* Always visible for stock status */
  transition: all 0.4s ease;
  z-index: 3;
}

.card__image {
  width: 100%;
  height: 130px;
  background: linear-gradient(45deg, #a78bfa, #8b5cf6);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 30%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(139, 92, 246, 0.1) 0px,
      rgba(139, 92, 246, 0.1) 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.5;
  pointer-events: none;
}

.card__details {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.card__title {
  color: var(--card-text);
  font-size: 1.1em;
  margin: 0;
  font-weight: 700;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.card__reviews {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8em;
}

.card__reviews .rating {
  color: var(--text-muted);
}

.card__price-large {
  color: var(--card-text);
  font-weight: 900;
  font-size: 1.5em;
  transition: all 0.3s ease;
  margin: 0.2em 0;
}

.card__add-btn {
  background-color: #ffd814;
  color: #0f1111;
  border: 1px solid #fcd200;
  border-radius: 100px;
  padding: 8px 15px;
  font-size: 0.9em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  width: 100%;
}

.card__add-btn:hover {
  background-color: #f7ca00;
}

/* Hover Effects */
.card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.2),
    0 10px 10px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(161, 130, 232, 0.4);
}

.card:hover .card__shine {
  opacity: 1;
  animation: shine 3s infinite;
}

.card:hover .card__glow {
  opacity: 1;
}

.card:hover .card__image {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.card:hover .card__title {
  color: var(--card-accent);
  transform: translateX(2px);
}

.card:hover .card__description {
  opacity: 1;
  transform: translateX(2px);
}

.card:hover .card__price {
  color: var(--card-accent);
  transform: translateX(2px);
}

.card:hover .card__button {
  transform: scale(1);
  box-shadow: 0 0 0 4px rgba(161, 130, 232, 0.2);
}

.card:hover .card__button svg {
  animation: pulse 1.5s infinite;
}

/* Active State */
.card:active {
  transform: translateY(-2px) scale(0.98);
}

/* Animations */
@keyframes shine {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* --- GhostCard (Uiverse.io by CodeM7710) --- */
.main-container {
  font-family: "Trebuchet MS", sans-serif;
  position: relative;
  height: 203px;
  aspect-ratio: 1.579;
  border-radius: 1em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in;
}
.main-container:hover {
  transform: rotateZ(1deg) rotateY(10deg) scale(1.1);
  box-shadow: 0 5em 2em #111;
}

.border {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1em;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.33) 12%,
    rgba(255, 255, 255, 0.33) 27%,
    rgba(255, 255, 255, 0.33) 31%,
    rgba(0, 0, 0, 0.33) 52%
  );
}

.border:hover:after {
  position: absolute;
  content: " ";
  height: 50em;
  aspect-ratio: 1.58;
  border-radius: 1em;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 1) 42%,
    rgba(255, 255, 255, 1) 47%,
    rgba(255, 255, 255, 1) 51%,
    rgba(0, 0, 0, 1) 52%
  );
  animation: rotate 4s linear infinite;
  z-index: 1;
  opacity: 0.05;
}

.card-membership {
  height: 12.5em;
  aspect-ratio: 1.586;
  border-radius: 1em;
  background-color: #999;
  opacity: 0.8;
  background-image: linear-gradient(to right, #777, #777 2px, #999 2px, #999);
  background-size: 4px 100%;
}

.shadow {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.85em;
  border: 1px solid #bbb;
  background:
    radial-gradient(
        circle at 100% 100%,
        #ffffff 0,
        #ffffff 8px,
        transparent 8px
      )
      0% 0%/13px 13px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 8px, transparent 8px)
      100% 0%/13px 13px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 8px, transparent 8px)
      0% 100%/13px 13px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 8px, transparent 8px) 100%
      100%/13px 13px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 10px)
      calc(100% - 26px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 26px)
      calc(100% - 10px) no-repeat,
    linear-gradient(
      135deg,
      rgba(3, 3, 3, 0.5) 0%,
      transparent 22%,
      transparent 47%,
      transparent 73%,
      rgba(0, 0, 0, 0.5) 100%
    );
  box-sizing: border-box;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 0.6em;
  border: 1px solid #aaa;
  box-shadow: -1px -1px 0 #ddd;
  transform: translate(-50%, -50%);
  height: 12em;
  aspect-ratio: 1.604;
  background-image: linear-gradient(90deg, #777, #555 2px, #aaa 2px, #aaa);
  background-size: 4px 100%;
}

.rev {
  top: 0.5em;
  left: 0.75em;
  color: #ffffff9f;
  font-size: 1.25em;
}

.master {
  position: absolute;
  bottom: 1.25em;
  right: 0.5em;
  background: linear-gradient(
    90deg,
    rgba(75, 75, 75, 0.25) 0%,
    rgba(121, 121, 121, 1) 100%
  );
  color: #fff;
  height: 2.5em;
  width: 2.5em;
  border: 1px solid #bbb;
  border-radius: 50%;
}

.master.one {
  right: 2em;
}

.master-text {
  bottom: 0.25em;
  right: 0.8em;
  font-size: 0.75em;
}

.ultra-text {
  top: 10px;
  right: 1.75em;
  font-size: 0.5em;
  color: rgba(255, 255, 255, 0.66);
}

.card-number {
  bottom: 3em;
  left: 0.75em;
  font-size: 1.2em;
  position: absolute;
  color: #fff;
  text-shadow: -1px -1px #333;
}

.card-holder {
  bottom: 3.5em;
  left: 1.4em;
  font-size: 0.75em;
  position: absolute;
  color: #fff;
  text-shadow: -1px -1px #333;
}

.ultra-text,
.master-text,
.rev {
  position: absolute;
  text-shadow: -1px -1px #333;
  color: #fff;
  opacity: 0.75;
}

.chip {
  position: absolute;
  top: 27.5%;
  left: 8.25%;
  cursor: grab;
}

@keyframes rotate {
  0% {
    transform: translate(-25em, -15em);
  }
  20% {
    transform: translate(25em, 15em);
  }
  100% {
    transform: translate(25em, 15em);
  }
}

/* --- Review Card (Social) --- */
.review-card {
  position: relative;
  background-color: var(--bg-card);
  padding: 1.5em;
  z-index: 5;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  width: 100%;
  min-width: 280px;
  max-width: 320px;
  box-sizing: border-box;
  align-self: stretch;
  flex-shrink: 0;
  transition: 200ms ease-in-out;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--warning);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.review-card .username {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 8px;
}

.review-card .review-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-width: 0;
}

.review-card .text {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  color: var(--text-main);
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.95rem;
  flex: 1;
  width: 100%;
}

.review-card .footer {
  position: relative;
  width: 100%;
  color: var(--text-muted);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  margin-top: 15px;
  padding-top: 10px;
}

.review-card .footer div {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}

.review-card .footer div:hover {
  color: var(--accent-primary);
}
.review-card .footer div:hover svg path {
  fill: var(--accent-primary);
  stroke: var(--accent-primary);
}

.review-card .footer svg {
  margin-right: 5px;
  height: 16px;
  width: 16px;
  stroke: var(--text-muted);
  fill: transparent;
  transition: all 0.2s;
}

.review-card .footer svg.liked path {
  fill: var(--danger);
  stroke: var(--danger);
}
.review-card .footer div.liked {
  color: var(--danger);
}

.review-stars {
  color: #ffa723;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* --- Rating Stars --- */
.rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.rating:not(:checked) > input {
  position: absolute;
  appearance: none;
  opacity: 0;
}
.rating:not(:checked) > label {
  cursor: pointer;
  font-size: 30px;
  color: #666;
  margin-right: 5px;
}
.rating:not(:checked) > label:before {
  content: '★';
}
.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
  color: #e58e09;
}
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #ff9e0b;
}
.rating > input:checked ~ label {
  color: #ffa723;
}

/* --- Métodos de Pago Card & CLABE Animation --- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 130, 232, 0.5);
  box-shadow: 0 15px 35px rgba(161, 130, 232, 0.15);
}

.payment-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.8rem;
}

.payment-card__bank {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-detail-group {
  margin-bottom: 1.2rem;
}

.payment-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.payment-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

/* CLABE Copy Box with Glowing Animation */
.clabe-box {
  background: rgba(10, 10, 18, 0.7);
  border: 2px dashed rgba(161, 130, 232, 0.4);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.clabe-box:hover {
  background: rgba(161, 130, 232, 0.12);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(161, 130, 232, 0.3);
}

.clabe-box.copied {
  animation: clabePulse 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
}

.clabe-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

.clabe-copy-btn {
  background: var(--accent-primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clabe-copy-btn:hover {
  transform: scale(1.05);
  background: #b69af0;
}

.clabe-copy-btn.copied-btn {
  background: #10b981;
}

@keyframes clabePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Toast Copy Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #10b981;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 10050;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- POS Payment Waiting Animation (Uiverse Admin12121) --- */
.pay-anim-container {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  width: 100%;
  max-width: 440px;
  height: 110px;
  position: relative;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  margin: 1rem auto;
}
.pay-anim-container:hover {
  transform: scale(1.02);
  border-color: var(--accent-primary);
}
.pay-anim-left {
  background-color: #10b981;
  width: 120px;
  height: 100%;
  border-radius: 8px 0 0 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
  overflow: hidden;
}
.pay-anim-right {
  width: calc(100% - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  padding: 0 15px;
  background: rgba(255,255,255,0.02);
}
.pay-anim-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}
.pay-anim-card {
  width: 65px;
  height: 42px;
  background-color: #a78bfa;
  border-radius: 6px;
  position: absolute;
  display: flex;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(167, 139, 250, 0.5);
}
.pay-anim-card-line {
  width: 58px;
  height: 11px;
  background-color: #8b5cf6;
  border-radius: 2px;
  margin-top: 6px;
}
.pay-anim-buttons {
  width: 7px;
  height: 7px;
  background-color: #4c1d95;
  box-shadow: 0 -8px 0 0 #5b21b6, 0 8px 0 0 #7c3aed;
  border-radius: 50%;
  margin-top: 8px;
  transform: rotate(90deg);
}
.pay-anim-container:hover .pay-anim-card {
  animation: slide-top 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}
.pay-anim-container:hover .pay-anim-post {
  animation: slide-post 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.pay-anim-post {
  width: 60px;
  height: 70px;
  background-color: #2e3548;
  border: 1px solid var(--glass-border);
  position: absolute;
  z-index: 11;
  bottom: 5px;
  top: 110px;
  border-radius: 6px;
  overflow: hidden;
}
.pay-anim-post-line {
  width: 44px;
  height: 8px;
  background-color: #1e2433;
  position: absolute;
  border-radius: 0 0 3px 3px;
  right: 8px;
  top: 6px;
}
.pay-anim-screen {
  width: 44px;
  height: 22px;
  background-color: #0f172a;
  position: absolute;
  top: 18px;
  right: 8px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-anim-dollar {
  font-size: 14px;
  font-weight: 700;
  color: #10b981;
}
.pay-anim-container:hover .pay-anim-dollar {
  animation: fade-in-fwd 0.3s 1s backwards;
}

/* --- Gift Button Custom (Uiverse barisdogansutcu) --- */
.gift-btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  height: 48px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid #a78bfa;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 15px;
  background-color: #8b5cf6;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  width: 100%;
}
.gift-btn-custom:active {
  transform: scale(0.95);
  transition: all 100ms ease;
}
.gift-btn-custom svg {
  transition: all 0.5s ease;
  z-index: 2;
  border-radius: 50%;
}
.gift-btn-custom .play {
  transition: all 0.5s ease;
  transition-delay: 150ms;
}
.gift-btn-custom:hover svg {
  transform: scale(2.8) translate(30%);
}
.gift-btn-custom .now {
  position: absolute;
  left: 10px;
  transform: translateX(-150%);
  transition: all 0.5s ease;
  z-index: 2;
}
.gift-btn-custom:hover .now {
  transform: translateX(10px);
  transition-delay: 150ms;
}
.gift-btn-custom:hover .play {
  transform: translateX(200%);
  transition-delay: 150ms;
}

/* --- Buy Button Custom Fix --- */
.btn-buy-custom {
  position: relative;
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-buy-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}
.btn-buy-custom:active {
  transform: scale(0.98);
}
.btn-buy-custom:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* --- Global Modal System --- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
  transform: scale(1);
}

/* --- Shopping Cart Drawer --- */
.cart-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--glass-border);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.cart-modal.active .cart-drawer {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1rem;
}
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 5px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  padding: 10px;
  border-radius: 10px;
}
.cart-item-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
}
.cart-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}
.cart-item-price {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.cart-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 1rem;
}

/* --- Hamster Wheel Animation (Uiverse Nawsome) --- */
.wheel-and-hamster {
  --dur: 1s;
  position: relative;
  width: 12em;
  height: 12em;
  font-size: 14px;
}

.wheel,
.hamster,
.hamster div,
.spoke {
  position: absolute;
}

.wheel,
.spoke {
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wheel {
  background: radial-gradient(100% 100% at center,hsla(0,0%,60%,0) 47.8%,hsl(0,0%,60%) 48%);
  z-index: 2;
}

.hamster {
  animation: hamster var(--dur) ease-in-out infinite;
  top: 50%;
  left: calc(50% - 3.5em);
  width: 7em;
  height: 3.75em;
  transform: rotate(4deg) translate(-0.8em,1.85em);
  transform-origin: 50% 0;
  z-index: 1;
}

.hamster__head {
  animation: hamsterHead var(--dur) ease-in-out infinite;
  background: hsl(30,90%,55%);
  border-radius: 70% 30% 0 100% / 40% 25% 25% 60%;
  box-shadow: 0 -0.25em 0 hsl(30,90%,80%) inset,
		0.75em -1.55em 0 hsl(30,90%,90%) inset;
  top: 0;
  left: -2em;
  width: 2.75em;
  height: 2.5em;
  transform-origin: 100% 50%;
}

.hamster__ear {
  animation: hamsterEar var(--dur) ease-in-out infinite;
  background: hsl(0,90%,85%);
  border-radius: 50%;
  box-shadow: -0.25em 0 hsl(30,90%,55%) inset;
  top: -0.25em;
  right: -0.25em;
  width: 0.75em;
  height: 0.75em;
  transform-origin: 50% 75%;
}

.hamster__eye {
  animation: hamsterEye var(--dur) linear infinite;
  background-color: hsl(0,0%,0%);
  border-radius: 50%;
  top: 0.375em;
  left: 1.25em;
  width: 0.5em;
  height: 0.5em;
}

.hamster__nose {
  background: hsl(0,90%,75%);
  border-radius: 35% 65% 85% 15% / 70% 50% 50% 30%;
  top: 0.75em;
  left: 0;
  width: 0.2em;
  height: 0.25em;
}

.hamster__body {
  animation: hamsterBody var(--dur) ease-in-out infinite;
  background: hsl(30,90%,90%);
  border-radius: 50% 30% 50% 30% / 15% 60% 40% 40%;
  box-shadow: 0.1em 0.75em 0 hsl(30,90%,55%) inset,
		0.15em -0.5em 0 hsl(30,90%,80%) inset;
  top: 0.25em;
  left: 2em;
  width: 4.5em;
  height: 3em;
  transform-origin: 17% 50%;
  transform-style: preserve-3d;
}

.hamster__limb--fr,
.hamster__limb--fl {
  clip-path: polygon(0 0,100% 0,70% 80%,60% 100%,0% 100%,40% 80%);
  top: 2em;
  left: 0.5em;
  width: 1em;
  height: 1.5em;
  transform-origin: 50% 0;
}

.hamster__limb--fr {
  animation: hamsterFRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,80%) 80%,hsl(0,90%,75%) 80%);
  transform: rotate(15deg) translateZ(-1px);
}

.hamster__limb--fl {
  animation: hamsterFLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,90%) 80%,hsl(0,90%,85%) 80%);
  transform: rotate(15deg);
}

.hamster__limb--br,
.hamster__limb--bl {
  border-radius: 0.75em 0.75em 0 0;
  clip-path: polygon(0 0,100% 0,100% 30%,70% 90%,70% 100%,30% 100%,40% 90%,0% 30%);
  top: 1em;
  left: 2.8em;
  width: 1.5em;
  height: 2.5em;
  transform-origin: 50% 30%;
}

.hamster__limb--br {
  animation: hamsterBRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,80%) 90%,hsl(0,90%,75%) 90%);
  transform: rotate(-25deg) translateZ(-1px);
}

.hamster__limb--bl {
  animation: hamsterBLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,90%) 90%,hsl(0,90%,85%) 90%);
  transform: rotate(-25deg);
}

.hamster__tail {
  animation: hamsterTail var(--dur) linear infinite;
  background: hsl(0,90%,85%);
  border-radius: 0.25em 50% 50% 0.25em;
  box-shadow: 0 -0.2em 0 hsl(0,90%,75%) inset;
  top: 1.5em;
  right: -0.5em;
  width: 1em;
  height: 0.5em;
  transform: rotate(30deg) translateZ(-1px);
  transform-origin: 0.25em 0.25em;
}

.spoke {
  animation: spoke var(--dur) linear infinite;
  background: radial-gradient(100% 100% at center,hsl(0,0%,60%) 4.8%,hsla(0,0%,60%,0) 5%),
		linear-gradient(hsla(0,0%,55%,0) 46.9%,hsl(0,0%,65%) 47% 52.9%,hsla(0,0%,65%,0) 53%) 50% 50% / 99% 99% no-repeat;
}

/* Animations */
@keyframes hamster {
  from, to {
    transform: rotate(4deg) translate(-0.8em,1.85em);
  }

  50% {
    transform: rotate(0) translate(-0.8em,1.85em);
  }
}

@keyframes hamsterHead {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(8deg);
  }
}

@keyframes hamsterEye {
  from, 90%, to {
    transform: scaleY(1);
  }

  95% {
    transform: scaleY(0);
  }
}

@keyframes hamsterEar {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(12deg);
  }
}

@keyframes hamsterBody {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-2deg);
  }
}

@keyframes hamsterFRLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(50deg) translateZ(-1px);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-30deg) translateZ(-1px);
  }
}

@keyframes hamsterFLLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(-30deg);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(50deg);
  }
}

@keyframes hamsterBRLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(-60deg) translateZ(-1px);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(20deg) translateZ(-1px);
  }
}

@keyframes hamsterBLLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(20deg);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-60deg);
  }
}

@keyframes hamsterTail {
  from, 25%, 50%, 75%, to {
    transform: rotate(30deg) translateZ(-1px);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(10deg) translateZ(-1px);
  }
}

@keyframes spoke {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-1turn);
  }
}

/* --- Login Form (D3OXY adapted to GhostKey theme) --- */
.form-login {
  --background: var(--bg-card);
  --font-color: var(--text-main);
  --font-color-sub: var(--text-muted);

  padding: 2rem;
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  max-width: 380px;
  margin: 0 auto;
}

.form-login > .form-title {
  color: var(--font-color);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.form-login > .form-title > span {
  color: var(--font-color-sub);
  font-weight: 500;
  font-size: 14px;
  margin-top: 4px;
}

.oauthButton {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 250ms ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.oauthButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.oauthButton .icon {
  width: 1.4rem;
  height: 1.4rem;
}

/* --- Neon Checkbox (3HugaDa3) --- */
.checkbox-wrapper {
  --checkbox-size: 22px;
  --checkbox-color: #a78bfa;
  --checkbox-shadow: rgba(167, 139, 250, 0.4);
  --checkbox-border: rgba(167, 139, 250, 0.7);
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 5px 0;
  user-select: none;
}

.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-wrapper .checkmark {
  position: relative;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border: 2px solid var(--checkbox-border);
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px var(--checkbox-shadow);
  overflow: hidden;
  flex-shrink: 0;
}

.checkbox-wrapper .checkmark::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--checkbox-color), #c084fc);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(0) rotate(-45deg);
}

.checkbox-wrapper input:checked ~ .checkmark::before {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.checkbox-wrapper .checkmark svg {
  width: 0;
  height: 0;
  color: #ffffff;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkbox-wrapper input:checked ~ .checkmark svg {
  width: 14px;
  height: 14px;
  transform: rotate(360deg);
}

.checkbox-wrapper:hover .checkmark {
  border-color: var(--checkbox-color);
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--checkbox-shadow);
}

/* Mobile Table & Amazon Gallery Responsiveness */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  html, body {
    height: auto !important;
    overflow-y: auto !important;
  }
  .dashboard-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
  }
  .sidebar {
    display: none;
  }
  .main-content {
    grid-column: 1 / -1 !important;
    padding: 1rem !important;
    width: 100% !important;
    height: auto !important;
    overflow-y: visible !important;
  }
  }
  .main-container {
    transform: scale(0.82);
    margin: -15px auto;
  }
  
  /* Amazon-style horizontal scrolling products gallery on mobile */
  .products-grid, #catalog-grid, .horizontal-scroll {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    gap: 14px !important;
    padding: 10px 5px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .products-grid .card, #catalog-grid .card, .horizontal-scroll .card {
    min-width: 210px !important;
    max-width: 220px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
  }
}

/* --- Delivered Order Card (Uiverse vinodjangid07 adapted) --- */
.delivered-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .delivered-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 10px !important;
  }
}

.delivered-card {
  width: 200px;
  height: 270px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 15px;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  scroll-snap-align: start;
}
.delivered-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.delivered-card-image {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.delivered-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.delivered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  width: 100%;
}
.delivered-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.delivered-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-primary);
}
.delivered-card-btn {
  margin-top: 5px;
  width: 100%;
  height: 40px;
  background-color: var(--accent-primary);
  border: none;
  border-radius: 40px;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.delivered-card:hover .delivered-card-image {
  height: 100px;
}
.delivered-card-btn:hover {
  background-color: #10b981;
  color: #000000;
  transform: scale(1.03);
}
.delivered-card:hover {
  border-color: rgba(161, 130, 232, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(161, 130, 232, 0.2);
}
.delivered-tag {
  position: absolute;
  background-color: #10b981;
  color: #000000;
  left: 12px;
  top: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

/* --- Astronaut Space Animation (Uiverse JkHuger) --- */
.astronaut-space-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 260px;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  border-radius: 16px;
  overflow: hidden;
  margin: 1rem auto;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

@keyframes snow {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(350px);
  }
}

@keyframes astronaut {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.box-of-star1,
.box-of-star2,
.box-of-star3,
.box-of-star4 {
  width: 100%;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  transform: translateY(0px);
  height: 350px;
}

.box-of-star1 {
  animation: snow 5s linear infinite;
}

.box-of-star2 {
  animation: snow 5s -1.64s linear infinite;
}

.box-of-star3 {
  animation: snow 5s -2.30s linear infinite;
}

.box-of-star4 {
  animation: snow 5s -3.30s linear infinite;
}

.star {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  z-index: 10;
  opacity: 0.7;
}

.star:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  z-index: 10;
  top: 40px;
  left: 40px;
  opacity: .7;
}

.star:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  z-index: 10;
  top: 8px;
  left: 100px;
  opacity: .9;
}

.star-position1 { top: 20px; left: 15px; }
.star-position2 { top: 80px; left: 140px; }
.star-position3 { top: 40px; left: 260px; }
.star-position4 { top: 90px; left: 320px; }
.star-position5 { top: 15px; left: 220px; }
.star-position6 { top: 70px; left: 70px; }
.star-position7 { top: 20px; left: 300px; }

.astronaut {
  width: 140px;
  height: 170px;
  position: absolute;
  z-index: 11;
  top: calc(50% - 85px);
  left: calc(50% - 70px);
  animation: astronaut 6s linear infinite;
}

.schoolbag {
  width: 56px;
  height: 85px;
  position: absolute;
  z-index: 1;
  top: calc(50% - 42px);
  left: calc(50% - 28px);
  background-color: #94b7ca;
  border-radius: 28px 28px 0 0 / 18px 18px 0 0;
}

.head {
  width: 54px;
  height: 45px;
  position: absolute;
  z-index: 3;
  background: -webkit-linear-gradient(left, #e3e8eb 0%, #e3e8eb 50%, #fbfdfa 50%, #fbfdfa 100%);
  border-radius: 50%;
  top: 19px;
  left: calc(50% - 27px);
}

.head:after {
  content: "";
  width: 34px;
  height: 28px;
  position: absolute;
  top: calc(50% - 14px);
  left: calc(50% - 17px);
  background: -webkit-linear-gradient(top, #15aece 0%, #15aece 50%, #0391bf 50%, #0391bf 100%);
  border-radius: 9px;
}

.head:before {
  content: "";
  width: 7px;
  height: 14px;
  position: absolute;
  top: calc(50% - 7px);
  left: -2px;
  background-color: #618095;
  border-radius: 3px;
  box-shadow: 52px 0px 0px #618095;
}

.body {
  width: 48px;
  height: 56px;
  position: absolute;
  z-index: 2;
  border-radius: 22px / 11px;
  top: 59px;
  left: calc(50% - 23px);
  background: -webkit-linear-gradient(left, #e3e8eb 0%, #e3e8eb 50%, #fbfdfa 50%, #fbfdfa 100%);
}

.panel {
  width: 34px;
  height: 22px;
  position: absolute;
  top: 11px;
  left: calc(50% - 17px);
  background-color: #b7cceb;
}

.panel:before {
  content: "";
  width: 17px;
  height: 3px;
  position: absolute;
  top: 5px;
  left: 4px;
  background-color: #fbfdfa;
  box-shadow: 0px 5px 0px #fbfdfa, 0px 10px 0px #fbfdfa;
}

.panel:after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 5px;
  right: 4px;
  background-color: #fbfdfa;
  border-radius: 50%;
  box-shadow: 0px 8px 0px 1px #fbfdfa;
}

.arm {
  width: 45px;
  height: 17px;
  position: absolute;
  top: 68px;
  z-index: 2;
}

.arm-left {
  left: 17px;
  background-color: #e3e8eb;
  border-radius: 0 0 0 22px;
}

.arm-right {
  right: 17px;
  background-color: #fbfdfa;
  border-radius: 0 0 22px 0;
}

.arm-left:before,
.arm-right:before {
  content: "";
  width: 17px;
  height: 39px;
  position: absolute;
  top: -22px;
}

.arm-left:before {
  border-radius: 28px 28px 0px 67px / 28px 28px 0 62px;
  left: 0;
  background-color: #e3e8eb;
}

.arm-right:before {
  border-radius: 28px 28px 67px 0 / 28px 28px 62px 0;
  right: 0;
  background-color: #fbfdfa;
}

/* --- Referral Button (Uiverse marcelodolza adapted) --- */
.button-referral {
  --primary: #A182E8;
  --neutral-1: #1e1b2e;
  --neutral-2: #12101d;
  --radius: 12px;

  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  border: none;
  box-shadow: 0 0.5px 0.5px 1px rgba(161, 130, 232, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  padding: 14px;
  height: 52px;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-top: 8px;
}
.button-referral:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1px 2px rgba(161, 130, 232, 0.5),
    0 15px 30px rgba(161, 130, 232, 0.2);
}
.button-referral:active {
  transform: scale(0.98);
}
.button-referral:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
    linear-gradient(to bottom, rgba(161, 130, 232, 0.3), rgba(161, 130, 232, 0.8)) border-box;
  z-index: 0;
  transition: all 0.4s ease;
}
.button-referral::before {
  content: "";
  inset: 4px;
  position: absolute;
  background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
  border-radius: 10px;
  z-index: 2;
}

.button-referral .outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px;
}
.button-referral .outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 180deg, transparent 60%, #A182E8 80%, transparent 100%);
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}
.button-referral:hover .outline {
  opacity: 1;
}
.button-referral:hover .outline::before {
  animation-play-state: running;
}

.button-referral .state {
  padding-left: 26px;
  z-index: 3;
  display: flex;
  position: relative;
  align-items: center;
}
.button-referral .state p {
  display: flex;
  margin: 0;
}
.button-referral .state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}
.button-referral .state p span {
  display: inline-block;
  opacity: 1;
}
.button-referral:hover p span {
  animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}

.button-referral .state--sent {
  display: none;
}
.button-referral.copied .state--default {
  display: none;
}
.button-referral.copied .state--sent {
  display: flex;
  color: #10b981;
}

.arm-left:after,
.arm-right:after {
  content: "";
  width: 17px;
  height: 6px;
  position: absolute;
  top: -13px;
}

.arm-left:after {
  background-color: #6e91a4;
  left: 0;
}

.arm-right:after {
  right: 0;
  background-color: #b6d2e0;
}

.leg {
  width: 17px;
  height: 22px;
  position: absolute;
  z-index: 2;
  bottom: 39px;
}

.leg-left {
  left: 43px;
  background-color: #e3e8eb;
  transform: rotate(20deg);
}

.leg-right {
  right: 41px;
  background-color: #fbfdfa;
  transform: rotate(-20deg);
}

.leg-left:before,
.leg-right:before {
  content: "";
  width: 28px;
  height: 14px;
  position: absolute;
  bottom: -15px;
}

.leg-left:before {
  left: -11px;
  background-color: #e3e8eb;
  border-radius: 17px 0 0 0;
  border-bottom: 6px solid #6d96ac;
}

.leg-right:before {
  right: -11px;
  background-color: #fbfdfa;
  border-radius: 0 17px 0 0;
  border-bottom: 6px solid #b0cfe4;
}
/* From Uiverse.io by barisdogansutcu */
.favorite-container {
 background-color: white;
 display: flex;
 align-items: center;
 gap: 14px;
 padding: 10px 15px 10px 10px;
 cursor: pointer;
 user-select: none;
 border-radius: 10px;
 box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
 color: black;
 margin-bottom: 1rem;
 width: fit-content;
}
.favorite-input {
 display: none;
}
.favorite-input:checked + .favorite-container svg {
 fill: hsl(0deg 100% 50%);
 stroke: hsl(0deg 100% 50%);
 animation: heartButton 1s;
}
@keyframes heartButton {
 0% { transform: scale(1); }
 25% { transform: scale(1.3); }
 50% { transform: scale(1); }
 75% { transform: scale(1.3); }
 100% { transform: scale(1); }
}
.favorite-input + .favorite-container .action {
 position: relative;
 overflow: hidden;
 display: grid;
}
.favorite-input + .favorite-container .action span {
 grid-column-start: 1;
 grid-column-end: 1;
 grid-row-start: 1;
 grid-row-end: 1;
 transition: all .5s;
}
.favorite-input + .favorite-container .action span.option-1 {
 transform: translate(0px,0%);
 opacity: 1;
}
.favorite-input:checked + .favorite-container .action span.option-1 {
 transform: translate(0px,-100%);
 opacity: 0;
}
.favorite-input + .favorite-container .action span.option-2 {
 transform: translate(0px,100%);
 opacity: 0;
}
.favorite-input:checked + .favorite-container .action span.option-2 {
 transform: translate(0px,0%);
 opacity: 1;
}
@keyframes shakeAnimation {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
.shake-err {
  animation: shakeAnimation 0.4s ease-in-out;
  border: 1px solid var(--danger) !important;
  color: var(--danger) !important;
}
/* From Uiverse.io by 0xnihilism */ 
.brutalist-container {
  position: relative;
  width: 100%;
  font-family: monospace;
}

.brutalist-input {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  border: 4px solid #000;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 5px 5px 0 #000, 10px 10px 0 #4a90e2;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.brutalist-input:focus {
  animation: focus-pulse 4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite,
    glitch 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.brutalist-input:focus::after {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: white; z-index: -1;
}

.brutalist-input:focus::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: black; z-index: -2;
  clip-path: inset(0 100% 0 0);
  animation: glitch-slice 4s steps(2, end) infinite;
}

@keyframes glitch-slice {
  0% { clip-path: inset(0 100% 0 0); }
  10% { clip-path: inset(0 5% 0 0); }
  20% { clip-path: inset(0 80% 0 0); }
  30% { clip-path: inset(0 10% 0 0); }
  40% { clip-path: inset(0 50% 0 0); }
  50% { clip-path: inset(0 30% 0 0); }
  60% { clip-path: inset(0 70% 0 0); }
  70% { clip-path: inset(0 15% 0 0); }
  80% { clip-path: inset(0 90% 0 0); }
  90% { clip-path: inset(0 5% 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}

.brutalist-label {
  position: absolute;
  left: -3px;
  top: -25px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  padding: 5px 10px;
  transform: rotate(-1deg);
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brutalist-input:focus + .brutalist-label {
  transform: rotate(0deg) scale(1.05);
  background-color: #4a90e2;
}

.smooth-type { position: relative; overflow: hidden; }

.smooth-type::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1; opacity: 0; transition: opacity 0.3s ease;
}

.smooth-type:focus::before {
  opacity: 1; animation: type-gradient 2s linear infinite;
}

@keyframes type-gradient {
  0% { background-position: 300px 0; }
  100% { background-position: 0 0; }
}

.brutalist-input::placeholder { color: #888; transition: color 0.3s ease; }
.brutalist-input:focus::placeholder { color: transparent; }

@keyframes focus-pulse {
  0%, 100% { border-color: #000; }
  50% { border-color: #4a90e2; }
}

/* From Uiverse.io by Lakshay-art */ 
.grid {
  height: 800px;
  width: 800px;
  background-image: linear-gradient(to right, #0f0f10 1px, transparent 1px),
    linear-gradient(to bottom, #0f0f10 1px, transparent 1px);
  background-size: 1rem 1rem;
  background-position: center center;
  position: absolute;
  z-index: -1;
  filter: blur(1px);
}
#poda .white,
#poda .border,
#poda .darkBorderBg,
#poda .glow {
  max-height: 70px;
  max-width: 314px;
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  /* Border Radius */
  border-radius: 12px;
  filter: blur(3px);
}
#poda .input {
  background-color: #010201;
  border: none;
  /* padding:7px; */
  width: 301px;
  height: 56px;
  border-radius: 10px;
  color: white;
  padding-inline: 59px;
  font-size: 18px;
}
#poda {
  display: flex;
  align-items: center;
  justify-content: center;
}
#poda .input::placeholder {
  color: #c0b9c0;
}

#poda .input:focus {
  outline: none;
}

#main:focus-within > #input-mask {
  display: none;
}

#input-mask {
  pointer-events: none;
  width: 100px;
  height: 20px;
  position: absolute;
  background: linear-gradient(90deg, transparent, black);
  top: 18px;
  left: 70px;
}
#pink-mask {
  pointer-events: none;
  width: 30px;
  height: 20px;
  position: absolute;
  background: #cf30aa;
  top: 10px;
  left: 5px;
  filter: blur(20px);
  opacity: 0.8;
  /* animation:leftright 4s ease-in infinite; */
  transition: all 2s;
}
#main:hover > #pink-mask {
  /* animation: rotate 4s linear infinite; */
  opacity: 0;
}

#poda .white {
  max-height: 63px;
  max-width: 307px;
  border-radius: 10px;
  filter: blur(2px);
}

#poda .white::before {
  content: "";
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(83deg);
  position: absolute;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
  background-position: 0 0;
  filter: brightness(1.4);
  background-image: conic-gradient(
    rgba(0, 0, 0, 0) 0%,
    #a099d8,
    rgba(0, 0, 0, 0) 8%,
    rgba(0, 0, 0, 0) 50%,
    #dfa2da,
    rgba(0, 0, 0, 0) 58%
  );
  /* animation: rotate 4s linear infinite; */
  transition: all 2s;
}
#poda .border {
  max-height: 59px;
  max-width: 303px;
  border-radius: 11px;
  filter: blur(0.5px);
}
#poda .border::before {
  content: "";
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(70deg);
  position: absolute;
  width: 600px;
  height: 600px;
  filter: brightness(1.3);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(
    #1c191c,
    #402fb5 5%,
    #1c191c 14%,
    #1c191c 50%,
    #cf30aa 60%,
    #1c191c 64%
  );
  /* animation: rotate 4s 0.1s linear infinite; */
  transition: all 2s;
}
#poda .darkBorderBg {
  max-height: 65px;
  max-width: 312px;
}
#poda .darkBorderBg::before {
  content: "";
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(82deg);
  position: absolute;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(
    rgba(0, 0, 0, 0),
    #18116a,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 50%,
    #6e1b60,
    rgba(0, 0, 0, 0) 60%
  );
  transition: all 2s;
}
#poda:hover > .darkBorderBg::before {
  transform: translate(-50%, -50%) rotate(262deg);
}
#poda:hover > .glow::before {
  transform: translate(-50%, -50%) rotate(240deg);
}
#poda:hover > .white::before {
  transform: translate(-50%, -50%) rotate(263deg);
}
#poda:hover > .border::before {
  transform: translate(-50%, -50%) rotate(250deg);
}

#poda:hover > .darkBorderBg::before {
  transform: translate(-50%, -50%) rotate(-98deg);
}
#poda:hover > .glow::before {
  transform: translate(-50%, -50%) rotate(-120deg);
}
#poda:hover > .white::before {
  transform: translate(-50%, -50%) rotate(-97deg);
}
#poda:hover > .border::before {
  transform: translate(-50%, -50%) rotate(-110deg);
}

#poda:focus-within > .darkBorderBg::before {
  transform: translate(-50%, -50%) rotate(442deg);
  transition: all 4s;
}
#poda:focus-within > .glow::before {
  transform: translate(-50%, -50%) rotate(420deg);
  transition: all 4s;
}
#poda:focus-within > .white::before {
  transform: translate(-50%, -50%) rotate(443deg);
  transition: all 4s;
}
#poda:focus-within > .border::before {
  transform: translate(-50%, -50%) rotate(430deg);
  transition: all 4s;
}

#poda .glow {
  overflow: hidden;
  filter: blur(30px);
  opacity: 0.4;
  max-height: 130px;
  max-width: 354px;
}
#poda .glow:before {
  content: "";
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(60deg);
  position: absolute;
  width: 999px;
  height: 999px;
  background-repeat: no-repeat;
  background-position: 0 0;
  /*border color, change middle color*/
  background-image: conic-gradient(
    #000,
    #402fb5 5%,
    #000 38%,
    #000 50%,
    #cf30aa 60%,
    #000 87%
  );
  /* change speed here */
  /* animation: rotate 4s 0.3s linear infinite; */
  transition: all 2s;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(450deg);
  }
}
@keyframes leftright {
  0% {
    transform: translate(0px, 0px);
    opacity: 1;
  }

  49% {
    transform: translate(250px, 0px);
    opacity: 0;
  }
  80% {
    transform: translate(-40px, 0px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

#filter-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  max-height: 40px;
  max-width: 38px;
  height: 100%;
  width: 100%;

  isolation: isolate;
  overflow: hidden;
  /* Border Radius */
  border-radius: 10px;
  background: linear-gradient(180deg, #161329, black, #1d1b4b);
  border: 1px solid transparent;
}
#poda .filterBorder {
  height: 42px;
  width: 40px;
  position: absolute;
  overflow: hidden;
  top: 7px;
  right: 7px;
  border-radius: 10px;
}

#poda .filterBorder::before {
  content: "";

  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  position: absolute;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
  background-position: 0 0;
  filter: brightness(1.35);
  background-image: conic-gradient(
    rgba(0, 0, 0, 0),
    #3d3a4f,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 50%,
    #3d3a4f,
    rgba(0, 0, 0, 0) 100%
  );
  animation: rotate 4s linear infinite;
}
#main {
  position: relative;
}
#search-icon {
  position: absolute;
  left: 20px;
  top: 15px;
}

/* Single layout constraint rule added at the end */
#poda, #poda .input, #poda .white, #poda .border, #poda .darkBorderBg, #poda .glow {
  max-width: 100% !important;
}

/* Amazon Clone Search Bar */
.search-amazon-container {
  display: flex;
  align-items: center;
  position: relative;
}
.amz-search-input {
  background-color: #e4e4e7;
  color: #52525b;
  font-family: monospace;
  box-shadow: 0 0 0 1px #a1a1aa, 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 300ms ease;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  border: none;
  width: 250px;
}
.amz-search-input::placeholder {
  color: #52525b;
  opacity: 0.5;
}
.amz-search-input:focus {
  box-shadow: 0 0 0 2px #fb7185, 0 10px 15px -3px rgba(251, 113, 133, 0.5);
}
.amz-search-btn {
  background-color: #e4e4e7;
  color: #52525b;
  box-shadow: 0 0 0 1px #a1a1aa, 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 300ms ease;
  border-radius: 9999px;
  padding: 0.5rem;
  margin-left: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amz-search-btn:focus, .amz-search-btn:hover {
  box-shadow: 0 0 0 2px #fb7185, 0 10px 15px -3px rgba(251, 113, 133, 0.5);
}
.amz-rocket-icon {
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(45deg);
}

/* Amazon Clone Filter Dropdown */
.filter-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  z-index: 50;
  min-width: 150px;
}
.filter-dropdown.show {
  display: flex;
}
.filter-dropdown .filter-btn {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 10px 15px;
  text-align: left;
  border-radius: 0;
  cursor: pointer;
}
.filter-dropdown .filter-btn:last-child {
  border-bottom: none;
}
.filter-dropdown .filter-btn:hover, .filter-dropdown .filter-btn.active {
  background: var(--accent-primary);
  color: #fff;
}

/* Mobile Catalog Amazon UX */
@media (max-width: 768px) {
  #catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  #catalog-grid .card {
    min-height: auto;
    height: auto;
    max-width: 100% !important;
    min-width: 100% !important;
  }
  
  #catalog-grid .card__content {
    flex-direction: row;
    padding: 10px;
    align-items: flex-start;
  }
  
  #catalog-grid .card__image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }
  
  #catalog-grid .card__details {
    flex: 1;
    margin-left: 15px;
    justify-content: center;
  }

  /* Make search full width */
  #amz-search-container {
    width: 100% !important;
  }
}

/* --- Gift Animation Modal --- */
#gift-animation-modal .gift-anim-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5em;
  font-weight: 900;
  color: #e10600;
  position: relative;
  transition: all 1s ease;
  text-align: center;
}

#gift-animation-modal .container__star {
  transition: all .7s ease-in-out;
}

#gift-animation-modal .svg-icon {
  position: absolute;
  fill: #e94822;
  z-index: 1;
}

#gift-animation-modal .star-eight {
  background: #efd510;
  width: 150px;
  height: 150px;
  position: relative;
  text-align: center;
  animation: rot 3s  infinite;
}

#gift-animation-modal .star-eight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  width: 150px;
  background: #efd510;
  transform: rotate(135deg);
}

#gift-animation-modal .gift-anim-container.opened .container__star {
  transform: rotateX(70deg) translateY(250px);
  box-shadow: 0px 0px 120px -100px #e4e727;
}

#gift-animation-modal .gift-anim-container.opened .svg-icon {
  animation: grow 1s linear infinite;
}

@keyframes rot {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(340deg); }
  100% { transform: rotate(0deg); }
}

@keyframes grow {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- POS Animation for Recharge Waiting Screen (Admin12121) --- */
.pos-anim-container {
  background-color: #ffffff;
  display: flex;
  width: 100%;
  max-width: 460px;
  height: 120px;
  position: relative;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  margin: 0 auto;
}

.pos-anim-container:hover {
  transform: scale(1.03);
  max-width: 220px;
}

.pos-anim-container:hover .pos-left-side {
  width: 100%;
}

.pos-left-side {
  background-color: #5de2a3;
  width: 130px;
  height: 120px;
  border-radius: 4px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
  overflow: hidden;
}

.pos-right-side {
  width: calc(100% - 130px);
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.pos-right-side:hover {
  background-color: #f9f7f9;
}

.pos-arrow {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}

.pos-new {
  font-size: 20px;
  font-family: inherit;
  font-weight: 700;
  color: #000;
  margin-left: 20px;
}

.pos-card {
  width: 70px;
  height: 46px;
  background-color: #c7ffbc;
  border-radius: 6px;
  position: absolute;
  display: flex;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  box-shadow: 9px 9px 9px -2px rgba(77, 200, 143, 0.72);
}

.pos-card-line {
  width: 65px;
  height: 13px;
  background-color: #80ea69;
  border-radius: 2px;
  margin-top: 7px;
}

.pos-buttons {
  width: 8px;
  height: 8px;
  background-color: #379e1f;
  box-shadow: 0 -10px 0 0 #26850e, 0 10px 0 0 #56be3e;
  border-radius: 50%;
  margin-top: 5px;
  transform: rotate(90deg);
  margin: 10px 0 0 -30px;
}

.pos-anim-container:hover .pos-card {
  animation: slide-top 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.pos-anim-container:hover .pos-post {
  animation: slide-post 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes slide-top {
  0% { transform: translateY(0); }
  50% { transform: translateY(-70px) rotate(90deg); }
  60% { transform: translateY(-70px) rotate(90deg); }
  100% { transform: translateY(-8px) rotate(90deg); }
}

.pos-post {
  width: 63px;
  height: 75px;
  background-color: #dddde0;
  position: absolute;
  z-index: 11;
  bottom: 10px;
  top: 120px;
  border-radius: 6px;
  overflow: hidden;
}

.pos-post-line {
  width: 47px;
  height: 9px;
  background-color: #545354;
  position: absolute;
  border-radius: 0px 0px 3px 3px;
  right: 8px;
  top: 8px;
}

.pos-post-line:before {
  content: "";
  position: absolute;
  width: 47px;
  height: 9px;
  background-color: #757375;
  top: -8px;
}

.pos-screen {
  width: 47px;
  height: 23px;
  background-color: #ffffff;
  position: absolute;
  top: 22px;
  right: 8px;
  border-radius: 3px;
}

.pos-numbers {
  width: 12px;
  height: 12px;
  background-color: #838183;
  box-shadow: 0 -18px 0 0 #838183, 0 18px 0 0 #838183;
  border-radius: 2px;
  position: absolute;
  transform: rotate(90deg);
  left: 25px;
  top: 52px;
}

.pos-numbers-line2 {
  width: 12px;
  height: 12px;
  background-color: #aaa9ab;
  box-shadow: 0 -18px 0 0 #aaa9ab, 0 18px 0 0 #aaa9ab;
  border-radius: 2px;
  position: absolute;
  transform: rotate(90deg);
  left: 25px;
  top: 68px;
}

@keyframes slide-post {
  50% { transform: translateY(0); }
  100% { transform: translateY(-70px); }
}

.pos-dollar {
  position: absolute;
  font-size: 16px;
  font-family: inherit;
  font-weight: 800;
  width: 100%;
  left: 0;
  top: 0;
  color: #4b953b;
  text-align: center;
}

.pos-anim-container:hover .pos-dollar {
  animation: fade-in-fwd 0.3s 1s backwards;
}

@keyframes fade-in-fwd {
  0% { opacity: 0; transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media only screen and (max-width: 480px) {
  .pos-anim-container {
    transform: scale(0.9);
  }
  .pos-anim-container:hover {
    transform: scale(0.94);
  }
}

/* --- Animated Button for Recharge (chase2k25) --- */
.pos-anim-container-btn {
  background-color: #fff7e6;
  display: flex;
  width: 250px;
  height: 75px;
  position: relative;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pos-anim-container-btn:hover {
  transform: scale(1.03);
  width: 150px;
}

.pos-anim-container-btn:hover .pos-left-side-btn {
  width: 100%;
}

.pos-left-side-btn {
  background: linear-gradient(135deg, #ff8c00, #ff4d4d);
  width: 85px;
  height: 75px;
  border-radius: 4px 0 0 4px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
  overflow: hidden;
}

.pos-right-side-btn {
  width: calc(100% - 85px);
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.pos-right-side-btn:hover {
  background-color: #ffecd1;
}

.pos-arrow-btn {
  width: 14px;
  height: 14px;
  margin-right: 12px;
}

.pos-new-btn {
  font-size: 15px;
  font-family: inherit;
  font-weight: 700;
  margin-left: 12px;
  color: #333;
}

.pos-card-btn {
  width: 48px;
  height: 30px;
  background-color: #ffb366;
  border-radius: 4px;
  position: absolute;
  display: flex;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  box-shadow: 5px 5px 5px -2px rgba(255, 77, 77, 0.4);
}

.pos-card-line-btn {
  width: 42px;
  height: 8px;
  background-color: #ffcc99;
  border-radius: 1px;
  margin-top: 4px;
}

.pos-buttons-btn {
  width: 5px;
  height: 5px;
  background-color: #cc4b00;
  box-shadow: 0 -6px 0 0 #992d00, 0 6px 0 0 #ff6a1a;
  border-radius: 50%;
  margin-top: 3px;
  transform: rotate(90deg);
  margin: 6px 0 0 -18px;
}

.pos-anim-container-btn:hover .pos-card-btn {
  animation: slide-top-btn 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.pos-anim-container-btn:hover .pos-post-btn {
  animation: slide-post-btn 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes slide-top-btn {
  0% { transform: translateY(0); }
  50% { transform: translateY(-45px) rotate(90deg); }
  60% { transform: translateY(-45px) rotate(90deg); }
  100% { transform: translateY(-5px) rotate(90deg); }
}

.pos-post-btn {
  width: 42px;
  height: 50px;
  background-color: #f5f5f5;
  position: absolute;
  z-index: 11;
  bottom: 6px;
  top: 75px;
  border-radius: 4px;
  overflow: hidden;
}

.pos-post-line-btn {
  width: 32px;
  height: 5px;
  background-color: #666;
  position: absolute;
  border-radius: 0 0 2px 2px;
  right: 5px;
  top: 5px;
}

.pos-post-line-btn:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 5px;
  background-color: #888;
  top: -5px;
}

.pos-screen-btn {
  width: 32px;
  height: 15px;
  background-color: #ffffff;
  position: absolute;
  top: 14px;
  right: 5px;
  border-radius: 2px;
}

.pos-numbers-btn {
  width: 7px;
  height: 7px;
  background-color: #999;
  box-shadow: 0 -11px 0 0 #999, 0 11px 0 0 #999;
  border-radius: 1px;
  position: absolute;
  transform: rotate(90deg);
  left: 17px;
  top: 34px;
}

.pos-numbers-line2-btn {
  width: 7px;
  height: 7px;
  background-color: #bbb;
  box-shadow: 0 -11px 0 0 #bbb, 0 11px 0 0 #bbb;
  border-radius: 1px;
  position: absolute;
  transform: rotate(90deg);
  left: 17px;
  top: 45px;
}

@keyframes slide-post-btn {
  50% { transform: translateY(0); }
  100% { transform: translateY(-45px); }
}

.pos-icon-btn {
  position: absolute;
  font-size: 11px;
  font-family: inherit;
  font-weight: 800;
  width: 100%;
  left: 0;
  top: 0;
  color: #d32f2f;
  text-align: center;
}

.pos-anim-container-btn:hover .pos-icon-btn {
  animation: fade-in-fwd-btn 0.3s 0.7s backwards;
}

@keyframes fade-in-fwd-btn {
  0% { opacity: 0; transform: translateY(-3px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media only screen and (max-width: 480px) {
  .pos-anim-container-btn {
    transform: scale(0.9);
  }
  .pos-anim-container-btn:hover {
    transform: scale(0.93);
  }
}

.pos-anim-container-btn.expanding {
  transform: scale(1.5) !important;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease-in-out !important;
}

/* From Uiverse.io by faxriddin20 - Share Button */
.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(66, 13, 240);
  width: 100%;
  height: 45px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  outline: 2px solid #270092;
  cursor: pointer;
  transition: ease 0.1s all;
  margin-top: 10px;
}

.share-button:hover {
  outline-offset: 3px;
  transform: scale(1.05) rotate(1deg);
  background-color: blue;
  box-shadow: 2px 10px #cdcbd4;
}

.share-icon {
  color: #270092;
  margin-right: 8px;
}

.share-text {
  margin-left: 5px;
  color: #fff;
}

﻿/* --- Secondary Nav Bar (categories) --- */
.gk-subnav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
}
.gk-subnav::-webkit-scrollbar { display: none; }
.gk-subnav a {
    padding: 8px 14px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.82rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.gk-subnav a:hover, .gk-subnav a.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* --- Features strip (global) --- */
.gk-features { display: flex; gap: 12px; overflow-x: auto; padding: 16px 0; margin: 8px 0; scrollbar-width: none; }
.gk-features::-webkit-scrollbar { display: none; }
.gk-feature { display: flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 10px; padding: 10px 16px; white-space: nowrap; flex-shrink: 0; font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: all 0.2s; }
.gk-feature:hover { border-color: var(--accent-primary); color: var(--text-main); transform: translateY(-2px); }
.gk-feature.active { background: var(--accent-primary); color: #fff; border-color: var(--accent-primary); }
.gk-feature i { font-size: 1.1rem; }
.gk-feature.active i { color: #fff; }
.gk-feature:not(.active) i { color: var(--accent-primary); }

/* --- Reviews Grid (global) --- */
.gk-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 16px; }
@media(max-width: 768px) { .gk-reviews-grid { grid-template-columns: 1fr; } }


/* ===== GLOBAL FRIENDS SIDE PANEL STYLES ===== */
.gk-friends-panel {
    position: fixed;
    right: 0; top: 60px; bottom: 0;
    width: 320px;
    background: var(--bg-card);
    border-left: 1px solid var(--glass-border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1rem;
    overflow-y: auto;
}
.gk-friends-panel.open {
    transform: translateX(0);
}
.gk-friends-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}
.gk-friends-panel-backdrop.open {
    display: block;
}
