/** Shopify CDN: Minification failed

Line 14:11 Expected identifier but found whitespace
Line 14:13 Unexpected "{"
Line 14:22 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:audio-player (INDEX:3) */
:root {
  --accent: {{ section.settings.accent_color }};
  --glass-bg: rgba(255, 255, 255, 0.05);
}

.audio-player-section {
  padding: 2rem;
  background: linear-gradient(145deg, #0a0a2e, #1a1a4a);
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

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

.section-title {
  color: #ffffff !important;
  font-size: 1.8rem;
  margin: 0;
  text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.toggle-playlist {
  background: var(--glass-bg);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 15px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.toggle-playlist:hover {
  background: var(--accent);
  color: #ffffff;
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 400px;
  overflow-y: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.track-list.collapsed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.track-item {
  padding: 1rem;
  margin: 0.5rem 0;
  background: var(--glass-bg);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
}

.track-item:hover {
  border-color: var(--accent);
  transform: translateX(10px);
}

.track-item::before {
  content: '▶';
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-item:hover::before {
  opacity: 1;
}

.active-track {
  background: rgba(0, 243, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
  color: #ffffff !important;
}

.audio-container {
  margin-top: 2rem;
  position: relative;
}

.custom-audio-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--glass-bg);
  padding: 1rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

audio {
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

audio:hover {
  opacity: 1;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 243, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

.glowing-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  animation: pulse 2s infinite;
  pointer-events: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}
/* END_SECTION:audio-player */