:root {
/* Primary Colors */
--primary-color: #003CFF; /* New blue */
--primary-color-light: #66A9FF; /* Lightened blue */
--primary-color-dark: #002B8F; /* Darkened blue */
--primary-color-transparent: rgba(8, 133, 245, 0.1); /* Transparent new blue */
--primary-color-shadow: rgba(0, 25, 77, 1); /* Shadow with new blue */
--primary-color-shadow-hover: rgba(0, 43, 143, 0.4); /* Hover shadow */
--primary-color-shadow-strong: rgba(0, 43, 143, 0.4); /* Strong shadow */

/* Gradient Colors */
--gradient-primary: linear-gradient(to right, rgb(255, 249, 196), rgb(255, 249, 196)); /* New blue gradient */

/* Text Colors */
--text-color-light: #fff; /* White text */
--text-color-primary: #003CFF; /* New blue text */

/* Background Colors */
--bg-semi-transparent: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
--bg-border-light: rgba(255, 255, 255, 0.1); /* Light border */

/* Effect Colors */
--shine-gradient: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%); /* Shine effect */

/* Shadow Settings */
--box-shadow-light: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
--box-shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.2); /* Medium shadow */
--box-shadow-primary: 0 4px 10px rgba(0, 0, 0, 0.2); /* Primary shadow */
--box-shadow-primary-hover: 0 10px 25px rgba(0, 43, 143, 0.4); /* Baby blue shadow on hover */

  
  /* Transition Settings */
  --transition-fast: all 0.3s ease;
  --transition-medium: all 0.4s ease;
  --transition-slow: all 1s ease-in-out;
  
  /* Border Radius */
  --border-radius-small: 8px;
  --border-radius-medium: 15px;
  --border-radius-large: 20px;
  --border-radius-circle: 50%;
}

.btn-custom:hover {
  background: var(--gradient-primary);
  transform: scale(1.05);
}

.store-component {
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.95);
  transition: var(--transition-slow);
}

.store-component.visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.feature {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  background: var(--gradient-feature);
  padding: 20px;
  box-shadow: var(--box-shadow-light);
  transition: var(--transition-fast);
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: var(--box-shadow-medium);
}

.feature i {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.feature .title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-color-light);
}

.feature .description {
  font-size: 14px;
  color: var(--text-color-light);
}

/* Add a purple border and rounded corners to each product card */
.row.products .card {
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-medium);
    transition: transform 0.3s ease;
    background: var(--bg-semi-transparent);
}

/* Optional: Add a hover effect to scale the card slightly */
.row.products .card:hover {
    transform: scale(1.05);
}

/* Apply perspective to parent */
.card-container {
  perspective: 1000px;
}

/* Product Box Styling */
.card {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  border: 2px solid var(--bg-border-light);
  background: var(--bg-semi-transparent);
  backdrop-filter: blur(10px);
  transition: var(--transition-slow);
  box-shadow: var(--box-shadow-primary);
}

/* Hover Effect */
.card:hover {
  transform: scale(1.01);
  box-shadow: var(--box-shadow-primary-hover);
  transition: var(--transition-slow);
}

/* Ensures the image is responsive */
.card-img-top img {
  border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Remove Stock Display */
.products .info .text-primary {
  display: none;
}

/* Price Visibility */
.price {
  font-size: 1em;
  color: var(--text-color-light);
  border-radius: var(--border-radius-small);
  display: inline-block;
}

.music-player {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 250px;
  padding: 15px;
  background: var(--primary-color-transparent);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  box-shadow: 0 0 20px var(--primary-color-shadow);
  transition: var(--transition-fast);
}

.music-player.minimized {
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: var(--border-radius-circle);
  overflow: hidden;
}

.minimize-button, .maximize-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  z-index: 10;
}

.maximize-button {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-circle);
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  box-shadow: 0 0 10px var(--primary-color-shadow-strong);
}

.player-content {
  transition: opacity 0.3s ease;
}

.minimized .player-content {
  opacity: 0;
  pointer-events: none;
}

.album-cover-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: var(--border-radius-circle);
  overflow: hidden;
  box-shadow: 0 0 15px var(--primary-color-shadow-strong);
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s linear;
}

.playing .album-cover {
  animation: spin 5s linear infinite;
}

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

.track-info {
  text-align: center;
  margin-bottom: 15px;
}

.artist {
  font-weight: bold;
  margin: 0;
  text-shadow: 0 0 5px var(--primary-color-shadow-strong);
}

.song {
  margin: 5px 0 0;
  font-size: 0.9em;
  text-shadow: 0 0 5px var(--primary-color-shadow-strong);
}

.controls {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.1);
}

button svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 3px var(--primary-color-shadow-strong));
}

.progress-bar {
  width: 100%;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: rgba(0, 105, 194, 0.3);
  outline: none;
  border-radius: 15px;
  height: 6px;
  box-shadow: 0 0 5px var(--primary-color-shadow);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  cursor: pointer;
  border-radius: var(--border-radius-circle);
  box-shadow: 0 0 10px var(--primary-color-shadow-strong);
}

.time {
  font-size: 12px;
  color: var(--primary-color);
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Shine Hover Effect */
.shine-effect {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: var(--shine-gradient);
  transform: skewX(-25deg);
  transition: none;
}

.shine-effect:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Optional: Add this if you want the effect on images */
.shine-effect img {
  max-width: 100%;
  display: block;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  background-color: #00000000;
  color: var(--text-color-light);
  transition: var(--transition-fast);
}

.testimonial:hover {
  transform: scale(1.05);
  box-shadow: var(--box-shadow-light);
}

.header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quote {
  width: 1.5rem;
  height: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.5rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
}

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

.message, .reply {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.link-underline-primary {
  text-decoration: underline;
}

.footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer svg {
  width: 1.5rem;
  height: 1.5rem;
}

.date {
  font-weight: bold;
}