/* ============================================
   BAZAR GARRAS CON ESTILO - CSS 2026
   Premium Sportswear & Urban Fashion Landing
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS Custom Properties === */
:root {
  /* Colors */
  --primary-black: #0a0a0a;
  --rich-black: #111111;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #8a8a8a;
  --off-white: #f5f5f5;
  --pure-white: #ffffff;
  
  /* Accent Colors */
  --accent-red: #ff2d55;
  --accent-blue: #0a84ff;
  --accent-electric: #5e5ce6;
  --accent-gradient: linear-gradient(135deg, #ff2d55, #ff6b35);
  --accent-gradient-blue: linear-gradient(135deg, #0a84ff, #5e5ce6);
  --accent-gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  
  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1320px;
  --container-padding: 0 40px;
  
  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.25);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.35);
  --shadow-glow-red: 0 0 40px rgba(255,45,85,0.3);
  --shadow-glow-blue: 0 0 40px rgba(10,132,255,0.3);
  
  /* Glassmorphism */
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --glass-blur: blur(20px);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

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

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

ul { list-style: none; }

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-black);
}
::-webkit-scrollbar-thumb {
  background: var(--medium-gray);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* === Preloader === */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  width: 120px;
  height: auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
  margin-bottom: 30px;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--medium-gray);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-inner {
  width: 0;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 10px;
  animation: preloaderLoad 2s ease-in-out forwards;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes preloaderLoad {
  0% { width: 0; }
  100% { width: 100%; }
}

/* === Header / Navbar === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.header-logo img {
  height: 55px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.header.scrolled .header-logo img {
  height: 45px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  width: 100%;
  justify-content: center;
}

.nav-menu .nav-left,
.nav-menu .nav-right {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
  border-radius: 10px;
}

.nav-menu a:hover {
  color: var(--pure-white);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hamburger / Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
  position: absolute;
  right: 40px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--pure-white);
  transition: var(--transition-smooth);
  border-radius: 10px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
}

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

.mobile-menu a {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pure-white);
  transition: var(--transition-smooth);
  position: relative;
}

.mobile-menu a:hover {
  color: var(--accent-red);
  transform: translateX(10px);
}

/* === Hero Section === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.6) 80%,
    rgba(10,10,10,1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(255,45,85,0.3);
  border-radius: 30px;
  background: rgba(255,45,85,0.08);
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 35px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--pure-white);
  box-shadow: var(--shadow-glow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(255,45,85,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--pure-white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

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

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

.hero-dot.active {
  background: var(--accent-red);
  border-color: rgba(255,45,85,0.5);
  box-shadow: 0 0 15px rgba(255,45,85,0.4);
  transform: scale(1.2);
}

/* === Section Titles === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  margin: 0 auto 20px;
  border-radius: 10px;
}

.section-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* === Brands Section === */
.brands-section {
  padding: var(--section-padding);
  background: var(--rich-black);
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,45,85,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.brand-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: 0.6s;
}

.brand-card:hover::before {
  left: 100%;
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,45,85,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.08);
}

.brand-card span {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
  text-align: center;
}

.brand-card:hover span {
  color: var(--pure-white);
}

/* === Collections Section === */
.collections-section {
  padding: var(--section-padding);
  background: var(--primary-black);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 380px);
  gap: 20px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 50%);
}

.collection-tag {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 8px;
}

.collection-name {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-name {
  transform: translateY(0);
}

.collection-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-desc {
  opacity: 1;
  transform: translateY(0);
}

.collection-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: translate(10px, -10px);
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* === Gallery Section === */
.gallery-section {
  padding: var(--section-padding);
  background: var(--rich-black);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(10,10,10,0.4);
}

.gallery-item-overlay .icon-zoom {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-bounce);
}

.gallery-item:hover .gallery-item-overlay .icon-zoom {
  opacity: 1;
  transform: scale(1);
}

/* === About Section === */
.about-section {
  padding: var(--section-padding);
  background: var(--primary-black);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10,132,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translateY(-50%);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-image-badge .badge-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.about-image-badge .badge-text span {
  display: block;
}
.about-image-badge .badge-text .badge-number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
}
.about-image-badge .badge-text .badge-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 15px;
}

.about-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
}

.about-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 35px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature .feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* === Location Section === */
.location-section {
  padding: var(--section-padding);
  background: var(--rich-black);
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,45,85,0.3), transparent);
}

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

.location-info {
  position: relative;
  z-index: 2;
}

.location-icon-big {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  animation: locationFloat 3s ease-in-out infinite;
}

@keyframes locationFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.location-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.location-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.location-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 35px;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 15px;
}

.location-detail .detail-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.location-detail .detail-text {
  display: flex;
  flex-direction: column;
}

.location-detail .detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}

.location-detail .detail-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--glass-border);
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(0.5) brightness(0.8) contrast(1.1);
  transition: filter 0.5s ease;
}

.location-map:hover iframe {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* === Social Bar === */
.social-bar {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 900;
}

.social-bar a {
  width: 48px;
  height: 48px;
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.social-bar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-bar a.social-tiktok::before { background: linear-gradient(135deg, #25f4ee, #fe2c55); }
.social-bar a.social-facebook::before { background: linear-gradient(135deg, #1877f2, #4267b2); }
.social-bar a.social-instagram::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-bar a.social-whatsapp::before { background: linear-gradient(135deg, #25d366, #128c7e); }

.social-bar a:hover {
  transform: translateX(-5px) scale(1.1);
  border-color: transparent;
  color: var(--pure-white);
  box-shadow: var(--shadow-md);
}

.social-bar a:hover::before {
  opacity: 1;
}

.social-bar a svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
  fill: currentColor;
}

/* === Footer === */
.footer {
  background: var(--primary-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 320px;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--pure-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--pure-white);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 10px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--pure-white);
  padding-left: 5px;
}

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

.footer-contact .contact-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
  text-align: center;
}

.footer-contact .contact-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

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

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

.footer-bottom .made-with {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .made-with span {
  color: var(--accent-red);
}

/* === Scroll Animations === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }

/* === Ticker / Marquee === */
.marquee-section {
  padding: 25px 0;
  background: var(--dark-gray);
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-red);
  flex-shrink: 0;
}

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

/* === Responsive === */
@media (max-width: 1100px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .nav-menu .nav-left,
  .nav-menu .nav-right {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .about-grid,
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    max-height: 400px;
  }
  
  .location-map iframe {
    height: 350px;
  }
  
  .social-bar {
    right: 15px;
  }
  
  .social-bar a {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
    --container-padding: 0 20px;
  }
  
  .hero-content {
    bottom: 20%;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .brand-card {
    padding: 20px 15px;
    min-height: 80px;
  }
  
  .brand-card span {
    font-size: 0.7rem;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .collections-grid .collection-card {
    height: 300px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 300px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item,
  .gallery-item:nth-child(1) {
    height: 250px;
  }
  
  .social-bar {
    right: 10px;
    gap: 10px;
  }
  
  .social-bar a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

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

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2rem;
  color: var(--pure-white);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* === Parallax Divider === */
.parallax-divider {
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider .parallax-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  object-fit: cover;
  filter: brightness(0.3);
}

.parallax-divider .parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.parallax-divider .parallax-quote {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.parallax-divider .parallax-quote .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Counter Animation === */
.counter-strip {
  padding: 50px 0;
  background: var(--dark-gray);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.counter-item .counter-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.counter-item .counter-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
}

@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .parallax-divider {
    height: 300px;
  }
}
