/* ========================================
   ALCA JOYERÍA - Estilos Principales
   ======================================== */

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

:root {
  --gold: #AA4C52;
  --gold-dark: #8E3A40;
  --gold-light: #E4A7A7;
  --gold-pale: #F9CECE;
  --black: #1A1A1A;
  --dark: #2C2C2C;
  --gray: #5C5C5F;
  --gray-light: #A0A0A0;
  --gray-pale: #EFEFEF;
  --white: #FFFFFF;
  --bg-cream: #FDF6F5;
  --bg-warm: #FAF0EF;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gold-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--gold);
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.announcement-bar .announcement-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: scroll-announce 20s linear infinite;
  white-space: nowrap;
}

.announcement-bar .announcement-scroll span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-bar .announcement-scroll span::before {
  display: none;
}

.announce-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  vertical-align: middle;
  filter: brightness(10);
}

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

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gold-pale);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  background: var(--gold-pale);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-dark);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo a .logo-sub {
  display: none;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-top: -2px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icons a,
.header-icons button {
  color: var(--gold-dark);
  font-size: 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.header-icons a:hover,
.header-icons button:hover {
  background: var(--bg-cream);
  color: var(--gold-dark);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Navigation --- */
.nav-main {
  border-top: 1px solid var(--gold-light);
}

.nav-main ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-main ul li {
  position: relative;
}

.nav-main ul li a {
  display: block;
  padding: 14px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  position: relative;
  transition: var(--transition);
}

.nav-main ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-main ul li a:hover {
  color: var(--gold-dark);
}

.nav-main ul li a:hover::after {
  width: 60%;
}

.nav-main ul li.featured a {
  color: var(--gold-dark);
  font-weight: 700;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 12px 0;
  z-index: 999;
}

.nav-main ul li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 10px 24px !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  display: block;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--bg-cream);
  color: var(--gold-dark) !important;
}

.nav-dropdown a::after {
  display: none !important;
}

/* --- Hero Slider --- */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.05);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(142,58,64,0.55) 0%,
    rgba(142,58,64,0.25) 50%,
    rgba(142,58,64,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 60px;
  max-width: 700px;
  margin-right: auto;
}

.hero-content .hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-content .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

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

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--white);
  transform: scale(1.2);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 5;
  pointer-events: none;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.3);
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--gold-dark);
}

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

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* --- Section Common --- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header .section-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* --- Benefits Bar --- */
.benefits-bar {
  background: var(--bg-cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-pale);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.benefit-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.benefit-item p {
  font-size: 0.75rem;
  color: var(--gray);
}

/* --- Collections Grid --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(142,58,64,0.7), transparent);
  padding: 30px 20px 20px;
  transition: var(--transition);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(142,58,64,0.85), rgba(142,58,64,0.1));
}

.collection-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.collection-card-overlay span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}

/* --- Products Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-cream);
}

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

.product-card-image .product-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

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

.product-card:hover .product-img-main {
  opacity: 0;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}

.product-badge.sale {
  background: var(--gold-dark);
}

.product-quick-actions {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-quick-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-quick-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.product-card-info {
  padding: 16px 4px;
  text-align: center;
}

.product-card-info .product-category {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 6px;
}

.product-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.product-card-info .product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.product-card-info .product-price .original-price {
  text-decoration: line-through;
  color: var(--gray-light);
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 8px;
}

/* --- About Section --- */
.about-section {
  background: var(--bg-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.about-content .about-subtitle {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-content .btn {
  margin-top: 16px;
}

/* --- Personalization Section --- */
.personalization-section {
  position: relative;
  overflow: hidden;
}

.personalization-bg {
  position: relative;
  background: var(--gold);
  padding: 100px 0;
  overflow: hidden;
}

.personalization-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../recursos/FONDO BANNER LARGO.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.personalization-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(142,58,64,0.2);
}

.personalization-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.personalization-content .section-subtitle {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.personalization-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.personalization-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

.personalization-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.personalization-feature i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.personalization-feature h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.personalization-feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

/* --- Instagram Section --- */
.instagram-section {
  padding: 80px 0 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 50px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(170,76,82,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover .instagram-item-overlay {
  opacity: 1;
}

.instagram-item-overlay i {
  color: var(--white);
  font-size: 1.5rem;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: var(--bg-cream);
  padding: 80px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.newsletter-inner p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 480px;
  border: 2px solid var(--gold);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: none;
  outline: none;
  background: transparent;
  letter-spacing: 0.5px;
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

/* --- Footer --- */
.footer {
  background: var(--gold-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .footer-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-column .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-column .footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
}

.footer-column .footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* --- WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gold-dark);
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  transition: left 0.4s ease;
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(142,58,64,0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-pale);
}

.mobile-menu-header .mobile-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 4px;
}

.mobile-menu-close {
  font-size: 1.5rem;
  color: var(--gold-dark);
  padding: 8px;
}

.mobile-menu nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gray-pale);
}

.mobile-menu nav ul li a:hover {
  color: var(--gold-dark);
}

.mobile-menu-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-pale);
}

.mobile-menu-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold-dark);
  transition: var(--transition);
}

.mobile-menu-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .nav-main {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 350px;
  }

  .personalization-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .personalization-content h2 {
    font-size: 2rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .logo a {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    min-height: 360px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .hero-subtitle {
    font-size: 0.7rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.72rem;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .newsletter-form {
    flex-direction: column;
    border: none;
  }

  .newsletter-form input {
    border: 2px solid var(--gold);
    margin-bottom: 8px;
  }

  .newsletter-form button {
    padding: 14px;
  }

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

/* --- Loading Screen --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader.loaded {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-content .loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--gold-dark);
  animation: pulse 1.5s ease infinite;
}

.loader-content .loader-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto;
  animation: loader-expand 1.5s ease infinite;
}

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

@keyframes loader-expand {
  0%, 100% { width: 30px; }
  50% { width: 80px; }
}

/* --- Dropzone Styles --- */
.dropzone {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-cream);
  border: 2px dashed var(--gold-light);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dropzone i {
  font-size: 1.8rem;
  color: var(--gold-light);
  transition: all 0.3s ease;
}

.dropzone span {
  font-family: var(--font-body);
  font-weight: 400;
}

.dropzone:hover,
.dropzone.drag-over {
  border-color: var(--gold);
  background-color: var(--gold-pale);
  color: var(--gold);
}

.dropzone:hover i,
.dropzone.drag-over i {
  color: var(--gold);
  transform: scale(1.1);
}

.dropzone.has-image {
  border: none;
}

.dropzone.has-image i,
.dropzone.has-image span {
  display: none;
}

/* Hero dropzone specifics */
.hero-slide-bg.dropzone {
  background-color: var(--gold-pale);
  border-style: dashed;
  border-width: 2px;
  border-color: var(--gold-light);
}

.hero-slide-bg.dropzone::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  z-index: 1;
}

.hero-slide-bg.dropzone.has-image::after {
  display: none;
}

.hero-slide-bg.dropzone.has-image {
  border: none;
}

/* Collection card dropzone */
.collection-card .dropzone {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

/* Product card dropzone */
.product-card-image .dropzone {
  aspect-ratio: 1;
  position: relative;
  border-radius: 0;
}

/* About dropzone */
.dropzone-about {
  height: 500px;
  border-radius: 4px;
}

/* Instagram dropzone */
.dropzone-insta {
  aspect-ratio: 1;
  border: 1px dashed var(--gold-light);
  font-size: 0.65rem;
}

.dropzone-insta i {
  font-size: 1.2rem;
}

/* Dropzone file input (hidden) */
.dropzone input[type="file"] {
  display: none;
}

@media (max-width: 768px) {
  .dropzone-about {
    height: 300px;
  }
}

/* =============================================
   BRAND RESOURCE INTEGRATIONS
   ============================================= */

/* --- Loader with Brand Logo --- */
.loader-logo-img {
  width: 80px;
  height: auto;
  animation: pulse 1.5s ease infinite;
}

.loader-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 6px;
  color: var(--gold);
  margin-top: 8px;
  text-transform: uppercase;
}

/* --- Benefit Brand Icons --- */
.benefit-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(15%) saturate(1500%) hue-rotate(316deg) brightness(85%) contrast(85%);
}

/* --- Section Dividers with Brand Icons --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
  opacity: 0.5;
}

.divider-icon {
  height: 18px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(40%) sepia(15%) saturate(1500%) hue-rotate(316deg) brightness(85%) contrast(85%);
}

.divider-icon.flip {
  transform: scaleX(-1);
}

/* --- Floating Blobs --- */
.floating-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

.blob-1 {
  width: 200px;
  right: -60px;
  top: 20%;
  animation: float-slow 12s ease-in-out infinite;
}

.blob-2 {
  width: 150px;
  left: -40px;
  bottom: 10%;
  animation: float-slow 10s ease-in-out infinite reverse;
}

.blob-about {
  width: 250px;
  right: 0;
  bottom: -30px;
  opacity: 0.06;
  animation: float-slow 15s ease-in-out infinite;
}

.blob-newsletter-1 {
  width: 120px;
  left: 5%;
  top: 20%;
  animation: float-slow 8s ease-in-out infinite;
  opacity: 0.06;
}

.blob-newsletter-2 {
  width: 100px;
  right: 8%;
  bottom: 15%;
  animation: float-slow 10s ease-in-out infinite reverse;
  opacity: 0.06;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* --- About Section Decorations --- */
.about-image {
  position: relative;
}

.about-deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  filter: brightness(0) saturate(100%) invert(40%) sepia(15%) saturate(1500%) hue-rotate(316deg) brightness(85%) contrast(85%);
  opacity: 0.25;
}

.about-deco-eye {
  width: 40px;
  top: -15px;
  right: -15px;
  animation: float-slow 6s ease-in-out infinite;
}

.about-deco-star {
  width: 25px;
  bottom: 30px;
  left: -12px;
  animation: float-slow 8s ease-in-out infinite reverse;
}

/* --- Personalization Logo --- */
.personalization-logo {
  width: 70px;
  height: auto;
  margin-bottom: 24px;
  filter: brightness(10);
  opacity: 0.9;
}

/* --- Personalization Feature Icons --- */
.pers-feature-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(10);
  opacity: 0.9;
}

/* --- Newsletter Logo --- */
.newsletter-logo {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.3;
}

.newsletter-section {
  position: relative;
  overflow: hidden;
}

/* --- Footer Logo Image --- */
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand .footer-logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

/* --- Footer Pattern Overlay --- */
.footer {
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../recursos/Recurso 2.png');
  background-size: 350px;
  background-repeat: repeat;
  opacity: 0.04;
  z-index: 1;
}

/* --- Mobile Logo --- */
.mobile-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* --- Products Section Background --- */
.section-products {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.section-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../recursos/Recurso 2.png');
  background-size: 350px;
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
}

/* --- Sections relative positioning for blobs --- */
#colecciones {
  position: relative;
  overflow: hidden;
}

.about-section {
  position: relative;
  overflow: hidden;
}

/* --- Responsive adjustments for brand elements --- */
@media (max-width: 768px) {
  .logo-img {
    height: 42px;
  }

  .section-divider {
    gap: 15px;
    padding: 20px 0;
  }

  .divider-icon {
    height: 14px;
  }

  .floating-blob {
    display: none;
  }

  .about-deco {
    display: none;
  }

  .personalization-logo {
    width: 50px;
    margin-bottom: 16px;
  }

  .pers-feature-icon {
    width: 28px;
    height: 28px;
  }

  .footer-logo-img {
    height: 50px;
  }

  .newsletter-logo {
    width: 40px;
  }

  .benefit-icon-img {
    width: 24px;
    height: 24px;
  }
}
