@import "https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap";
/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-card: #353535;
  --primary-color: #90a4ae;
  --secondary-color: #78909c;
  --accent-primary: #90a4ae;
  --accent-hover: #b0bec5;
  --accent-gold: #757575;
  --text-primary: #e0e0e0;
  --text-secondary: #bdbdbd;
  --text-muted: #757575;
  --border-color: #424242;
  --shadow-sm: 0 1px 3px #0006;
  --shadow-md: 0 4px 12px #00000080;
  --shadow-lg: 0 12px 40px #0009;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

body {
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Ubuntu, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Cantarell, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid #0000;
  border-image: linear-gradient(90deg, transparent 0%, var(--accent-gold) 10%, var(--primary-color) 30%, var(--secondary-color) 50%, var(--primary-color) 70%, var(--accent-gold) 90%, transparent 100%) 1;
  color: var(--text-primary);
  z-index: 100;
  background: #1a1a1af2;
  padding: .75rem 0;
  position: sticky;
  top: 0;
}

.site-header:before {
  content: "";
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 20%, var(--primary-color) 50%, var(--accent-gold) 80%, transparent 100%);
  opacity: .4;
  width: 200px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.site-header:after {
  content: "";
  background: var(--primary-color);
  clip-path: polygon(0% 0%, 20% 100%, 40% 0%, 60% 100%, 80% 0%, 100% 100%, 100% 0%);
  opacity: .6;
  width: 120px;
  height: 3px;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.site-header .container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.site-logo {
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  display: flex;
}

.site-logo img {
  object-fit: contain;
  width: auto;
  height: 40px;
}

.site-logo h1 {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
  -webkit-text-fill-color: transparent;
  letter-spacing: -.01em;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.main-nav a:hover {
  color: var(--accent-primary);
}

.category-nav {
  border-bottom: 2px solid #0000;
  border-image: linear-gradient(90deg, transparent 0%, var(--accent-gold) 15%, var(--primary-color) 50%, var(--accent-gold) 85%, transparent 100%) 1;
  z-index: 90;
  -webkit-backdrop-filter: blur(10px);
  background: #2a2422f2;
  border-radius: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 0;
  padding: 1rem;
  display: flex;
  position: sticky;
  top: 60px;
}

.category-nav:before {
  content: "";
  background: linear-gradient(180deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
  opacity: .15;
  clip-path: polygon(0% 0%, 100% 0%, 80% 50%, 100% 100%, 0% 100%, 20% 50%);
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 20px;
}

.category-nav:after {
  content: "";
  background: linear-gradient(180deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
  opacity: .15;
  clip-path: polygon(0% 0%, 100% 0%, 80% 50%, 100% 100%, 0% 100%, 20% 50%);
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 20px;
}

.category-link {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  align-items: center;
  padding: .75rem 1rem .8rem;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.category-link:hover {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.main-content {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  min-height: 60vh;
  padding: 2rem 1.5rem;
  position: relative;
}

.main-content:before {
  content: "";
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 20%, var(--primary-color) 50%, var(--accent-gold) 80%, transparent 100%);
  opacity: .3;
  width: 150px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.main-content:after {
  content: "";
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 25%, var(--primary-color) 50%, var(--accent-gold) 75%, transparent 100%);
  opacity: .25;
  width: 200px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: grid;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  height: 100%;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-card-link {
  color: inherit;
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none;
  display: flex;
}

.product-card:before, .product-card:after {
  content: "";
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  width: 40px;
  height: 40px;
  transition: opacity .3s;
  position: absolute;
}

.product-card:before {
  background: linear-gradient(135deg, var(--accent-gold) 0%, transparent 60%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0;
  left: 0;
}

.product-card:after {
  background: linear-gradient(-45deg, var(--accent-gold) 0%, transparent 60%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0;
  right: 0;
}

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

.product-card:hover:before, .product-card:hover:after {
  opacity: .3;
}

.product-image-container {
  background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
  flex-shrink: 0;
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.product-image {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

.category-badge {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  background: linear-gradient(135deg, #d4af3726 0%, #d4af370d 100%);
  margin: 0;
  padding: .5rem .875rem;
  font-size: .75rem;
  font-weight: 700;
}

.product-formats-list {
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
  flex-direction: column;
  gap: .5rem;
  padding: .75rem;
  display: flex;
}

.format-option {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .5rem .75rem;
  transition: all .2s;
  display: flex;
}

.format-option:hover {
  border-color: var(--primary-color);
}

.format-left {
  flex: 1;
  align-items: baseline;
  gap: .625rem;
  display: flex;
}

.format-name {
  color: var(--text-primary);
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 600;
}

.format-price {
  color: var(--primary-color);
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
}

.format-add-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  padding: .5rem .875rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  transition: all .2s;
  display: flex;
  box-shadow: 0 2px 6px #ff8c424d;
}

.format-add-btn:disabled {
  opacity: 1;
  cursor: default;
}

.format-add-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--primary-color) 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 12px #ff8c4280;
}

.format-add-btn:active:not(:disabled) {
  transform: scale(1);
}

.format-add-btn.adding {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  animation: .6s addToCartPulse;
  box-shadow: 0 2px 8px #27ae6066;
}

.format-add-btn.in-cart {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  box-shadow: 0 2px 8px #27ae604d;
}

.format-add-btn.in-cart:hover:not(:disabled) {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  box-shadow: 0 4px 12px #27ae6080;
}

@keyframes addToCartPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.product-info {
  flex-direction: column;
  flex-grow: 1;
  padding: 1.25rem;
  display: flex;
}

.product-title {
  color: var(--text-primary);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.1em;
  margin-bottom: .5rem;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.product-category {
  color: var(--text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 1.4em;
  margin-bottom: .75rem;
  font-size: .8rem;
  line-height: 1.4;
  overflow: hidden;
}

.product-cta {
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  padding-top: .75rem;
}

.cta-text {
  color: var(--accent-primary);
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.product-card:hover .cta-text {
  color: var(--accent-hover);
  gap: .75rem;
}

.product-formats {
  color: var(--text-muted);
  margin-top: .5rem;
  font-size: .8rem;
}

.hero-banner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  width: calc(100% + 4rem);
  box-shadow: var(--shadow-lg);
  margin: -2rem -2rem 2rem;
  position: relative;
  overflow: hidden;
}

.banner-image-container {
  width: 100%;
  height: 400px;
  position: relative;
}

.banner-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.banner-overlay {
  justify-content: flex-end;
  align-items: flex-end;
  padding: 2rem;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.banner-content {
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  display: flex;
}

.cta-button {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.cta-button:hover {
  background: var(--accent-hover);
  color: #1a1a1a;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.listen-live-button {
  color: #90a4ae;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, #1a1614f2 0%, #2a2422f2 100%);
  border: 2px solid #606060;
  border-radius: 50px;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px #0009, 0 0 0 1px #ffb34733, inset 0 1px #ffb34726;
}

.listen-live-button:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffb34733, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.listen-live-button:hover:before {
  left: 100%;
}

.listen-live-button:hover {
  border-color: #90a4ae;
  transform: translateY(-2px)scale(1.02);
  box-shadow: 0 12px 32px #000000b3, 0 0 0 2px #ffb34766, 0 0 20px #ffb3474d, inset 0 1px #ffb34733;
}

.listen-live-button:active {
  transform: translateY(0)scale(.98);
}

.listen-live-button svg {
  flex-shrink: 0;
}

.button-text {
  letter-spacing: .5px;
  font-size: 1.125rem;
}

.live-indicator {
  background: #f44;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: 2s infinite pulse-live;
  box-shadow: 0 0 #f44;
}

@keyframes pulse-live {
  0% {
    box-shadow: 0 0 #ff4444b3;
  }

  70% {
    box-shadow: 0 0 0 10px #f440;
  }

  100% {
    box-shadow: 0 0 #f440;
  }
}

@media (max-width: 768px) {
  .listen-live-button {
    padding: .875rem 1.5rem;
    font-size: 1rem;
  }

  .button-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .listen-live-button {
    gap: .5rem;
    padding: .75rem 1.25rem;
  }

  .button-text {
    font-size: .875rem;
  }

  .listen-live-button svg {
    width: 20px;
    height: 20px;
  }
}

.featured-products {
  margin-top: 2rem;
}

.featured-products h2 {
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.features {
  border-top: 2px solid #ecf0f1;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  display: grid;
}

.feature h3 {
  color: var(--text-primary);
  margin-bottom: .75rem;
  font-size: 1.3rem;
  font-weight: 600;
}

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

.products-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.search-form {
  gap: .5rem;
  display: flex;
}

.search-input {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  min-width: 300px;
  color: var(--text-primary);
  padding: .75rem 1.25rem;
  font-size: 1rem;
  transition: all .2s;
}

.search-input:focus {
  border-color: var(--accent-primary);
  outline: none;
  box-shadow: 0 0 0 3px #ff8c4233;
}

.search-button {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .2s;
}

.search-button:hover {
  background: var(--accent-hover);
  color: #1a1a1a;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-detail-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
  display: grid;
}

.product-image-section {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

.product-detail-image {
  object-fit: contain;
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.product-info-section h1 {
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-variants {
  margin: 1.25rem 0;
}

.product-variants h3 {
  color: var(--text-primary);
  margin-bottom: .75rem;
  font-size: .95rem;
  font-weight: 600;
}

.variant-buttons {
  gap: .75rem;
  display: flex;
}

.variant-button {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: .65rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

.variant-button:hover {
  border-color: var(--accent-primary);
  background: var(--bg-secondary);
}

.variant-button.active {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.quantity-selector {
  align-items: center;
  gap: .75rem;
  margin: 1.25rem 0;
  display: flex;
}

.quantity-selector label {
  font-size: .9rem;
  font-weight: 600;
}

.quantity-selector button {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  width: 35px;
  height: 35px;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
}

.quantity-selector button:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-primary);
}

.quantity-selector span {
  text-align: center;
  min-width: 35px;
  font-size: 1rem;
  font-weight: 600;
}

.add-to-cart-button {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: none;
  padding: .95rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all .2s;
}

.add-to-cart-button:hover {
  background: var(--accent-hover);
  color: #1a1a1a;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.audio-preview-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  padding: .75rem .875rem;
}

.audio-preview-section h3 {
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 600;
}

.audio-preview-subtitle {
  display: none;
}

.audio-player-container {
  width: 100%;
}

.audio-player {
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  outline: none;
  width: 100%;
  height: 38px;
}

.audio-player::-webkit-media-controls-panel {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.audio-player::-webkit-media-controls-play-button {
  background-color: var(--accent-primary);
  border-radius: 50%;
}

.audio-player::-webkit-media-controls-current-time-display {
  color: var(--text-secondary);
  font-family: Ubuntu, sans-serif;
}

.audio-player::-webkit-media-controls-time-remaining-display {
  color: var(--text-secondary);
  font-family: Ubuntu, sans-serif;
}

.audio-player::-webkit-media-controls-timeline {
  background: var(--border-color);
  border-radius: var(--radius-sm);
}

.audio-player::-webkit-media-controls-volume-slider {
  background: var(--border-color);
  border-radius: var(--radius-sm);
}

.product-description {
  border-top: 2px solid var(--border-color);
  width: 100%;
  margin-top: 3rem;
  padding-top: 2rem;
}

.product-description h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.product-description p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.product-description ul, .product-description ol {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  margin-left: 1.5rem;
  line-height: 1.8;
}

.product-description li {
  margin-bottom: .5rem;
}

.auth-button {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: none;
  padding: .5rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

.auth-button:hover {
  background: var(--accent-hover);
  color: #1a1a1a;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cart-button {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: .5rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  position: relative;
}

.cart-button:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cart-dropdown {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  width: 320px;
  max-height: calc(100vh - 100px);
  padding: 1rem;
  position: fixed;
  top: 80px;
  right: 20px;
  overflow-y: auto;
}

.cart-dropdown h2 {
  color: var(--text-primary);
  margin-bottom: .75rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-items {
  flex-direction: column;
  gap: .5rem;
  margin-bottom: .75rem;
  display: flex;
}

.cart-item {
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  gap: .625rem;
  padding: .625rem;
  transition: all .2s;
  display: flex;
}

.cart-item:hover {
  border-color: var(--accent-primary);
}

.cart-item-image {
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.cart-item-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cart-item-details {
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  min-width: 0;
  display: flex;
}

.cart-item-info h4 {
  color: var(--text-primary);
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.cart-item-variant {
  color: var(--text-muted);
  margin-bottom: .125rem;
  font-size: .7rem;
}

.cart-item-price {
  color: var(--primary-color);
  font-size: .875rem;
  font-weight: 700;
}

.cart-item-controls {
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.cart-item-quantity {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: .375rem;
  padding: .125rem;
  display: flex;
}

.cart-item-quantity button {
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 2px;
  min-width: 24px;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  transition: all .2s;
}

.cart-item-quantity button:hover {
  background: var(--bg-secondary);
  color: var(--primary-color);
}

.cart-item-quantity span {
  text-align: center;
  min-width: 24px;
  color: var(--text-primary);
  font-size: .875rem;
  font-weight: 600;
}

.cart-item-remove {
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  padding: .25rem .5rem;
  font-size: 1.5rem;
  line-height: 1;
  transition: all .2s;
}

.cart-item-remove:hover {
  color: #e74c3c;
  background: #e74c3c1a;
}

.cart-total {
  border-top: 1px solid var(--border-color);
  text-align: right;
  color: var(--text-primary);
  margin-top: .75rem;
  padding-top: .875rem;
  font-size: 1.1rem;
}

.cart-actions {
  flex-direction: column;
  gap: .5rem;
  margin-top: .75rem;
  display: flex;
}

.view-cart-button {
  background: var(--bg-secondary);
  color: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  padding: .75rem;
  font-size: .95rem;
  font-weight: 600;
  transition: all .2s;
}

.view-cart-button:hover {
  background: var(--bg-primary);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-1px);
}

.checkout-button {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: none;
  padding: .875rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all .2s;
}

.checkout-button:hover {
  background: var(--accent-hover);
  color: #1a1a1a;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.cart-page {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.cart-page h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.empty-cart {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 4rem 2rem;
}

.empty-cart p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cart-page-grid {
  grid-template-columns: 1fr 400px;
  align-items: start;
  gap: 2rem;
  display: grid;
}

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

.cart-page-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  gap: 1.5rem;
  padding: 1.5rem;
  transition: all .2s;
  display: flex;
}

.cart-page-item:hover {
  border-color: var(--accent-primary);
}

.cart-page-item-image {
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.cart-page-item-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cart-page-item-details {
  flex: 1;
  min-width: 0;
}

.cart-page-item-details h3 {
  color: var(--text-primary);
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.cart-page-item-format {
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-size: .9rem;
}

.cart-page-item-price {
  color: var(--text-secondary);
  font-size: .95rem;
}

.cart-page-item-actions {
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
  min-width: 140px;
  display: flex;
}

.cart-page-quantity {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  align-items: center;
  gap: .75rem;
  padding: .5rem .75rem;
  display: flex;
}

.cart-page-quantity button {
  color: var(--text-primary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  padding: .25rem .75rem;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all .2s;
}

.cart-page-quantity button:hover {
  background: var(--bg-primary);
  color: var(--primary-color);
}

.cart-page-quantity span {
  text-align: center;
  min-width: 32px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

.cart-page-item-total {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-page-remove {
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: none;
  padding: .5rem 1rem;
  font-size: .9rem;
  transition: all .2s;
}

.cart-page-remove:hover {
  color: #e74c3c;
  background: #e74c3c1a;
  border-color: #e74c3c;
}

.cart-summary-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.cart-summary-section h2 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  font-size: 1.3rem;
}

.cart-summary-row {
  color: var(--text-secondary);
  justify-content: space-between;
  padding: .75rem 0;
  font-size: .95rem;
  display: flex;
}

.cart-summary-row.cart-discount {
  color: var(--accent-primary);
}

.cart-summary-row.cart-discount .remove-coupon {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  margin-left: .5rem;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
  transition: color .2s;
}

.cart-summary-row.cart-discount .remove-coupon:hover {
  color: #e74c3c;
}

.cart-summary-divider {
  background: var(--border-color);
  height: 1px;
  margin: .75rem 0;
}

.cart-summary-row.cart-total {
  color: var(--text-primary);
  padding-top: .75rem;
  font-size: 1.2rem;
}

.coupon-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin: 1.5rem 0;
  padding: 1.25rem;
}

.coupon-section h3 {
  color: var(--text-primary);
  margin-bottom: .75rem;
  font-size: .95rem;
  font-weight: 600;
}

.coupon-input-group {
  gap: .5rem;
  display: flex;
}

.coupon-input-group input {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  flex: 1;
  padding: .75rem;
  font-size: .9rem;
}

.coupon-input-group input:focus {
  border-color: var(--accent-primary);
  outline: none;
}

.coupon-input-group button {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  padding: .75rem 1.25rem;
  font-weight: 600;
  transition: all .2s;
}

.coupon-input-group button:hover {
  background: var(--accent-hover);
  color: #1a1a1a;
}

.coupon-hint {
  color: var(--text-muted);
  margin-top: .5rem;
  font-size: .8rem;
  font-style: italic;
}

.coupon-error {
  color: #e74c3c;
  border-radius: var(--radius-sm);
  background: #e74c3c1a;
  border-left: 3px solid #e74c3c;
  margin-top: .5rem;
  padding: .5rem;
  font-size: .85rem;
}

.coupon-success {
  color: #27ae60;
  border-radius: var(--radius-sm);
  background: #27ae601a;
  border-left: 3px solid #27ae60;
  margin-top: .5rem;
  padding: .5rem;
  font-size: .85rem;
  font-weight: 600;
}

.cart-checkout-btn {
  background: var(--accent-primary);
  color: #1a1a1a;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: none;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all .2s;
}

.cart-checkout-btn:hover {
  background: var(--accent-hover);
  color: #1a1a1a;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.continue-shopping {
  text-align: center;
  color: var(--text-secondary);
  padding: .75rem;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.continue-shopping:hover {
  color: var(--primary-color);
}

.checkout-page {
  background: linear-gradient(135deg, #ffb3470d 0%, #ff8c420d 100%);
  min-height: 100vh;
  padding: 3rem 0;
}

.checkout-page h1 {
  color: var(--text-primary);
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.checkout-grid {
  grid-template-columns: 1.8fr 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.checkout-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: 0 4px 20px #00000014;
}

.checkout-form h2 {
  color: var(--text-primary);
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.checkout-form h3 {
  color: var(--text-primary);
  border-bottom: 2px solid var(--primary-color);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.form-group input, .form-group select {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all .3s;
}

.form-group input:hover, .form-group select:hover {
  border-color: var(--primary-color);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--accent-primary);
  background: var(--bg-card);
  outline: none;
  box-shadow: 0 0 0 4px #ff8c4226;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FF8C42' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.form-row {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.25rem;
  display: grid;
}

.order-summary {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  height: fit-content;
  padding: 2.5rem;
  position: sticky;
  top: 2rem;
  box-shadow: 0 4px 20px #00000014;
}

.order-summary h2 {
  color: var(--text-primary);
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.summary-items {
  flex-direction: column;
  gap: 1.25rem;
  max-height: 400px;
  margin-bottom: 2rem;
  padding-right: .5rem;
  display: flex;
  overflow-y: auto;
}

.summary-items::-webkit-scrollbar {
  width: 6px;
}

.summary-items::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 3px;
}

.summary-items::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.summary-item {
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  justify-content: space-between;
  padding: 1.25rem;
  transition: all .2s;
  display: flex;
}

.summary-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px #0000000d;
}

.summary-item h4 {
  color: var(--text-primary);
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 600;
}

.summary-item p {
  color: var(--text-secondary);
  font-size: .9rem;
}

.summary-item-price {
  text-align: right;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.item-total {
  margin-top: .25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary) !important;
}

.summary-totals {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  padding: 1.5rem;
}

.summary-total {
  border-top: 2px solid var(--text-primary);
  color: var(--text-primary);
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
}

.success-page {
  text-align: center;
  padding: 4rem 2rem;
}

.success-page h1 {
  color: #27ae60;
  margin-bottom: 1rem;
}

.success-icon {
  color: #27ae60;
  margin-bottom: 2rem;
  font-size: 4rem;
}

.download-links {
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 3rem;
  padding: 2rem;
}

.download-links h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.download-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

.download-item h3 {
  color: #2c3e50;
  margin-bottom: .5rem;
}

.download-button {
  color: #fff;
  background: #27ae60;
  border-radius: 4px;
  margin-top: 1rem;
  padding: .75rem 2rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.download-button:hover {
  background: #229954;
}

.site-footer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  text-align: center;
  border-top: 3px solid #0000;
  border-image: linear-gradient(90deg, transparent 0%, var(--accent-gold) 15%, var(--primary-color) 35%, var(--secondary-color) 50%, var(--primary-color) 65%, var(--accent-gold) 85%, transparent 100%) 1;
  margin-top: 6rem;
  padding: 3rem 0;
  position: relative;
}

.site-footer:before {
  content: "";
  background: var(--primary-color);
  clip-path: polygon(0% 0%, 15% 100%, 30% 0%, 45% 100%, 55% 100%, 70% 0%, 85% 100%, 100% 0%);
  opacity: .5;
  width: 100px;
  height: 3px;
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.loading, .error, .no-products {
  text-align: center;
  color: var(--text-muted);
  padding: 4rem;
  font-size: 1.2rem;
}

.error {
  color: #ff6b6b;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    margin: -2rem -1.5rem 1.5rem;
  }

  .banner-image-container {
    height: 250px;
  }

  .banner-overlay {
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
  }

  .banner-content {
    align-items: center;
  }

  .main-content {
    padding: 1.5rem 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .featured-products h2 {
    font-size: 1.5rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .products-header {
    flex-direction: column;
    gap: 1rem;
  }

  .search-input {
    min-width: 100%;
  }

  .cart-dropdown {
    min-width: auto;
    left: 10px;
    right: 10px;
  }

  .cart-page-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary-section {
    position: static;
  }

  .cart-page-item {
    flex-direction: column;
    gap: 1rem;
  }

  .cart-page-item-image {
    width: 100%;
    height: 200px;
  }

  .cart-page-item-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .variant-buttons {
    flex-direction: column;
  }

  .checkout-grid, .form-row {
    grid-template-columns: 1fr;
  }
}

.support-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.support-hero {
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: 400px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.support-hero-image {
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
}

.support-header-fallback {
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffb34726 0%, #ff8c4226 100%);
  margin-bottom: 3rem;
  padding: 2rem;
}

.support-header-fallback.hidden {
  display: none;
}

.support-header-fallback h1 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 700;
}

.support-header-fallback p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.6;
}

.alert {
  border-radius: var(--radius-md);
  border: 1px solid;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
}

.alert h3 {
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.alert-success {
  color: #155724;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-color: #28a745;
}

.alert-error {
  color: #721c24;
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border-color: #dc3545;
}

.btn-link {
  color: #155724;
  cursor: pointer;
  background: none;
  border: none;
  margin-top: .5rem;
  padding: 0;
  font-weight: 600;
  text-decoration: underline;
}

.support-form {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
  padding: 2.5rem;
  position: relative;
}

.support-form:before, .support-form:after {
  content: "";
  opacity: .2;
  width: 60px;
  height: 60px;
  position: absolute;
}

.support-form:before {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 40%, transparent 70%);
  border-radius: var(--radius-lg) 0 0 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: -2px;
  left: -2px;
}

.support-form:after {
  background: linear-gradient(-45deg, var(--primary-color) 0%, var(--accent-gold) 40%, transparent 70%);
  border-radius: 0 0 var(--radius-lg) 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: -2px;
  right: -2px;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  display: grid;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  color: var(--text-primary);
  letter-spacing: .01em;
  margin-bottom: .75rem;
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.required {
  color: #dc3545;
}

.form-group input, .form-group select, .form-group textarea {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  width: 100%;
  color: var(--text-primary);
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: all .2s;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: .7;
  font-weight: 400;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
  outline: none;
  box-shadow: 0 0 0 3px #ff8c3226;
}

.form-group input:disabled {
  background: var(--bg-primary);
  cursor: not-allowed;
  opacity: .6;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.form-hint {
  color: var(--text-secondary);
  margin-top: .5rem;
  font-size: .9rem;
  font-style: italic;
  display: block;
}

.form-actions {
  gap: 1rem;
  margin-top: 1.5rem;
  display: flex;
}

.btn-primary, .btn-secondary {
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  padding: .875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
}

.support-info {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-top: 4rem;
  padding: 2.5rem;
  position: relative;
}

.support-info:before {
  content: "";
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 20%, var(--primary-color) 50%, var(--accent-gold) 80%, transparent 100%);
  opacity: .4;
  width: 180px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.support-info h2 {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.support-info h2:after {
  content: "";
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-color) 50%, var(--accent-gold) 100%);
  border-radius: 2px;
  width: 80px;
  height: 3px;
  position: absolute;
  bottom: -.75rem;
  left: 50%;
  transform: translateX(-50%);
}

.contact-methods {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  display: grid;
}

.contact-method {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 2rem;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.contact-method:before {
  content: "";
  background: linear-gradient(-135deg, var(--accent-gold) 0%, transparent 70%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0;
  width: 30px;
  height: 30px;
  transition: opacity .2s;
  position: absolute;
  top: -1px;
  right: -1px;
}

.contact-method:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.contact-method:hover:before {
  opacity: .25;
}

.contact-method h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-method p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.contact-email-link {
  color: var(--primary-color);
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.contact-email-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-hint {
  font-style: italic;
  color: var(--text-secondary) !important;
  margin-top: .5rem !important;
  font-size: .85rem !important;
  font-weight: 400 !important;
}

.tickets-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tickets-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.tickets-header h1 {
  color: var(--text-primary);
  font-size: 2.5rem;
}

.no-tickets {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 4rem 2rem;
}

.no-tickets h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.no-tickets p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.tickets-list {
  gap: 1rem;
  display: grid;
}

.ticket-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: inherit;
  padding: 1.5rem;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.ticket-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.ticket-header-row {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
  display: flex;
}

.ticket-number {
  color: var(--text-secondary);
  font-size: .9rem;
}

.ticket-badges {
  gap: .5rem;
  display: flex;
}

.badge {
  text-transform: uppercase;
  border-radius: 12px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}

.status-new {
  color: #1976d2;
  background: #e3f2fd;
}

.status-progress {
  color: #f57c00;
  background: #fff3e0;
}

.status-waiting {
  color: #c2185b;
  background: #fce4ec;
}

.status-resolved {
  color: #388e3c;
  background: #e8f5e9;
}

.status-closed {
  color: #546e7a;
  background: #eceff1;
}

.priority-urgent {
  color: #c62828;
  background: #ffebee;
}

.priority-high {
  color: #ef6c00;
  background: #fff3e0;
}

.priority-medium {
  color: #1565c0;
  background: #e3f2fd;
}

.priority-low {
  color: #558b2f;
  background: #f1f8e9;
}

.ticket-subject {
  color: var(--text-primary);
  margin-bottom: .5rem;
  font-size: 1.25rem;
}

.ticket-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.ticket-meta {
  color: var(--text-secondary);
  gap: 1.5rem;
  font-size: .9rem;
  display: flex;
}

.ticket-detail-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.ticket-detail-header {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.ticket-title-row {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.ticket-title-row h1 {
  font-size: 1.75rem;
  line-height: 1.3;
}

.ticket-meta-row {
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .95rem;
  display: flex;
}

.ticket-content {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.ticket-description-section, .ticket-resolution-section, .ticket-messages-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.ticket-description-section h3, .ticket-resolution-section h3, .ticket-messages-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.ticket-description-box, .resolution-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.resolution-box small {
  color: var(--text-secondary);
  margin-top: .75rem;
  font-style: italic;
  display: block;
}

.messages-list {
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.message {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.message-header {
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.message-header strong {
  color: var(--text-primary);
}

.message-date {
  color: var(--text-secondary);
  font-size: .85rem;
}

.message-body {
  color: var(--text-primary);
  line-height: 1.6;
}

.no-messages {
  text-align: center;
  color: var(--text-secondary);
  padding: 2rem;
  font-style: italic;
}

.message-form {
  border-top: 1px solid var(--border-color);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.message-form h4 {
  margin-bottom: .75rem;
  font-size: 1.1rem;
}

.message-form textarea {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  width: 100%;
  color: var(--text-primary);
  resize: vertical;
  margin-bottom: .75rem;
  padding: .75rem;
  font-family: inherit;
}

.message-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px #ff8c321a;
}

.ticket-closed-notice {
  text-align: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  padding: 1.5rem;
}

.ticket-closed-notice p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .support-page {
    padding: 2rem 1rem;
  }

  .support-hero {
    max-height: 300px;
    margin-bottom: 1.5rem;
  }

  .support-hero-image {
    height: auto;
    max-height: 300px;
  }

  .support-header-fallback {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .support-header-fallback h1 {
    font-size: 2rem;
  }

  .support-header-fallback p {
    font-size: 1rem;
  }

  .support-form {
    padding: 1.5rem;
  }

  .support-info {
    margin-top: 3rem;
    padding: 1.5rem;
  }

  .form-row, .contact-methods {
    grid-template-columns: 1fr;
  }

  .tickets-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ticket-title-row {
    flex-direction: column;
  }

  .ticket-meta-row {
    flex-direction: column;
    gap: .5rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }
}

.live-radio-player {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  margin: 0 auto;
  padding: 1.5rem;
  position: relative;
}

.live-radio-player:before, .live-radio-player:after {
  content: "";
  opacity: .25;
  width: 40px;
  height: 40px;
  position: absolute;
}

.live-radio-player:before {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 40%, transparent 70%);
  border-radius: var(--radius-lg) 0 0 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: -2px;
  left: -2px;
}

.live-radio-player:after {
  background: linear-gradient(-45deg, var(--primary-color) 0%, var(--accent-gold) 40%, transparent 70%);
  border-radius: 0 0 var(--radius-lg) 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: -2px;
  right: -2px;
}

.player-header {
  border-bottom: 2px solid var(--border-color);
  text-align: center;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  display: flex;
}

.live-badge {
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
}

.current-show {
  color: var(--text-primary);
  min-height: 1.5em;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.player-controls {
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
}

.play-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #1a1a1a;
  cursor: pointer;
  width: 60px;
  height: 60px;
  box-shadow: var(--shadow-md);
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
  position: relative;
}

.play-button:hover:not(:disabled) {
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--primary-color) 100%);
  transform: scale(1.08);
}

.play-button:active:not(:disabled) {
  transform: scale(.98);
}

.play-button:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.play-button svg {
  width: 28px;
  height: 28px;
}

.spinner {
  animation: 1s linear infinite spin;
}

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

  to {
    transform: rotate(360deg);
  }
}

.volume-control {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  flex: 1;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  display: flex;
}

.volume-icon {
  color: var(--text-primary);
  flex-shrink: 0;
}

.volume-slider {
  background: var(--border-color);
  appearance: none;
  cursor: pointer;
  border-radius: 3px;
  outline: none;
  flex: 1;
  height: 6px;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  cursor: pointer;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transition: all .2s;
  box-shadow: 0 2px 6px #ff8c4266;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 3px 10px #ff8c4299;
}

.volume-slider::-moz-range-thumb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transition: all .2s;
  box-shadow: 0 2px 6px #ff8c4266;
}

.volume-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 3px 10px #ff8c4299;
}

.volume-slider::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) var(--volume-percent, 70%), var(--border-color) var(--volume-percent, 70%), var(--border-color) 100%);
  border-radius: 3px;
  height: 6px;
}

.volume-slider::-moz-range-track {
  background: var(--border-color);
  border-radius: 3px;
  height: 6px;
}

.volume-slider::-moz-range-progress {
  background: var(--primary-color);
  border-radius: 3px;
  height: 6px;
}

.player-info {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.player-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: .9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .live-radio-player {
    max-width: 100%;
    padding: 1.25rem;
  }

  .player-controls {
    gap: 1rem;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button svg {
    width: 24px;
    height: 24px;
  }

  .current-show {
    font-size: 1rem;
  }
}

.newsletter-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 9998;
  background: #000000bf;
  animation: .3s fadeIn;
  position: fixed;
  inset: 0;
}

.newsletter-popup {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  z-index: 9999;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  animation: .4s slideUp;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  transform: translate(-50%, -50%);
}

.newsletter-popup:before, .newsletter-popup:after {
  content: "";
  opacity: .3;
  width: 50px;
  height: 50px;
  position: absolute;
}

.newsletter-popup:before {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 40%, transparent 70%);
  border-radius: var(--radius-lg) 0 0 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: -2px;
  left: -2px;
}

.newsletter-popup:after {
  background: linear-gradient(-45deg, var(--primary-color) 0%, var(--accent-gold) 40%, transparent 70%);
  border-radius: 0 0 var(--radius-lg) 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: -2px;
  right: -2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.newsletter-close {
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 1;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 2rem;
  line-height: 1;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.newsletter-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.newsletter-icon {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 3.5rem;
  animation: 1s infinite bounce;
}

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

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

.newsletter-success-icon {
  text-align: center;
  color: #27ae60;
  margin-bottom: 1rem;
  font-size: 4rem;
  animation: .5s scaleIn;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.newsletter-title {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.newsletter-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.newsletter-input {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--text-primary);
  padding: 1rem;
  font-size: 1rem;
  transition: all .2s;
}

.newsletter-input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px #ff8c4233;
}

.newsletter-input:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.newsletter-submit {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #1a1a1a;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s;
}

.newsletter-submit:hover:not(:disabled) {
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
}

.newsletter-submit:active:not(:disabled) {
  transform: translateY(0);
}

.newsletter-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.newsletter-error {
  border-radius: var(--radius-sm);
  color: #e74c3c;
  text-align: center;
  background: #e74c3c1a;
  border: 1px solid #e74c3c;
  padding: .75rem;
  font-size: .9rem;
}

.newsletter-privacy {
  text-align: center;
  color: var(--text-muted);
  margin-top: .5rem;
  font-size: .85rem;
  font-style: italic;
}

.discount-code {
  background: var(--bg-secondary);
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius-md);
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  display: flex;
}

.discount-code code {
  color: var(--primary-color);
  letter-spacing: 2px;
  font-family: Courier New, monospace;
  font-size: 1.75rem;
  font-weight: 700;
}

.copy-code-button {
  background: var(--primary-color);
  color: #1a1a1a;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

.copy-code-button:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.newsletter-instructions {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .newsletter-popup {
    width: 95%;
    padding: 2rem 1.5rem;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }

  .newsletter-icon {
    font-size: 3rem;
  }

  .newsletter-success-icon {
    font-size: 3.5rem;
  }

  .discount-code {
    flex-direction: column;
    gap: .75rem;
  }

  .discount-code code {
    font-size: 1.5rem;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.product-card.skeleton {
  pointer-events: none;
}

.skeleton-image {
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--border-color) 50%, var(--bg-secondary) 100%);
  border-radius: var(--radius-md);
  background-size: 1000px 100%;
  width: 100%;
  height: 200px;
  animation: 2s linear infinite shimmer;
}

.skeleton-text {
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--border-color) 50%, var(--bg-secondary) 100%);
  border-radius: var(--radius-sm);
  background-size: 1000px 100%;
  height: 1rem;
  margin: .5rem 0;
  animation: 2s linear infinite shimmer;
}

.skeleton-title {
  width: 80%;
  height: 1.5rem;
}

.skeleton-price {
  width: 40%;
  height: 1.25rem;
}

.skeleton-button {
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--border-color) 50%, var(--bg-secondary) 100%);
  border-radius: var(--radius-md);
  background-size: 1000px 100%;
  height: 2.5rem;
  margin-top: 1rem;
  animation: 2s linear infinite shimmer;
}

.pagination {
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem 0;
  display: flex;
}

.pagination-button {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

.pagination-button:hover:not(:disabled) {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #ffb3474d;
}

.pagination-button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.pagination-info {
  color: var(--text-secondary);
  text-align: center;
  min-width: 200px;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .pagination {
    flex-direction: column;
    gap: 1rem;
  }

  .pagination-info {
    order: -1;
    min-width: auto;
  }
}

.navbar-radio-player {
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
}

.navbar-player-controls {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.navbar-live-badge {
  color: var(--text-secondary);
  letter-spacing: .5px;
  -webkit-user-select: none;
  user-select: none;
  font-size: .75rem;
  font-weight: 700;
  transition: color .2s;
}

.navbar-play-button {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  cursor: pointer;
  width: 32px;
  height: 32px;
  color: var(--text-primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.navbar-play-button:hover:not(:disabled) {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px #ffb3474d;
}

.navbar-play-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.navbar-spinner {
  opacity: .7;
}

.navbar-volume-control {
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-volume-button {
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.navbar-volume-button:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

.navbar-volume-slider-container {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  min-width: 120px;
  margin-top: .5rem;
  padding: .75rem;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-volume-slider {
  background: var(--bg-secondary);
  cursor: pointer;
  appearance: none;
  border-radius: 2px;
  outline: none;
  width: 100%;
  height: 4px;
}

.navbar-volume-slider::-webkit-slider-thumb {
  appearance: none;
  background: var(--color-primary);
  cursor: pointer;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: all .2s;
}

.navbar-volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 8px #ffb34780;
}

.navbar-volume-slider::-moz-range-thumb {
  background: var(--color-primary);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: all .2s;
}

.navbar-volume-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 8px #ffb34780;
}

@media (max-width: 768px) {
  .navbar-radio-player {
    margin-left: .75rem;
  }

  .navbar-live-badge {
    display: none;
  }

  .navbar-play-button {
    width: 28px;
    height: 28px;
  }

  .navbar-volume-button {
    width: 24px;
    height: 24px;
  }
}

body {
  padding-bottom: 120px;
}

.epidemic-player {
  z-index: 1000;
  background: linear-gradient(#1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  border-top: 3px solid #606060;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 0 2rem;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -8px 32px #0009, inset 0 1px #ffb3471a;
}

.epidemic-player:before {
  content: "";
  opacity: .6;
  background: linear-gradient(90deg, #0000 0%, #90a4ae 20%, gray 50%, #90a4ae 80%, #0000 100%);
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.epidemic-player-content {
  background: #2a242280;
  border: 1px solid #8b6f474d;
  border-radius: 16px;
  align-items: center;
  gap: 2.5rem;
  width: 50%;
  max-width: 1200px;
  padding: 1rem 2rem;
  display: flex;
  box-shadow: 0 4px 20px #0006, inset 0 1px #ffb3470d;
}

.epidemic-left {
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
  min-width: 280px;
  display: flex;
}

.epidemic-left .rhap_container {
  box-shadow: none !important;
  background: none !important;
  width: auto !important;
  padding: 0 !important;
}

.epidemic-left .rhap_main {
  align-items: center !important;
  gap: .5rem !important;
  display: flex !important;
}

.epidemic-left .rhap_main-controls {
  align-items: center !important;
  gap: .25rem !important;
  display: flex !important;
}

.epidemic-left .rhap_main-controls-button {
  color: #90a4ae !important;
  background: #8b6f4733 !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 20px !important;
  transition: all .3s !important;
}

.epidemic-left .rhap_main-controls-button:hover {
  transform: scale(1.05);
  background: #ffb3474d !important;
}

.epidemic-left .rhap_container .rhap_main .rhap_main-controls .rhap_play-pause-button, .epidemic-left .rhap_play-pause-button, button.rhap_button.rhap_play-pause-button {
  background: linear-gradient(145deg, #a0a0a0 0%, #90a4ae 20%, gray 60%, #606060 100%) !important;
  border: 2px solid #6b5535 !important;
  border-radius: 8px !important;
  width: 60px !important;
  min-width: 60px !important;
  height: 60px !important;
  min-height: 60px !important;
  transition: all .25s !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px #0009, inset 0 3px 8px #ffd580cc, inset 0 -3px 8px #5a4a3a99, 0 0 0 1px #ffb3474d, 0 2px #ffc36666 !important;
}

.epidemic-left .rhap_play-pause-button:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(#ffd58099 0%, #0000 100%);
  border-radius: 6px 6px 0 0;
  height: 40%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.epidemic-left .rhap_play-pause-button:hover {
  transform: translateY(-2px)scale(1.02);
  background: linear-gradient(145deg, #b8b8b8 0%, #b0bec5 20%, #7a7a7a 60%, #656565 100%) !important;
  box-shadow: 0 10px 28px #000000b3, inset 0 3px 10px #ffe5a0e6, inset 0 -3px 8px #5a4a3ab3, 0 0 0 2px #ffb34780, 0 3px #ffc36699 !important;
}

.epidemic-left .rhap_play-pause-button svg {
  color: #1a1a1a !important;
  fill: #1a1a1a !important;
  filter: drop-shadow(0 1px 3px #0006) !important;
  z-index: 1 !important;
  width: 22px !important;
  height: 22px !important;
  position: relative !important;
}

.epidemic-left .rhap_volume-controls {
  align-items: center !important;
  gap: .5rem !important;
  margin-left: 1rem !important;
  display: flex !important;
}

.epidemic-left .rhap_volume-button {
  color: #90a4ae !important;
  font-size: 20px !important;
}

.epidemic-left .rhap_volume-bar {
  width: 90px !important;
}

.epidemic-left .rhap_volume-bar-area, .epidemic-left .rhap_container .rhap_volume-bar-area, .rhap_volume-bar-area {
  background: linear-gradient(#1a1614cc 0%, #2a242299 100%) !important;
  border: 2px solid #5a4a3a80 !important;
  border-radius: 6px !important;
  height: 8px !important;
  min-height: 8px !important;
  box-shadow: inset 0 2px 4px #0009 !important;
}

.epidemic-left .rhap_volume-indicator, .epidemic-left .rhap_container .rhap_volume-indicator, .rhap_volume-indicator {
  background: linear-gradient(90deg, #a0a0a0 0%, #90a4ae 30%, gray 100%) !important;
  border-radius: 6px !important;
  height: 8px !important;
  min-height: 8px !important;
  box-shadow: 0 0 12px #ffb347cc, 0 0 4px #ffd58099, inset 0 1px 3px #ffe5a0b3 !important;
}

.epidemic-left .rhap_progress-section, .epidemic-left .rhap_time {
  display: none !important;
}

.epidemic-track-info {
  border-left: 2px solid #8b6f474d;
  flex-direction: column;
  gap: .25rem;
  min-width: 150px;
  max-width: 220px;
  padding-left: .75rem;
  display: flex;
}

.epidemic-track-title {
  color: #90a4ae;
  text-shadow: 0 2px 4px #0000004d;
  letter-spacing: .3px;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.epidemic-track-artist {
  color: #606060;
  letter-spacing: .5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .75rem;
  font-style: italic;
  font-weight: 400;
  overflow: hidden;
}

.epidemic-waveform {
  background: #0000004d !important;
  border: 1px solid #8b6f4733 !important;
  border-radius: 8px !important;
  flex-direction: column !important;
  flex: 1 !important;
  min-width: 200px !important;
  height: 64px !important;
  padding: .5rem .75rem !important;
  display: flex !important;
  position: relative !important;
  overflow: hidden !important;
}

.epidemic-waveform-header {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  height: 14px;
  margin-bottom: .4rem;
  display: flex;
  position: relative;
}

.epidemic-canvas {
  filter: drop-shadow(0 0 8px #ffb34733) !important;
  width: 100% !important;
  height: 28px !important;
  max-height: 28px !important;
  display: block !important;
}

.epidemic-time {
  color: #8b6f47cc;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  align-items: center;
  font-family: Courier New, monospace;
  font-size: .65rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
}

.epidemic-live-badge {
  color: #90a4ae;
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px #ffb34799;
  align-items: center;
  gap: .3rem;
  font-size: .65rem;
  font-weight: 700;
  line-height: 1;
  animation: 2s ease-in-out infinite pulse;
  display: flex;
}

.epidemic-live-badge:before {
  content: "●";
  font-size: .5rem;
  animation: 2s ease-in-out infinite pulse;
  display: inline-block;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .6;
  }
}

.epidemic-right {
  display: none !important;
}

.epidemic-icon-btn {
  color: #606060;
  cursor: pointer;
  background: #8b6f4733;
  border: 1px solid #8b6f474d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
}

.epidemic-icon-btn:hover {
  color: #90a4ae;
  background: #ffb34733;
  border-color: #90a4ae;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .epidemic-player {
    gap: 1rem;
    padding: 0 1rem;
  }

  .epidemic-left {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  .epidemic-player {
    gap: .75rem;
    height: 80px;
    padding: 0 .75rem;
  }

  .epidemic-left {
    min-width: 200px;
  }

  .epidemic-track-info {
    min-width: 100px;
  }

  .epidemic-left .rhap_volume-bar {
    width: 50px !important;
  }

  .epidemic-right {
    gap: .5rem;
  }

  .epidemic-icon-btn {
    width: 28px;
    height: 28px;
  }
}

.page-with-sidebar {
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
}

.category-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  width: 250px;
  height: fit-content;
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}

.category-sidebar h3 {
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.sidebar-nav {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.sidebar-link {
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border-left: 3px solid #0000;
  padding: .75rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.sidebar-link:hover {
  background: var(--bg-secondary);
  color: var(--accent-primary);
  border-left-color: var(--accent-primary);
  transform: translateX(2px);
}

.sidebar-link.active {
  color: var(--accent-primary);
  border-left-color: var(--accent-primary);
  background: linear-gradient(90deg, #90a4ae26 0%, #90a4ae0d 100%);
  font-weight: 600;
}

.sidebar-loading {
  color: var(--text-muted);
  text-align: center;
  padding: 1rem;
  font-size: .9rem;
}

.page-with-sidebar .products-page {
  flex: 1;
  min-width: 0;
}

.page-with-sidebar .products-header {
  margin-bottom: 2rem;
}

@media (max-width: 968px) {
  .page-with-sidebar {
    flex-direction: column;
  }

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

  .sidebar-nav {
    flex-flow: wrap;
  }

  .sidebar-link {
    border-bottom: 3px solid #0000;
    border-left: none;
  }

  .sidebar-link:hover, .sidebar-link.active {
    border-left-color: #0000;
    border-bottom-color: var(--accent-primary);
    transform: translateX(0);
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/