/* ===========================
   IGNACIA SHOWROOM - Design System
   Theme: Pantone Buttercream 11-0110
   Font: Spline Sans + Playfair Display
   =========================== */

/* Fonts moved to HTML head for performance */

/* --- CSS Variables --- */
:root {
  --primary: #C4A882;
  --primary-dark: #A68B6B;
  --primary-light: #D5C4A7;
  --primary-glow: rgba(196, 168, 130, 0.25);
  --accent: #8B6F47;
  --accent-light: #C49B5C;
  --bg-light: #FDFBF7;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAF6F0;
  --bg-section: #F5F0E8;
  --bg-gradient: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 50%, #FDFBF7 100%);
  --text-primary: #2C2420;
  --text-secondary: #6B5E52;
  --text-muted: #9A8E82;
  --border-color: rgba(196, 168, 130, 0.25);
  --border-glow: rgba(196, 168, 130, 0.5);
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.1);
  --shadow-glow: 0 4px 30px rgba(196, 168, 130, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Spline Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
  --max-width: 1280px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  font-family: var(--font-body);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent-light);
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(139, 111, 71, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.35);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--primary);
  padding: 12px 30px;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee672, #15a08f);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  color: white;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(44, 36, 32, 0.08);
  border-bottom: 1px solid var(--border-color);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(196, 168, 130, 0.15);
}

.nav-links a.active {
  background: var(--accent);
  color: white;
}

.nav-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-whatsapp:hover {
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, #FAF7F2 0%, #F0EAE0 40%, #E8E0D4 70%, #FAF7F2 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 168, 130, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(196, 155, 92, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(280px, 40vw, 500px);
  font-weight: 700;
  color: rgba(196, 168, 130, 0.06);
  letter-spacing: 0.05em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  animation: watermarkFloat 8s ease-in-out infinite alternate;
}

@keyframes watermarkFloat {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -52%) scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glow);
  background: rgba(196, 168, 130, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .subtitle {
  margin: 0 auto 40px;
  font-size: 1.2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Decorative floating elements */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}

.hero-decor:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-decor:nth-child(2) {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: -3%;
  animation-delay: 3s;
}

.hero-decor:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 10%;
  background: var(--accent-light);
  opacity: 0.04;
  animation-delay: 5s;
}

/* --- Section Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .subtitle {
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: var(--radius-xl);
  background: rgba(196, 168, 130, 0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* --- Product Cards --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-glow);
}

.product-card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--bg-section);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.product-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card-body .btn {
  width: 100%;
  justify-content: center;
}

/* --- Catalog Section Titles --- */
.catalog-section-title {
  margin-bottom: 8px;
}

.catalog-section-title h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.catalog-section-title .subtitle {
  font-size: 0.95rem;
}

/* --- Category Cards --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(44, 36, 32, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.category-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: white;
}

.category-card-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.category-card-overlay .link-arrow {
  color: var(--primary-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.category-card-overlay .link-arrow .material-icons {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.category-card:hover .link-arrow .material-icons {
  transform: translateX(5px);
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.feature-icon .material-icons {
  font-size: 28px;
  color: var(--accent);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* --- Location Section --- */
.location-section {
  background: var(--bg-section);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h2 {
  margin-bottom: 24px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.location-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(196, 168, 130, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-detail-icon .material-icons {
  color: var(--accent);
  font-size: 22px;
}

.location-detail-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.location-detail-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- Catalog Filter Sidebar --- */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.catalog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.filter-group {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.filter-group h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group h3 .material-icons {
  color: var(--accent);
  font-size: 20px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 4px;
}

.filter-option:hover {
  background: rgba(196, 168, 130, 0.1);
}

.filter-option.active {
  background: rgba(196, 168, 130, 0.18);
  color: var(--accent);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.filter-option input[type="radio"] {
  border-radius: 50%;
}

.filter-option input:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.filter-option input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.filter-option label {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.filter-option.active label {
  color: var(--text-primary);
}

/* Price Range Slider */
.price-range {
  padding: 10px 0;
}

.price-range input[type="range"] {
  width: 100%;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(139, 111, 71, 0.3);
}

.price-display {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Page Header --- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-section);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196, 168, 130, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.page-header .subtitle {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}


/* --- Legal Pages --- */
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 8px 0 20px 20px;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  transition: var(--transition);
}

.legal-content a:hover {
  color: var(--accent-dark);
}

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-content h2 {
  margin-bottom: 24px;
}

.about-story-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: var(--border-glow);
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 168, 130, 0.2), rgba(196, 168, 130, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon .material-icons {
  font-size: 32px;
  color: var(--accent);
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* Quote Section */
.quote-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background: var(--bg-light);
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-family: var(--font-display);
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--text-primary);
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: #2C2420;
  padding: 80px 0 0;
  border-top: 1px solid var(--border-color);
  color: rgba(255, 255, 255, 0.85);
}

.footer h3,
.footer h4 {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.2);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, -30px);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* --- Results Counter --- */
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 16px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.results-count {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.results-count strong {
  color: var(--accent);
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-toggle button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.view-toggle button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* --- Responsive --- */
@media (max-width: 1024px) {

  .categories-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .filter-group {
    margin-bottom: 0;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 14px 20px;
    font-size: 1.1rem;
    width: 100%;
  }

  .categories-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .product-card-img {
    height: 200px;
  }

  .hero {
    padding-top: 100px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .catalog-sidebar {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* --- Overlay for mobile nav --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 32, 0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* --- Loading / Shimmer --- */
.img-placeholder {
  background: linear-gradient(90deg, var(--bg-section) 25%, var(--bg-card) 50%, var(--bg-section) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* --- Tag Badges --- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  background: rgba(196, 168, 130, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
}

.tag-gold {
  background: rgba(196, 155, 92, 0.15);
  color: var(--accent-light);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-3px);
}