/* Variables */
:root {
  --header-color: #000;
  --primary-color: #1a1a1a;
  --secondary-color: #f41b3b;
  --accent-color: #4a4a4a;
  --light-color: #f5f5f5;
  --dark-color: #121212;
  --text-color: #333;
  --text-light: #f5f5f5;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  --border-radius: 0.5rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.btn:hover {
  background-color: #d01731;
  transform: translateY(-0.3rem);
}

/* Header Styles */
header {
  background-color: var(--light-color);
  color: var(--header-color);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 5rem;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.4rem;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  height: 0.3rem;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 0.3rem;
  transition: var(--transition);
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 2.5rem;
}

nav ul li a {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.6rem;
  color: var(--primary-color);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--secondary-color);
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: var(--secondary-color);
}

.cart a {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary-color);
}

.cart a i {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.cart a span {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; /* Centra y muestra más de la imagen */
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
  padding: 5rem 2rem;
}

.hero h1 {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.hero .container {
  margin-top: 14rem;
  width: 90%;
  max-width: 1200px;
  text-align: center;
}

@media (max-width: 992px) {
  .hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');;
      background-position: center top;
      height: 50vh;
    }
  .hero .container {
    margin-top: 20rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 35vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');;
    background-position: center top;
  }
  .hero h1 {
    margin-bottom: 0;
  }
  .hero p {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-mobile.jpg');
    height: 55vh;
    background-position: center top;
  }
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 1.2rem 0;
  overflow: hidden;
}

.announcements {
  display: flex;
  animation: scroll 20s linear infinite;
}

.announcement {
  flex: 0 0 auto;
  padding: 0 3rem;
  white-space: nowrap;
}

.announcement p {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.5rem;
}

.announcement i {
  margin-right: 1rem;
  font-size: 1.8rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: var(--light-color);
  text-align: center;
  padding: 6rem 0;
}

.page-header h1 {
  font-size: 3.6rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.page-header p {
  font-size: 1.8rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

/* Products Section */
.products {
  padding: 8rem 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  position: relative;
}

.products h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.3rem;
  background-color: var(--secondary-color);
}

.product-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 0.1rem solid var(--accent-color);
  padding: 0.8rem 2rem;
  margin: 0 1rem 1rem;
  cursor: pointer;
  border-radius: 3rem;
  transition: var(--transition);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 3rem;
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 30rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.btn-view {
  background-color: var(--secondary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  font-size: 1.5rem;
}

.btn-view:hover {
  background-color: white;
  color: var(--secondary-color);
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.product-artist {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.product-price {
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.btn-add-cart {
  width: 80%;
  display: block;              /* Para que margin: 0 auto funcione */
  margin: 2rem auto;           /* Centra el botón horizontalmente y le da margen arriba/abajo */
  margin-top: 0;
  padding: 1rem 2rem;          /* Botón más compacto */
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  font-size: 1.5rem;
}

.btn-add-cart:hover {
  background-color: var(--secondary-color);
}

.load-more {
  text-align: center;
  margin-top: 5rem;
}

/* Featured Artists */
.featured-artists {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 8rem 0;
}

.featured-artists h2 {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 3rem;
  position: relative;
}

.featured-artists h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.3rem;
  background-color: var(--secondary-color);
}


.artist-slider {
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  padding: 2rem 0;
  scrollbar-width: none; /* Firefox */
}

.artist-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.artist {
  flex: 0 0 auto;
  width: 22rem;
  margin-right: 3rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.artist:hover {
  transform: translateY(-1rem);
}

.artist img {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 0.3rem solid var(--secondary-color);
}

.artist h3 {
  font-size: 1.8rem;
}

/* Artists Grid */
.artists-grid {
  padding: 8rem 0;
}

.artists-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 4rem;
}

.artist-card {
  text-align: center;
  transition: var(--transition);
}

.artist-card:hover {
  transform: translateY(-1rem);
}

.artist-card img {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 0.4rem solid var(--secondary-color);
}

.artist-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.artist-card p {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.artist-card .btn {
  padding: 1rem 2rem;
  font-size: 1.4rem;
}

/* Concerts */
.concerts {
  padding: 8rem 0;
}

.concerts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.concert-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .concert-card {
    flex-direction: row;
  }

}

.concert-image {
  flex: 0 0 30%;
  position: relative;
}

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

.concert-date {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--secondary-color);
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 700;
}

.concert-date .day {
  font-size: 2.4rem;
  line-height: 1;
}

.concert-date .month {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.concert-info {
  flex: 1;
  padding: 2.5rem;
}

.concert-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.concert-info .location {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--accent-color);
}

.concert-info .location i {
  margin-right: 1rem;
  color: var(--secondary-color);
}

.concert-info p {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.7;
}

.concert-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.concert-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Contact */
.contact {
  padding: 8rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

@media (min-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 4rem;
  border-radius: var(--border-radius);
}

.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 0.3rem;
  background-color: var(--secondary-color);
}

.info-item {
  display: flex;
  margin-bottom: 2.5rem;
}

.info-item i {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-right: 2rem;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 1.5rem;
  opacity: 0.8;
}

.social-media h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  background-color: white;
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 0.3rem;
  background-color: var(--secondary-color);
}

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

.form-group label {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 0.1rem solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.map {
  padding: 5rem 0 8rem;
}

.map h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
  position: relative;
}

.map h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.3rem;
  background-color: var(--secondary-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Newsletter */
.newsletter {
  background-color: #f9f9f9;
  padding: 8rem 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.newsletter p {
  margin-bottom: 3rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
}

.newsletter-form {
  display: flex;
  max-width: 50rem;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 0.1rem solid #ddd;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 7rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-logo img {
  height: 5rem;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  font-size: 1.4rem;
  opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 0.2rem;
  background-color: var(--secondary-color);
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a {
  opacity: 0.8;
  transition: var(--transition);
  font-size: 1.5rem;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 0.5rem;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-0.5rem);
}

.social-icons i {
  font-size: 1.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  opacity: 0.7;
}

/* Product Details Page */
.product-details {
  padding: 8rem 0;
}

.product-details-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.product-gallery {
  position: relative;
}

.main-image {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.thumbnail-container {
  display: flex;
  gap: 1rem;
}

.thumbnail {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border: 0.2rem solid var(--secondary-color);
}

.product-details-info h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-details-artist {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.product-details-price {
  font-size: 2.8rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2rem;
}

.product-details-description {
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 1.6rem;
}

.product-details-sizes {
  margin-bottom: 3rem;
}

.product-details-sizes h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.size-options {
  display: flex;
  gap: 1rem;
}

.size-option {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #ddd;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
}

.size-option:hover,
.size-option.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.product-details-quantity {
  margin-bottom: 3rem;
}

.product-details-quantity h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  width: fit-content;
}

.quantity-btn {
  width: 4rem;
  height: 4rem;
  background-color: #f5f5f5;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.quantity-input {
  width: 6rem;
  height: 4rem;
  text-align: center;
  border: 0.1rem solid #ddd;
  font-size: 1.6rem;
}

.add-to-cart-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-btn i {
  margin-right: 1rem;
}

.add-to-cart-btn:hover {
  background-color: #d01731;
}

/* Artist Page */
.artist-page {
  padding: 8rem 0;
}

.artist-header {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
}

.artist-image {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.4rem solid var(--secondary-color);
  margin-right: 4rem;
}

.artist-info h1 {
  font-size: 3.6rem;
  margin-bottom: 1rem;
}

.artist-info p {
  font-size: 1.8rem;
  max-width: 60rem;
  line-height: 1.8;
}

.artist-products h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  position: relative;
}

.artist-products h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.3rem;
  background-color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .product-details-container {
    grid-template-columns: 1fr;
  }
  
  .product-gallery {
    margin-bottom: 3rem;
  }
  
  .artist-header {
    flex-direction: column;
    text-align: center;
  }
  
  .artist-image {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .hamburger-menu span {
    background-color: var(--primary-color);
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 8rem 2rem 2rem;
    transition: var(--transition);
    z-index: 1000;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 1.5rem 0;
  }
  
  nav ul li a {
    font-size: 1.8rem;
    color: var(--light-color);
  }
  
  .logo {
    margin-bottom: 0;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  .hero {
    padding: 8rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .main-image {
    height: 40rem;
  }
}

/* Overlay para cuando el menú móvil está activo */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Estilos para el menú hamburguesa cuando está activo */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(1rem) rotate(45deg);
  background-color: var(--light-color);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-1rem) rotate(-45deg);
  background-color: var(--light-color);
}

/* ARTISTAS DESTACADOS CAMBIOS */
/* Contenedor principal del slider */
.artist-slider-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Centra los artistas correctamente */
  position: relative;
  width: 100%; /* Ocupa todo el ancho */
  overflow: hidden;
  padding: 20px 0;
}

/* Carrusel de artistas */
.artist-slider {
  display: flex;
  gap: 12px; /* Menos espacio entre artistas */
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  width: 85%; /* Hace que los artistas no ocupen todo el ancho */
  padding: 10px 0;
  padding-top: 20px;
  scrollbar-width: none; /* Ocultar scrollbar en Firefox */
}

/* Ocultar la barra de desplazamiento en navegadores basados en WebKit */
.artist-slider::-webkit-scrollbar {
  display: none;
}

/* Cada artista */
.artist {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  position: relative;
  border-radius: 50%;
  padding: 5px; /* Un poco de padding para no cortar el borde al escalar */
}

/* Imagen del artista */
.artist img {
  width: 130px; /* Tamaño ajustado */
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  border: 4px solid var(--secondary-color); /* Círculo rojo siempre visible */
}

/* Texto del artista */
.artist h3 {
  margin-top: 8px;
  font-size: 14px;
  color: white;
}

/* Efecto al pasar el mouse - AUMENTA sin moverse */
.artist:hover {
  transform: scale(1.15);
}

.artist:hover img {
  transform: scale(1.1); /* Para que la imagen no se deforme dentro del contenedor */
}

/* Botones de navegación */
.slider-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 22px;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Botón izquierdo */
.slider-btn.prev {
  left: 10px;
}

/* Botón derecho */
.slider-btn.next {
  right: 10px;
}

/* Efecto hover en los botones */
.slider-btn:hover {
  background-color: darkred;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 576px) {


  /* Ajustar alineación de artistas */
  .artist-slider {
    justify-content: flex-start; /* Para que empiece más a la derecha */
    padding-left: 15%;
    transform: none; /* Eliminar desplazamiento forzado */
  }
}