/* Mystream Premium Styling System v1.0 */

:root {
  --primary-color: #5100E7;
  --secondary-color: #7B3EFF;
  --accent-color: #A67CFF;

  --bg-dark: #070114;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-glass-hover: rgba(255, 255, 255, 0.15);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);

  --success: #00F076;
  --warning: #FFB300;
  --error: #FF3B30;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elastic: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 1. Global Reset & Body Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-dark);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Base glowing background shapes */
body::before {
  content: '';
  position: fixed;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(81, 0, 231, 0.12) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(123, 62, 255, 0.08) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
}

::-webkit-scrollbar-thumb {
  background: rgba(123, 62, 255, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(123, 62, 255, 0.4);
}

/* Typography settings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* 2. Glassmorphism Utilities */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.glass-interactive:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px 0 rgba(81, 0, 231, 0.15);
}

/* Glow Badge */
.glow-badge {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  box-shadow: 0 0 12px currentColor;
}

.badge-popular {
  background: rgba(123, 62, 255, 0.15);
  color: var(--accent-color);
  border: 1px solid rgba(123, 62, 255, 0.3);
}

.badge-bestseller {
  background: rgba(0, 240, 118, 0.15);
  color: var(--success);
  border: 1px solid rgba(0, 240, 118, 0.3);
}

.badge-limited {
  background: rgba(255, 179, 0, 0.15);
  color: var(--warning);
  border: 1px solid rgba(255, 179, 0, 0.3);
}

.badge-new {
  background: rgba(81, 0, 231, 0.15);
  color: #C5A4FF;
  border: 1px solid rgba(81, 0, 231, 0.3);
}

/* 3. Header & Navigation */
header.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--border-glass);
  background: rgba(7, 1, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 30%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.brand-logo .dot {
  color: var(--secondary-color);
  -webkit-text-fill-color: initial;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(166, 124, 255, 0.3);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 4. Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 4px 20px rgba(81, 0, 231, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(81, 0, 231, 0.6);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-smooth);
  color: #fff;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.btn-icon .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--error);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

/* Hamburger Menu button */
.menu-toggle {
  display: none;
}

/* 5. Hero Section (Mobile-First) */
.hero-section {
  padding: 24px 16px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 12px;
  min-height: auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  width: 100%;
  grid-column: 1;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 60%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 100%;
  text-align: left;
}

.hero-content p {
  font-size: 0.82rem;
  max-width: 100%;
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: left;
}

/* Trust Points: stacked vertical checkmarks list */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  margin: 4px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 550;
  color: var(--text-secondary);
}

.check-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--success);
  color: var(--bg-dark);
  flex-shrink: 0;
}

.check-icon-wrapper svg {
  width: 10px;
  height: 10px;
  stroke-width: 4px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
  grid-column: 1 / -1;
}

.hero-actions .btn {
  flex: 1;
  height: 52px;
  font-size: 0.9rem;
  border-radius: 12px;
}

/* Mascot Wrapper with Animations */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  grid-column: 2;
}

.mascot-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: clamp(130px, 42vw, 180px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 0, 231, 0.35) 0%, transparent 70%);
  filter: blur(15px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite alternate;
}

.mascot-img {
  width: 145%;
  height: 145%;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* 6. General Page Sections Structure */
.section {
  padding: 24px 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 6vw, 2.5rem);
  background: linear-gradient(135deg, #fff 60%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: clamp(0.88rem, 3vw, 1rem);
  max-width: 600px;
  padding: 0 8px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 10px;
}

/* 7. Categories Scroll Track (Mobile-First) */
#categories-section {
  padding-top: 8px;
  padding-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
}

.categories-scroll-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0;
}

.categories-scroll-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(4px, 2vw, 12px);
  padding: 8px 8px 16px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.categories-scroll-container::-webkit-scrollbar {
  display: none;
}

.category-scroll-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  transition: var(--transition-smooth);
  width: 100%;
}

.category-scroll-card:hover {
  transform: translateY(-4px);
}

.category-icon-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 80px;
  border-radius: 18px;
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: clamp(1.15rem, 5vw, 1.5rem);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-elastic);
}

.category-scroll-card:hover .category-icon-wrapper {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(81, 0, 231, 0.25);
}

.category-scroll-card h3 {
  font-size: clamp(0.72rem, 2.2vw, 0.85rem);
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition-smooth);
}

.category-scroll-card:hover h3 {
  color: #fff;
}

/* Horizontal Scroll Indicators - Premium Fade Overlays */
.categories-scroll-wrapper::before,
.categories-scroll-wrapper::after {
  display: none !important;
}

/* 8. Featured & Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.card-badge-container {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
}

.product-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-logo-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.product-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-meta h3 {
  font-size: 1.25rem;
  color: #fff;
}

.product-meta .category-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  list-style: none;
}

.product-features li svg {
  color: var(--accent-color);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-box .label-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-box .price-value {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

.price-box .price-value .currency {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-right: 2px;
}

/* 8b. WhatsApp Community Section */
.wa-community-section {
  padding: 0 clamp(12px, 4vw, 32px);
}

.wa-community-banner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 0;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(81, 0, 237, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(96, 239, 255, 0.12) 0%, transparent 50%),
    rgba(10, 4, 28, 0.85) !important;
  border: 1px solid rgba(96, 239, 255, 0.12) !important;
}

.wa-community-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.wa-mascot-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(81, 0, 237, 0.4));
  animation: waFloatMascot 4s ease-in-out infinite;
}

@keyframes waFloatMascot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.wa-community-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wa-community-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wa-highlight {
  color: #25D366;
  text-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.wa-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.wa-benefit-card:hover {
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(81, 0, 237, 0.25);
}

.wa-benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(81, 0, 237, 0.5), rgba(96, 239, 255, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 12px rgba(81, 0, 237, 0.3);
}

.wa-benefit-icon i,
.wa-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.wa-benefit-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.wa-benefit-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.wa-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.wa-join-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.wa-community-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  align-self: flex-start;
  width: 100%;
  flex-wrap: wrap;
}

.wa-community-buttons .wa-join-btn {
  margin-top: 0;
}

/* Secondary button: Outline/glass version of the main button */
.wa-join-btn.secondary-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  color: #fff !important;
}

.wa-join-btn.secondary-btn:hover {
  background: rgba(37, 211, 102, 0.12) !important;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.25) !important;
  transform: scale(1.04);
}

/* WhatsApp Community — Mobile responsive */
@media (max-width: 768px) {
  .wa-community-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: clamp(20px, 5vw, 32px);
  }

  .wa-community-left {
    padding: 0;
  }

  .wa-mascot-img {
    max-width: 220px;
  }

  .wa-community-right {
    align-items: center;
  }

  .wa-community-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .wa-benefit-card {
    padding: 12px 16px;
  }

  .wa-benefit-text h4 {
    font-size: 0.82rem;
  }

  .wa-benefit-text p {
    font-size: 0.75rem;
  }

  .wa-community-buttons {
    flex-direction: column;
    align-self: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 300px;
  }
  
  .wa-community-buttons .wa-join-btn {
    width: 100% !important;
    max-width: none !important;
    margin-top: 0 !important;
  }
}

/* 9. Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(81, 0, 231, 0.3);
}

.why-card h3 {
  font-size: 1.3rem;
  color: #fff;
}

/* 10. Customer Reviews Slider */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--warning);
}

.review-comment {
  font-style: italic;
  font-size: 0.95rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-meta h4 {
  font-size: 0.95rem;
  color: #fff;
}

.review-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 11. Accordion FAQs */
.faqs-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.92rem, 3vw, 1.1rem);
  font-weight: 600;
}

.faq-trigger svg {
  transition: var(--transition-smooth);
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 20px;
}

/* 12. Listing Page Filters Layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-top: 40px;
}

.filters-sidebar {
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 20px;
}

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

.filter-group h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary-color);
  cursor: pointer;
}

.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.catalog-header h3 {
  font-size: 1.5rem;
}

.catalog-header .sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-header select,
.form-control select,
.form-control input,
.form-control textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.catalog-header select:focus,
.form-control input:focus,
.form-control textarea:focus {
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.08);
}

/* 13. Detail Page Grid Layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  margin-top: 40px;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.detail-card {
  padding: clamp(16px, 4vw, 32px);
}

.detail-header-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-title h1 {
  font-size: 2.2rem;
}

.detail-title .cat-badge {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--accent-color);
  margin-top: 6px;
  display: inline-block;
}

.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.detail-purchase-panel {
  padding: clamp(16px, 4vw, 32px);
  height: fit-content;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-selector-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-selector-group label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Segmented Control / Profile Toggle styling */
.segmented-control {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 4px;
  gap: 4px;
}

.segmented-control button {
  flex: 1;
  background: transparent;
  border: 1.5px solid transparent;
  padding: 8.5px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.6;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.segmented-control button.active {
  background: rgba(123, 62, 255, 0.25);
  border-color: var(--secondary-color);
  color: #ffffff;
  opacity: 1;
  box-shadow: 0 0 16px rgba(123, 62, 255, 0.2);
}

/* Duration card selector */
.duration-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.duration-selector-card {
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
}

/* Custom Radio Button styling */
.custom-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-glass-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.custom-radio.checked {
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(123, 62, 255, 0.4);
}

.radio-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  transition: var(--transition-smooth);
}

.custom-radio.checked .radio-inner {
  background: var(--secondary-color);
  box-shadow: 0 0 8px var(--secondary-color);
}

.duration-card-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.duration-card-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-grow: 1;
}

.duration-badges-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.duration-selector-card .duration-time {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.duration-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.duration-selector-card .price-original {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-weight: 500;
}

.duration-selector-card .duration-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.duration-card-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* Default state: Purple badge for monthly price (when there are no savings) */
.duration-monthly-price-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-block;
}

.duration-monthly-price-badge.purple-pill {
  color: #c5a4ff;
  background: rgba(123, 62, 255, 0.15);
  border: 1px solid rgba(123, 62, 255, 0.3);
}

.duration-monthly-price-badge.green-pill {
  color: var(--success);
  background: rgba(0, 240, 118, 0.1);
  border: 1px solid rgba(0, 240, 118, 0.2);
}

.duration-savings-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(0, 240, 118, 0.1);
  border: 1px solid rgba(0, 240, 118, 0.2);
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-block;
}

.duration-selector-card.active {
  border-color: var(--secondary-color);
  background: rgba(123, 62, 255, 0.08);
  box-shadow: 0 0 16px rgba(123, 62, 255, 0.2);
}

.duration-selector-card.active .custom-radio {
  border-color: var(--secondary-color);
}

/* Mobile responsive selector adjustments to prevent badge wrapping down to 320px screen width */
@media (max-width: 480px) {
  .duration-selector-card {
    padding: 12px 14px;
    gap: 10px;
  }

  .duration-card-center {
    gap: 6px;
  }

  .duration-badges-row {
    gap: 4px;
  }

  .duration-selector-card .duration-time {
    font-size: 1.05rem;
  }

  .duration-price-row {
    gap: 6px;
  }

  .duration-selector-card .duration-price {
    font-size: 1.45rem;
  }

  .duration-selector-card .price-original {
    font-size: 0.92rem;
  }

  .duration-monthly-price-badge,
  .duration-savings-badge {
    font-size: 0.68rem;
    padding: 3px 6px;
    border-radius: 6px;
  }
}

.duration-selector-card .best-value-ribbon {
  position: absolute;
  top: -8px;
  right: 12px;
  background: #ffb300;
  color: #070114;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(255, 179, 0, 0.4);
  z-index: 10;
}

.summary-box {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 18px;
  border: 1px dashed var(--border-glass);
  margin-top: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.summary-row:last-child {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid var(--border-glass);
}

.summary-row.total .val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

/* 14. Cart Drawer Page Layout */
.cart-layout {
  max-width: 900px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.cart-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Mobile: wrap cart item into 2 rows so nothing overflows */
.cart-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 10px 12px;
  padding: 14px;
}

.cart-item-logo {
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-info {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Delete button top-right */
.cart-item>.btn-icon {
  grid-column: 3;
  grid-row: 1;
  width: 32px;
  height: 32px;
}

/* Qty + price on second row spanning full width */
.qty-stepper {
  grid-column: 1 / 3;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
}

.qty-stepper button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.qty-stepper button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.qty-stepper .count {
  font-size: 0.95rem;
  font-weight: 700;
  width: 20px;
  text-align: center;
}

.cart-item-price {
  grid-column: 3;
  grid-row: 2;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}

.cart-summary-panel {
  padding: 20px;
  height: fit-content;
}

.coupon-bar {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
  min-width: 0;
}

.coupon-bar input {
  flex: 1;
  min-width: 0;
}

.coupon-bar .btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 14px;
}

/* Admin Coupon Checklist Inputs */
.checklist-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 160px;
  overflow-y: auto;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
}

.checklist-container::-webkit-scrollbar {
  width: 4px;
}

.checklist-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.checklist-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--accent-color);
  flex-shrink: 0;
  margin: 0;
}

.checklist-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 15. Admin Dashboard Design */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  margin-top: 32px;
}

.admin-sidebar {
  padding: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.admin-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.admin-nav-item.active {
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: 0 4px 12px rgba(81, 0, 231, 0.25);
}

.admin-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.admin-section-card {
  padding: 28px;
  display: none;
  /* Controlled via JS */
}

.admin-section-card.active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Dashboard Analytics Widgets */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.analytics-widget {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.analytics-widget .title {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.analytics-widget .value {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

/* Admin Table Design */
.admin-table-container {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th,
.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.9rem;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-weight: 600;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.admin-table img.table-thumb {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px;
}

/* 16. Forms Controls */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-control.full-width {
  grid-column: span 2;
}

.form-control label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Modals Overlay & Body Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 1, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: none;
  /* Managed by JS */
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: #fff;
}

/* 17. Footer CSS */
footer.app-footer {
  border-top: 1px solid var(--border-glass);
  background: rgba(7, 1, 20, 0.8);
  padding: 40px 24px 32px;
  margin-top: 40px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.footer-col ul a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid var(--border-glass);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  color: inherit;
}

.footer-socials a:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Contact form card */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  margin-top: 40px;
}

/* Informational Text layout (about, policies) */
.rich-text-layout {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rich-text-layout h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 12px;
}

/* Sticky Bottom Mobile CTA Bar */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(7, 1, 20, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid var(--border-glass);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.sticky-cart-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-cart-info .count {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.sticky-cart-info .total {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Base Responsive layouts for Mobile (Defaults) */
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.filters-sidebar {
  position: static;
  width: 100%;
}

/* Refactored Catalog Layout (2-Column Grid Cards) */
.products-grid-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 12px;
}

.catalog-product-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}

.catalog-product-card.netflix-theme {
  border-color: rgba(123, 62, 255, 0.25);
}

.catalog-product-card.prime-theme {
  border-color: rgba(0, 119, 255, 0.25);
}

.catalog-product-card.spotify-theme {
  border-color: rgba(30, 215, 96, 0.25);
}

.catalog-product-card.hotstar-theme {
  border-color: rgba(224, 0, 112, 0.25);
}

.catalog-product-card.crunchy-theme {
  border-color: rgba(244, 117, 33, 0.25);
}

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

.catalog-product-card.netflix-theme:hover {
  border-color: rgba(123, 62, 255, 0.6);
  box-shadow: 0 12px 40px rgba(123, 62, 255, 0.25);
}

.catalog-product-card.prime-theme:hover {
  border-color: rgba(0, 119, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 119, 255, 0.25);
}

.catalog-product-card.spotify-theme:hover {
  border-color: rgba(30, 215, 96, 0.6);
  box-shadow: 0 12px 40px rgba(30, 215, 96, 0.25);
}

.catalog-product-card.hotstar-theme:hover {
  border-color: rgba(224, 0, 112, 0.6);
  box-shadow: 0 12px 40px rgba(224, 0, 112, 0.25);
}

.catalog-product-card.crunchy-theme:hover {
  border-color: rgba(244, 117, 33, 0.6);
  box-shadow: 0 12px 40px rgba(244, 117, 33, 0.25);
}

.catalog-product-card.netflix-theme .catalog-card-image-box {
  background: #000000;
}

.catalog-product-card.prime-theme .catalog-card-image-box {
  background: #0056f5;
}

.catalog-product-card.spotify-theme .catalog-card-image-box {
  background: #000000;
}

.catalog-product-card.hotstar-theme .catalog-card-image-box {
  background: #0d0614;
}

.catalog-product-card.crunchy-theme .catalog-card-image-box {
  background: #000000;
}

/* Unified interactive zoom on card hover */
.catalog-product-card:hover .catalog-card-image-box img {
  transform: scale(1.05);
}

.catalog-product-card .card-badge-container {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
}

.catalog-product-card .glow-badge {
  height: 28px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  letter-spacing: normal;
  box-shadow: none;
}

.catalog-card-image-box {
  width: 100%;
  height: 140px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
  transition: var(--transition-smooth);
}

.catalog-card-image-box img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.catalog-card-info-box {
  padding: 20px;
  background: rgba(7, 1, 20, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.catalog-card-info-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
  min-height: 2.7em;
}

.catalog-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2px;
}

.price-current {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.price-original {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 400;
}

.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  border: none;
  box-shadow: 0 4px 16px rgba(81, 0, 231, 0.25);
  margin-top: auto;
  cursor: pointer;
}

.btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(81, 0, 231, 0.45);
  filter: brightness(1.15);
}

.btn-buy-now:active {
  transform: translateY(0) scale(0.96);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.detail-purchase-panel {
  position: static;
  width: 100%;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.admin-sidebar {
  flex-direction: row;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  border-radius: 16px;
}

.admin-nav-item {
  width: auto;
  display: inline-flex;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.nav-links {
  display: none;
  /* Handled by drawer menu on mobile */
}

.menu-toggle {
  display: flex;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}


/* Carousel Wrapper & Scroll Track styling for infinite auto-scrolling */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

/* Premium Netflix/Apple style edge gradient fades */
.carousel-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, #070114 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to left, #070114 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

#home-featured-list.products-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  gap: 16px;
  padding: 12px 16px 24px;
  margin: 0;
  scroll-behavior: auto;
  /* Required for continuous auto scroll */
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  touch-action: pan-x pan-y;
}

#home-featured-list.products-grid::-webkit-scrollbar {
  display: none;
}

/* Mobile responsive card sizes: 2.2 - 2.5 cards visible */
#home-featured-list.products-grid .catalog-product-card {
  flex: 0 0 calc(42% - 10px);
  /* Exactly ~2.38 cards visible */
  min-width: 140px;
}

@media (max-width: 767px) {

  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 24px;
    /* Narrower fade bands on small screens */
  }

  #home-featured-list.products-grid {
    padding: 12px 24px 24px;
  }

  /* General Mobile Card Adjustments for card content space */
  .catalog-card-info-box {
    padding: 12px;
    gap: 8px;
  }

  .catalog-card-info-box h3 {
    font-size: 0.95rem;
    min-height: 2.7em;
  }

  .btn-buy-now {
    font-size: 0.85rem;
    gap: 4px;
    white-space: nowrap;
    padding: 0 6px;
    height: 42px;
    border-radius: 12px;
  }
}

/* Tablet responsive card sizes: 3 - 4 cards visible */
@media (min-width: 768px) and (max-width: 1024px) {
  #home-featured-list.products-grid .catalog-product-card {
    flex: 0 0 calc(28% - 12px);
    /* Exactly ~3.5 cards visible */
  }
}

/* Desktop responsive card sizes: 4 - 5 cards visible */
@media (min-width: 1025px) {
  #home-featured-list.products-grid .catalog-product-card {
    flex: 0 0 calc(21% - 12px);
    /* Exactly ~4.7 cards visible */
  }
}


/* ==========================================
   TABLET & DESKTOP SCALE-UP RULES (MEDIA QUERIES)
   ========================================== */

@media (min-width: 768px) {

  /* Header Nav */
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  /* Hero */
  .hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
    padding: 120px 24px 80px;
    gap: 48px;
    min-height: calc(100vh - 80px);
  }

  .hero-content {
    order: 1;
    align-items: flex-start;
    text-align: left;
    grid-column: 1;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    max-width: 600px;
  }

  .hero-content p {
    font-size: 1.15rem;
    max-width: 580px;
  }

  .trust-list {
    gap: 12px;
    margin: 12px 0;
  }

  .trust-item {
    font-size: 0.95rem;
  }

  .check-icon-wrapper {
    width: 20px;
    height: 20px;
  }

  .check-icon-wrapper svg {
    width: 12px;
    height: 12px;
  }

  .hero-actions {
    flex-direction: row;
    width: auto;
    order: 3;
    margin-top: 16px;
    grid-column: 1;
  }

  .hero-actions .btn {
    width: auto;
    height: auto;
    padding: 12px 28px;
    border-radius: 14px;
    flex: none;
  }

  .hero-visual {
    order: 2;
    width: auto;
    grid-column: 2;
  }

  .mascot-container {
    width: 380px;
    height: 380px;
    max-width: 100%;
    max-height: 100%;
  }

  .mascot-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  /* Categories Desktop Scale-up */
  #categories-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .categories-scroll-container {
    overflow-x: visible;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    display: grid;
    gap: 24px;
    padding: 24px 0;
    scroll-snap-type: none;
  }

  .category-scroll-card {
    flex: none;
    flex-direction: column;
    gap: 12px;
  }

  .category-icon-wrapper {
    width: 80px;
    height: 80px;
    max-width: none;
    border-radius: 20px;
  }

  .category-scroll-card h3 {
    font-size: 0.95rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .categories-scroll-wrapper::before,
  .categories-scroll-wrapper::after {
    display: none !important;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
  }

  /* Catalog Layout */
  .catalog-layout {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }

  .filters-sidebar {
    position: sticky;
    top: 100px;
  }

  .products-grid-catalog {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
  }

  .catalog-card-image-box {
    height: 180px;
  }

  /* Detail Layout */
  .detail-layout {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 48px;
  }

  .detail-main {
    grid-column: 1;
    grid-row: 1;
  }

  .detail-faqs-card {
    grid-column: 1;
    grid-row: 2;
  }

  .detail-purchase-panel {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: sticky;
    top: 100px;
    align-self: start;
  }

  /* Cart Layout */
  .cart-layout {
    margin-top: 40px;
    grid-template-columns: 1.7fr 1.3fr;
    gap: 32px;
  }

  /* Cart item: revert to single row on tablet+ */
  .cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
  }

  .cart-item-logo {
    width: 52px;
    height: 52px;
    grid-column: unset;
    grid-row: unset;
  }

  .cart-item-info {
    grid-column: unset;
    grid-row: unset;
    flex: 1;
  }

  .cart-item-info h4 {
    font-size: 1.05rem;
    white-space: normal;
  }

  .cart-item-info p {
    font-size: 0.82rem;
    white-space: normal;
  }

  .cart-item>.btn-icon {
    grid-column: unset;
    grid-row: unset;
    width: 36px;
    height: 36px;
  }

  .qty-stepper {
    grid-column: unset;
    grid-row: unset;
    width: auto;
  }

  .cart-item-price {
    grid-column: unset;
    grid-row: unset;
    font-size: 1.15rem;
    min-width: 60px;
  }

  .cart-summary-panel {
    padding: 24px;
  }

  /* Admin Layout */
  .admin-layout {
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }

  .admin-sidebar {
    flex-direction: column;
    overflow-x: visible;
    white-space: normal;
    padding: 20px;
  }

  .admin-nav-item {
    width: 100%;
    display: flex;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }

  /* Footer */
  footer.app-footer {
    padding: 64px 24px 32px;
    margin-top: 80px;
  }

  /* Layout and Spacing Override for Tablet/Desktop */
  .section {
    padding: 80px 24px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  /* Hide sticky bottom CTA on tablet/desktop */
  .sticky-mobile-cta {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }
}

/* =========================================
   REWARDS SYSTEM – Spin Wheel Page
   ========================================= */

/* Phase wrapper containers */
.rewards-phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

/* Code entry card */
.rewards-entry-card {
  width: 100%;
  padding: clamp(24px, 6vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Error message */
.rewards-error-msg {
  color: var(--error);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
  letter-spacing: 0.03em;
}

/* Spin wheel outer ring */
#spin-wheel-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border: 8px solid #FFD700;
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(255, 215, 0, 0.45), 0 0 60px rgba(81, 0, 231, 0.3);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

#spin-wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

/* Downward-pointing triangle pointer at top of wheel */
.spin-pointer {
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 44px solid #FFD700;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.6));
}

/* Center brand logo overlay on wheel */
.spin-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.3);
  z-index: 5;
}

/* Rewards prize legend */
.rewards-legend {
  width: 100%;
  padding: clamp(16px, 4vw, 28px);
}

.rewards-legend h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 14px;
}

.rewards-legend ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rewards-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.rewards-legend .legend-emoji {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.rewards-legend .legend-label {
  font-weight: 600;
  color: var(--accent-color);
}

/* Result popup overlay */
#reward-result-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

#reward-result-popup.visible {
  display: flex;
}

.reward-result-card {
  max-width: 400px;
  width: 100%;
  padding: clamp(28px, 6vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reward-result-title {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffa0, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.reward-result-emoji {
  font-size: 5rem;
  line-height: 1;
}

.reward-result-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.reward-result-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Spin button wrapper */
.spin-btn-wrap {
  display: flex;
  justify-content: center;
}

/* Custom Select Dropdowns */
.custom-select-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.custom-select-container .native-select {
  display: none !important;
}

.custom-select-ui {
  position: relative;
  user-select: none;
  font-family: inherit;
  font-size: inherit;
  color: #fff;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: #fff;
  padding: 6px 10px;
  font-size: clamp(0.75rem, 2.5vw, 0.9rem);
  outline: none;
  cursor: pointer;
  min-height: 34px;
  gap: 8px;
  box-sizing: border-box;
  transition: border-color var(--transition-smooth, 0.2s), box-shadow var(--transition-smooth, 0.2s);
}

.custom-select-trigger:hover {
  border-color: rgba(123, 62, 255, 0.5);
}

.custom-select-container.open .custom-select-trigger {
  border-color: rgba(123, 62, 255, 0.8);
  box-shadow: 0 0 10px rgba(123, 62, 255, 0.4);
}

.custom-select-trigger .chevron {
  width: 8px;
  height: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg) translateY(-2px);
  transform-origin: center;
  transition: transform var(--transition-smooth, 0.2s);
  margin-left: 4px;
  display: inline-block;
  box-sizing: border-box;
}

.custom-select-container.open .custom-select-trigger .chevron {
  transform: rotate(135deg) translateY(-2px) translateX(-2px);
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: rgba(15, 6, 36, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(123, 62, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(123, 62, 255, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
  max-height: 200px;
  overflow-y: auto;
  padding: 6px 0;
}

.custom-select-container.open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-select-dropdown::-webkit-scrollbar {
  width: 6px;
}
.custom-select-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: rgba(123, 62, 255, 0.4);
  border-radius: 10px;
}
.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(123, 62, 255, 0.6);
}

/* Custom Select Dropdown opening upwards */
.custom-select-container.dropdown-up .custom-select-dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 6px;
  transform: translateY(10px) scale(0.95);
}

.custom-select-container.open.dropdown-up .custom-select-dropdown {
  transform: translateY(0) scale(1);
}

.custom-option {
  padding: 8px 12px;
  font-size: clamp(0.75rem, 2.5vw, 0.9rem);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-option:hover {
  background: rgba(123, 62, 255, 0.25);
  color: #fff;
}

.custom-option.selected {
  background: rgba(123, 62, 255, 0.45);
  color: #fff;
  font-weight: 600;
}

/* Touch targets optimized for mobile viewports */
@media (max-width: 768px) {
  .custom-select-trigger {
    padding: 10px 14px;
    min-height: 42px;
  }
  .custom-option {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* Styled native selects in the admin panel to match the premium dark theme */
#admin-view select,
.admin-layout select,
.admin-section-card select,
.modal-overlay select {
  background: #0f0624 !important;
  color: #ffffff !important;
  border: 1px solid rgba(123, 62, 255, 0.35) !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
  font-family: inherit !important;
  font-size: 0.88rem !important;
  outline: none !important;
  cursor: pointer !important;
  appearance: auto !important; /* Retain browser native select arrow */
  box-shadow: 0 0 10px rgba(123, 62, 255, 0.05) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#admin-view select:focus,
.admin-layout select:focus,
.admin-section-card select:focus,
.modal-overlay select:focus {
  border-color: rgba(123, 62, 255, 0.8) !important;
  box-shadow: 0 0 10px rgba(123, 62, 255, 0.3) !important;
}

/* Styled option tags inside native admin select menus where supported by browser */
#admin-view select option,
.admin-layout select option,
.admin-section-card select option,
.modal-overlay select option {
  background: #0f0624 !important;
  color: #ffffff !important;
}

/* Mobile-specific adjustments for secondary CTA buttons to reduce visual weight */
@media (max-width: 768px) {
  .btn-secondary {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    padding: 8px 16px !important;
    font-size: clamp(0.78rem, 2.2vw, 0.85rem) !important;
    border-radius: 10px !important;
    min-height: auto !important;
    box-sizing: border-box !important;
  }

  /* Prevent hero mascot horizontal overflow on small mobile screens */
  .mascot-container {
    max-width: clamp(80px, 35vw, 140px) !important;
  }
  .mascot-img {
    width: 120% !important;
    height: 120% !important;
  }
}

/* Toast notification: reposition to top-center and optimize layout */
.toast-notification {
  top: 20px !important;
  bottom: auto !important;
  right: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  
  /* Ensure horizontal row layout and prevent vertical stacking */
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  
  /* Sizing constraints to keep it compact and centered */
  width: max-content !important;
  max-width: 85vw !important;
  box-sizing: border-box !important;
}

/* Ensure text inside the toast wraps normally and stays aligned */
.toast-notification span {
  display: inline-block !important;
  white-space: normal !important;
  line-height: 1.4 !important;
  vertical-align: middle !important;
}

/* Specific styling to prevent the icon from shrinking or wrapping */
.toast-notification span:first-child {
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Mobile-specific toast optimizations to keep the layout in a compact single row */
@media (max-width: 768px) {
  .toast-notification {
    max-width: 90vw !important;
    padding: 12px 16px !important;
    gap: 8px !important;
    font-size: 14px !important;
  }
}

/* Out of Stock Follow Card Styling */
.out-of-stock-follow-card {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.out-of-stock-follow-card .follow-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.out-of-stock-follow-card .follow-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 280px;
  line-height: 1.5;
}

.follow-actions-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

/* Elegant Cyan/Teal Highlight Button */
.btn-cyan {
  background: linear-gradient(135deg, #00F2FE, #4FACFE); /* Vibrant Cyan/Azure Gradient */
  color: #070114 !important; /* Premium dark text contrast */
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0, 242, 254, 0.35);
  width: 100%;
  max-width: 220px;
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 242, 254, 0.55);
  filter: brightness(1.1);
}

.btn-cyan:active {
  transform: translateY(0) scale(0.97);
}