/* ============================================
   AURELIANBGD - Premium Audio & Computing Accessories
   Bangladesh E-commerce - Blue White Tech Theme
   ============================================ */

/* ===== CSS Variables - Blue White Tech ===== */
:root {
  /* Primary Colors - Bright Blue Gradient */
  --color-primary: #0075FF;
  --color-primary-light: #00C2FF;
  --color-accent: #0075FF;
  --color-accent-light: #00C2FF;
  --color-accent-dark: #0052CC;
  --color-cta: #0075FF;

  /* New: Bright Blue to Cyan Gradient */
  --gradient-tech: linear-gradient(135deg, #00C2FF 0%, #0075FF 100%);
  --gradient-accent: linear-gradient(135deg, #00C2FF 0%, #0075FF 100%);
  --gradient-light: linear-gradient(180deg, #F0F7FF 0%, #E5F3FF 100%);

  /* Background Colors - Light Blue Gray */
  --color-bg: #F0F7FF;
  --color-bg-alt: #E5F3FF;
  --color-bg-card: #FFFFFF;
  --color-bg-dark: #003D80;
  --color-bg-dark-secondary: #0052CC;

  /* Text Colors */
  --color-text: #003D80;
  --color-text-secondary: #0052CC;
  --color-text-light: #4A7BC7;
  --color-text-muted: #7CA3D6;
  --color-text-inverse: #FFFFFF;

  /* Border Colors - Light Blue */
  --color-border: #D0E5FF;
  --color-border-light: #E5F3FF;
  --color-border-dark: #0075FF;

  /* Shadows - Blue Tinted */
  --shadow-sm: 0 1px 2px rgba(0, 117, 255, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 117, 255, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 117, 255, 0.15);
  --shadow-xl: 0 20px 25px -5px rgba(0, 117, 255, 0.2);
  --shadow-card: 0 8px 30px rgba(0, 117, 255, 0.1);
  --shadow-card-hover: 0 16px 40px rgba(0, 117, 255, 0.2);
  --shadow-tech: 0 0 30px rgba(0, 194, 255, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 117, 255, 0.4);

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-bg-dark: rgba(0, 61, 128, 0.95);
  --glass-bg-translucent: rgba(240, 247, 255, 0.8);
  --glass-border: rgba(0, 194, 255, 0.3);
  --glass-blur: 20px;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-slower: 500ms ease;

  /* Currency */
  --currency-symbol: '৳';
}

/* ===== Base Styles ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
  margin: 0 0 1rem;
  color: var(--color-text-light);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

/* ===== Utility Classes ===== */

/* Backgrounds */
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-accent); }
.bg-card { background-color: var(--color-bg-card); }
.bg-alt { background-color: var(--color-bg-alt); }
.bg-tech-gradient { background: var(--gradient-tech); }

/* Text Colors */
.text-primary { color: var(--color-text); }
.text-secondary { color: var(--color-text-secondary); }
.text-light { color: var(--color-text-light); }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-inverse { color: var(--color-text-inverse); }

/* Borders */
.border-accent { border-color: var(--color-accent); }
.border-light { border-color: var(--color-border-light); }
.border-default { border-color: var(--color-border); }
.border-blue { border-color: var(--color-border); }

/* Glass Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
}

.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Button Styles ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--gradient-tech);
  color: white;
  box-shadow: var(--shadow-tech);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: scale(1.05);
}

.btn-dark {
  background: var(--color-bg-dark);
  color: white;
}

.btn-dark:hover {
  background: var(--color-accent-dark);
  transform: scale(1.05);
}

/* ===== Card Styles - Floating ===== */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}

.card-floating {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.card-floating::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-tech);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card-floating:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border);
}

.card-floating:hover::before {
  opacity: 1;
}

/* ===== Form Styles ===== */
.input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 117, 255, 0.1);
}

.input::placeholder {
  color: var(--color-text-muted);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(0, 194, 255, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes lightSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

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

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

.animate-pulse-glow {
  animation: pulse-glow 2s infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ===== Layout Utilities ===== */
.container-custom {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding:1rem;
}

@media (min-width: 640px) {
  .container-custom { padding: 1.5rem; }
}

@media (min-width: 1024px) {
  .container-custom { padding: 2rem; }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

/* ===== Grid Layouts ===== */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow-hidden;
  background: var(--gradient-light);
}

.hero-dark {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-dark-secondary) 100%);
  color: white;
}

.hero-pattern {
  position: relative;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(0, 194, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 117, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== Dividers ===== */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 2rem 0;
}

.divider-gradient {
  height: 2px;
  background: var(--gradient-tech);
  margin: 2rem 0;
}

.divider-short {
  width: 60px;
  height: 2px;
  background: var(--gradient-tech);
  margin: 1rem 0;
}

/* ===== Badge / Tag ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.badge-tech {
  background: rgba(0, 117, 255, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(0, 194, 255, 0.3);
}

.badge-dark {
  background: var(--color-bg-dark);
  color: white;
}

.badge-bubble {
  background: var(--gradient-tech);
  color: white;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== Product Card ===== */
.product-card {
  position: relative;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform var(--transition-slower);
}

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

.product-card-body {
  padding: 1.25rem;
}

.product-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.product-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--gradient-tech);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card-price-original {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* ===== Rating Stars ===== */
.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating-star {
  color: var(--color-accent);
}

.rating-star-empty {
  color: var(--color-border);
}

/* ===== Responsive Utilities ===== */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet { display: none !important; }
}

@media (min-width: 1024px) {
  .hide-desktop { display: none !important; }
}

/* ===== Focus States ===== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== Print Styles ===== */
@media print {
  body {
    background: white;
    color: black;
  }

  .no-print {
    display: none !important;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 1rem;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* ===== Utility Classes ===== */

/* Backgrounds */
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-card { background-color: var(--color-bg-card); }
.bg-alt { background-color: var(--color-bg-alt); }

/* Text Colors */
.text-primary { color: var(--color-text); }
.text-secondary { color: var(--color-text-secondary); }
.text-light { color: var(--color-text-light); }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-inverse { color: var(--color-text-inverse); }

/* Borders */
.border-accent { border-color: var(--color-accent); }
.border-light { border-color: var(--color-border-light); }
.border-default { border-color: var(--color-border); }

/* Glass Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
}

.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gold Gradient -> Sky Cyan Gradient */
.gradient-gold {
  background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 50%, #22D3EE 100%);
}

.gradient-gold-hover:hover {
  background: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 50%, #22D3EE 100%);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Card Styles ===== */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}

.card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

/* ===== Button Styles ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sky), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  box-shadow: var(--shadow-sky-hover), var(--shadow-glow);
  transform: translateY(-2px);
  color: var(--color-text-inverse);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn-dark:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
}

/* ===== Form Styles ===== */
.input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.input::placeholder {
  color: var(--color-text-muted);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

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

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease forwards;
}

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

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animate-pulse-gold {
  animation: pulse-gold 2s infinite;
}

/* Stagger Animation Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }
.delay-800 { animation-delay: 800ms; }

/* ===== Layout Utilities ===== */
.container-custom {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

@media (min-width: 640px) {
  .container-custom { padding: 1.5rem; }
}

@media (min-width: 1024px) {
  .container-custom { padding: 2rem; }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

/* ===== Grid Layouts ===== */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.bento-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-slow);
}

.bento-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.bento-large {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .bento-large {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* ===== Hero Section ===== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-dark {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-text-inverse);
}

.hero-pattern {
  position: relative;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== Dividers ===== */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 2rem 0;
}

.divider-gold {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 2rem 0;
}

.divider-gold-short {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: 1rem 0;
}

/* ===== Badge / Tag ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  background: linear-gradient(135deg, #00C2FF 0%, #0075FF 100%);
  color: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 117, 255, 0.3);
}

.badge-dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* ===== Product Card ===== */
.product-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f8fcff 100%);
  border: 1px solid rgba(208, 229, 255, 0.6);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 6px rgba(0, 117, 255, 0.04),
    0 12px 24px rgba(0, 117, 255, 0.08),
    0 24px 48px rgba(0, 117, 255, 0.06);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00C2FF, #0075FF, #0052CC);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 8px 10px rgba(0, 117, 255, 0.06),
    0 20px 35px rgba(0, 117, 255, 0.1),
    0 40px 60px rgba(0, 117, 255, 0.1);
  border-color: rgba(0, 194, 255, 0.4);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform var(--transition-slower);
}

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

.product-card-body {
  padding: 1.25rem;
}

.product-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.product-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-accent-dark);
}

.product-card-price-original {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* ===== Rating Stars ===== */
.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating-star {
  color: var(--color-accent);
}

.rating-star-empty {
  color: var(--color-border);
}

.rating-count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

/* ===== Navigation ===== */
.nav-link {
  position: relative;
  color: var(--color-text);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-accent-dark);
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== Table Styles ===== */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
}

.table th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table tr:hover td {
  background: var(--color-bg-alt);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 4rem 0 2rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--color-accent);
}

.footer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-inverse);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

/* ===== Responsive Utilities ===== */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet { display: none !important; }
}

@media (min-width: 1024px) {
  .hide-desktop { display: none !important; }
}

/* ===== Focus States (Accessibility) ===== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== Cursor ===== */
.cursor-pointer {
  cursor: pointer;
}

/* ===== Print Styles ===== */
@media print {
  body {
    background: white;
    color: black;
  }

  .no-print {
    display: none !important;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
