/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Authentic Stainless Steel Color Palette */
  --steel-primary: #4a5568;
  --steel-secondary: #718096;
  --steel-light: #f7fafc;
  --steel-medium: #cbd5e0;
  --steel-dark: #2d3748;
  --steel-accent: #63b3ed;
  --steel-chrome: #e2e8f0;
  --steel-silver: #edf2f7;
  --steel-charcoal: #1a202c;
  
  /* Metallic Gradients - Inspired by Stainless Steel Reflections */
  --steel-gradient: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 50%, #a0aec0 100%);
  --steel-chrome-gradient: linear-gradient(145deg, #ffffff 0%, #f7fafc 20%, #e2e8f0 50%, #cbd5e0 80%, #a0aec0 100%);
  --steel-subtle: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
  --steel-shine: linear-gradient(45deg, rgba(255,255,255,0.6), rgba(255,255,255,0.1), transparent);
  --steel-reflection: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  
  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Shadows */
  --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--steel-primary);
  background: var(--steel-light);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--steel-secondary);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--steel-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--steel-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.primary-button, .secondary-button, .cta-button, .submit-button {
  padding: var(--spacing-sm) var(--spacing-lg);
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.primary-button {
  background: var(--steel-chrome-gradient);
  color: var(--steel-dark);
  border-color: var(--steel-medium);
  box-shadow: 0 2px 8px rgba(113, 128, 150, 0.2);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(113, 128, 150, 0.25);
  background: linear-gradient(145deg, #ffffff 0%, #f7fafc 15%, #edf2f7 40%, #e2e8f0 70%, #cbd5e0 100%);
}

.secondary-button {
  background: transparent;
  color: var(--steel-primary);
  border-color: var(--steel-medium);
}

.secondary-button:hover {
  background: var(--steel-primary);
  color: white;
}

.cta-button {
  background: var(--steel-accent);
  color: white;
  font-size: 0.9rem;
  padding: var(--spacing-xs) var(--spacing-md);
  box-shadow: 0 2px 6px rgba(99, 179, 237, 0.3);
}

.cta-button:hover {
  background: #4299e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 179, 237, 0.4);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(196, 210, 217, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(180, 180, 180, 0.75);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 70px;
}

.nav-left {
  display: flex;
  gap: 2rem;
  justify-self: start;
}

.nav-center {
  justify-self: center;
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-self: end;
}

.brand-logo {
  height: 70px;
  width: auto;
  margin: 0;
  filter: brightness(0);
  transition: all var(--transition-fast);
}

.brand-logo:hover {
  filter: brightness(0) saturate(100%) invert(20%);
}

/* Fallback for when logo image is not available */
.nav-brand .brand-logo:not([src]),
.nav-brand .brand-logo[src=""] {
  display: none;
}

.nav-brand .brand-logo:not([src]) + .brand-tagline::before,
.nav-brand .brand-logo[src=""] + .brand-tagline::before {
  content: "URIA";
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: var(--steel-chrome-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  background: var(--steel-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--steel-medium);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: #333333;
}

.flag-icon, .cart-icon {
  font-size: 1.1rem;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  color: #000000;
}

.flag-icon {
  margin-right: 1.5rem;
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all var(--transition-medium);
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flag-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flag-icon:active {
  transform: scale(0.95);
}

.cart-icon:hover {
  opacity: 0.7;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--steel-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
}

.hero-container {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 0 2rem;
  margin-top: -14.5rem;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 1.6rem;
  font-weight: 200;
  color: #000000;
  margin-bottom: 3rem;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.contact-button {
  background: #303030;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-button:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}





/* ===== FEATURES SECTION ===== */
.features {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-xl);
  border-radius: 16px;
  background: var(--steel-light);
  border: 1px solid var(--steel-medium);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(113, 128, 150, 0.15);
  background: var(--steel-silver);
  border-color: var(--steel-chrome);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--steel-chrome-gradient);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--steel-reflection);
  transition: left 0.6s ease;
  pointer-events: none;
  opacity: 0;
}

.feature-card:hover::after {
  left: 100%;
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: var(--steel-chrome-gradient);
  border: 2px solid var(--steel-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-dark);
  box-shadow: 0 4px 16px rgba(113, 128, 150, 0.2);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  margin-bottom: var(--spacing-sm);
  color: var(--steel-primary);
}

.feature-description {
  color: var(--steel-secondary);
  line-height: 1.6;
}

/* ===== PRODUCTS PREVIEW SECTION ===== */
.products-preview {
  padding: var(--spacing-2xl) 0;
  background: var(--steel-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
}

.product-category {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-medium);
}

.product-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.category-image {
  height: 250px;
  overflow: hidden;
}

.category-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.category-placeholder.cookware {
  background: linear-gradient(45deg, #e2e8f0 0%, #cbd5e0 50%, #a0aec0 100%);
}

.category-placeholder.utensils {
  background: linear-gradient(45deg, #edf2f7 0%, #e2e8f0 50%, #cbd5e0 100%);
}

.category-placeholder.countertop {
  background: linear-gradient(45deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
}

.category-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  filter: blur(10px);
}

.product-category > div:last-child {
  padding: var(--spacing-lg);
}

.category-title {
  margin-bottom: var(--spacing-xs);
  color: var(--steel-primary);
}

.category-description {
  margin-bottom: var(--spacing-md);
  color: var(--steel-secondary);
}

.category-link {
  color: var(--steel-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.category-link:hover {
  color: var(--steel-primary);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-text {
  max-width: 600px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.stat {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--steel-light);
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--steel-accent);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--steel-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.factory-showcase {
  width: 100%;
  max-width: 400px;
}

.showcase-image.factory {
  width: 100%;
  height: 400px;
  background: var(--steel-gradient);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.showcase-image.factory::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  filter: blur(15px);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 10rem 0;
  background: #ffffff;
  position: relative;
}

.products-title {
  font-size: 2.8rem;
  font-weight: 300;
  color: #000000;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-item {
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.product-item:nth-child(2) {
  transition-delay: 0.2s;
}

.product-item:nth-child(3) {
  transition-delay: 0.4s;
}

.product-image {
  width: 100%;
  height: 450px;
  max-width: 500px;
  transition: transform 0.3s ease;
  object-fit: contain;
  object-position: center;
}

.product-image:hover {
  transform: translateY(-5px);
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
  padding: 8rem 0;
  background: #f8f9fa;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text {
  padding-right: 2rem;
}

.story-title {
  font-size: 3rem;
  font-weight: 300;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.story-subtitle {
  font-size: 1.25rem;
  color: #718096;
  margin-bottom: 2rem;
  font-weight: 300;
}

.story-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.story-description p:last-child {
  margin-bottom: 0;
}

.story-visual {
  position: relative;
}

.story-image-container {
  position: relative;
}

.story-image {
  width: 100%;
  height: 450px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.story-image:hover {
  transform: scale(1.02);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 10rem 0;
  background: #ffffff;
  text-align: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 4rem;
  font-weight: 300;
}

.contact-form-container {
  margin-bottom: 4rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.contact-method {
  text-align: center;
}

.contact-label {
  display: block;
  font-size: 0.9rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.contact-value {
  display: block;
  font-size: 1.1rem;
  color: #000000;
  font-weight: 400;
}

/* ===== FORM STYLES ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #999999;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: white;
  padding: 0 4px;
  font-weight: 300;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: 0;
  left: 12px;
  font-size: 0.85rem;
  color: #666666;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 1rem;
}

.form-group textarea + label {
  top: 1.5rem;
  transform: translateY(0);
}

.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: 0;
  transform: translateY(0);
}

.form-group select {
  cursor: pointer;
}

.form-group select label {
  top: 0;
  left: 12px;
  font-size: 0.85rem;
  color: #666666;
}

.contact-submit-button {
  background: #000000;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.contact-submit-button:hover {
  background: #333333;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--steel-charcoal) 0%, var(--steel-dark) 100%);
  color: var(--steel-light);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  border-top: 1px solid var(--steel-medium);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.mexico-logo {
  height: 50px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.mexico-logo:hover {
  opacity: 1;
}

/* Fallback for footer logo when not available */
.footer-brand .footer-logo:not([src]),
.footer-brand .footer-logo[src=""] {
  display: none;
}

.footer-brand .footer-logo:not([src]) + .brand-tagline::before,
.footer-brand .footer-logo[src=""] + .brand-tagline::before {
  content: "URIA";
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-brand .brand-name {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.footer-description {
  color: var(--steel-medium);
  margin-top: var(--spacing-sm);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.footer-title {
  color: white;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link {
  display: block;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--steel-secondary);
}

.copyright {
  color: var(--steel-medium);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  color: #cccccc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: inherit;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Navigation */
  .nav-container {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 1.5rem;
    height: 65px;
  }
  
  .nav-left {
    gap: 1.2rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
  }
  
  .brand-logo {
    height: 32px;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  /* Hero */
  .hero {
    min-height: 85vh;
    background-attachment: scroll; /* Better performance on mobile */
  }
  
  .hero-container {
    padding: 0 1.5rem;
    margin-top: -4rem;
  }
  
  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  
  .contact-button {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    border-radius: 50px;
    min-width: 200px;
  }
  
  /* Products */
  .products-section {
    padding: 6rem 0;
  }
  
  .products-title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
    padding: 0 1.5rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .product-image {
    max-width: 100%;
    height: 280px;
    margin: 0 auto;
  }
  
  .product-item:nth-child(2),
  .product-item:nth-child(3) {
    transition-delay: 0.2s;
  }
  
  /* Contact */
  .contact {
    padding: 6rem 0;
  }
  
  .contact-content {
    padding: 0 1.5rem;
  }
  
  .contact-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }
  
  .contact-submit-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  /* Our Story */
  .our-story-section {
    padding: 5rem 0;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 0 1.5rem;
  }

  .story-text {
    padding-right: 0;
    order: 2;
  }

  .story-visual {
    order: 1;
  }

  .story-title {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
  }

  .story-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .story-description p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .story-image {
    height: 280px;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    padding: 0 1.5rem;
  }
  
  .footer-links {
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Navigation - Cleaner mobile nav */
  .nav-container {
    padding: 0 1rem;
    height: 60px;
  }
  
  .nav-left .nav-link:first-child {
    display: none; /* Hide first nav link on very small screens */
  }
  
  .nav-left {
    gap: 1rem;
  }
  
  .nav-right {
    gap: 0.5rem;
  }
  
  .flag-icon {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    padding: 0.3rem;
  }
  
  .brand-logo {
    height: 28px;
  }
  
  /* Hero - Better mobile sizing */
  .hero {
    min-height: 80vh;
  }
  
  .hero-container {
    padding: 0 1rem;
    margin-top: -2rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.005em;
  }
  
  .contact-button {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    min-width: 180px;
  }
  
  /* Products - Single column with better spacing */
  .products-section {
    padding: 5rem 0;
  }
  
  .products-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .product-image {
    height: 240px;
    max-width: 100%;
  }

  /* Our Story - Compact mobile version */
  .our-story-section {
    padding: 4rem 0;
  }

  .story-content {
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .story-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .story-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .story-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .story-image {
    height: 240px;
  }
  
  /* Contact - Better mobile form */
  .contact {
    padding: 5rem 0;
  }
  
  .contact-content {
    padding: 0 1rem;
  }
  
  .contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }
  
  .contact-submit-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .contact-methods {
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
  
  /* Footer */
  .footer-content {
    padding: 0 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-logos {
    gap: 0.8rem;
  }
  
  .mexico-logo {
    height: 35px;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 60px !important;
  height: 60px !important;
  background: #25D366 !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
  z-index: 9999 !important;
  transition: all 0.3s ease !important;
  animation: whatsappPulse 2s ease-in-out infinite !important;
  border: none !important;
  outline: none !important;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 56px !important;
    height: 56px !important;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Very small screens - better touch targets */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px !important;
    right: 15px !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
  
  /* Better touch targets for small screens */
  .nav-link,
  .flag-icon,
  .cart-icon {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-visual {
  animation: float 6s ease-in-out infinite;
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .hero-background,
  .contact-form {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
} 