/* Component Styles - Mobile First */

/* Top Bar */
.top-bar {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

.top-bar .container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.top-bar-content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.top-bar a {
  color: var(--bg-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
  font-size: 0.75rem;
  white-space: nowrap;
}

.top-bar a:hover {
  opacity: 0.8;
  color: var(--bg-white);
}

/* Header */
.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.navbar {
  padding: 1rem 0;
}

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

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius);
  padding: 1rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  list-style: none;
  border: 1px solid var(--border-light);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-section);
  color: var(--primary-color);
}

/* Elegant Navigation Contact */
.nav-contact {
  display: none;
  gap: 1rem;
  align-items: center;
}

.nav-contact-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-contact-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 25px;
  color: var(--text-medium);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.nav-contact-trigger:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(74, 155, 155, 0.05);
}

.nav-contact-trigger i {
  font-size: 0.9rem;
}

.nav-contact-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  padding: 0.75rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1002;
}

.nav-contact-item:hover .nav-contact-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-contact-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.85rem;
  transition: var(--transition);
  margin-bottom: 0.25rem;
}

.nav-contact-option:last-child {
  margin-bottom: 0;
}

.nav-contact-option:hover {
  background: var(--bg-section);
  color: var(--primary-color);
}

.nav-contact-option i {
  width: 16px;
  text-align: center;
}

/* Mobile Navigation - Fixed */
.nav-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-white);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding-top: 80px;
}

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

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0;
  list-style: none;
}

.mobile-menu .nav-menu li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  color: var(--primary-color);
  background: var(--bg-section);
}

.mobile-menu .dropdown > .nav-link::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-menu .dropdown.active > .nav-link::after {
  transform: rotate(180deg);
}

.mobile-menu .dropdown-menu {
  position: static;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: none;
  box-shadow: none;
  background: var(--bg-section);
  margin: 0;
  border: none;
  padding: 0;
  list-style: none;
  transition: all 0.3s ease;
}

.mobile-menu .dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 300px;
  padding: 0.5rem 0;
}

.mobile-menu .dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .dropdown-menu a {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  display: block;
  color: var(--text-medium);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-menu .dropdown-menu a:hover {
  color: var(--primary-color);
  background: rgba(74, 155, 155, 0.1);
}

.mobile-contact {
  padding: 1.5rem;
  border-top: 2px solid var(--border-light);
  margin-top: 1rem;
  background: var(--bg-section);
}

.mobile-contact-section {
  margin-bottom: 1.5rem;
  background: var(--bg-white);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.mobile-contact-section:last-child {
  margin-bottom: 0;
}

.mobile-contact-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.mobile-contact-buttons {
  display: flex;
  gap: 0.75rem;
}

.mobile-contact-btn {
  flex: 1;
  padding: 0.875rem 0.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-contact-btn.phone {
  background: var(--primary-color);
  color: var(--bg-white);
}

.mobile-contact-btn.whatsapp {
  background: var(--accent-color);
  color: var(--bg-white);
}

.mobile-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-section);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-medium);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  background: var(--bg-white);
  padding: 2rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* Main Content - Enhanced */
.main-content {
  background: linear-gradient(135deg, var(--bg-section) 0%, rgba(248, 250, 251, 0.8) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,155,155,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.main-content-inner {
  position: relative;
  z-index: 1;
}

.main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.main-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Enhanced Elegant CTAs - Fixed */
.elegant-cta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0;
  font-weight: 500;
  max-width: 500px;
}

.elegant-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.elegant-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
}

.elegant-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.elegant-btn:hover::before {
  left: 100%;
}

.elegant-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.elegant-btn.phone {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
}

.elegant-btn.phone:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(74, 155, 155, 0.4);
}

.elegant-btn.whatsapp {
  background: linear-gradient(135deg, var(--accent-color), #128c7e);
  color: var(--bg-white);
}

.elegant-btn.whatsapp:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.elegant-btn i {
  font-size: 1.1rem;
}

/* Categories Section */
.categories-section {
  background: var(--bg-white);
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.category-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-card-image {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover .category-card-image img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(74, 155, 155, 0.8), rgba(107, 182, 182, 0.6));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.category-overlay i {
  font-size: 3rem;
  color: var(--bg-white);
}

.category-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
  background: var(--bg-section);
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--bg-white);
  font-size: 2rem;
}

.benefit-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-item p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-white);
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.testimonial-content p::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--primary-color);
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star {
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-info h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Enhanced Footer CTA Section */
.footer-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.footer-cta-content {
  position: relative;
  z-index: 1;
}

.footer-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-cta p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.footer-cta-btn:hover::before {
  left: 100%;
}

.footer-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.footer-cta-btn.primary {
  background: var(--bg-white);
  color: var(--primary-color);
}

.footer-cta-btn.primary:hover {
  background: var(--bg-section);
  color: var(--primary-color);
}

.footer-cta-btn.whatsapp {
  background: var(--accent-color);
  color: var(--bg-white);
}

.footer-cta-btn.whatsapp:hover {
  background: #128c7e;
  color: var(--bg-white);
}

/* WhatsApp Widget - Fixed */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

.widget-toggle {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  border: none;
  animation: pulse 2s infinite;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.widget-toggle:hover,
.widget-toggle:active,
.widget-toggle:focus {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  outline: none;
}

.widget-menu {
  position: absolute;
  bottom: 75px;
  right: 0;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  max-height: 80vh;
  overflow-y: auto;
}

.widget-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.widget-item {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: var(--transition);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.widget-item:hover,
.widget-item:active,
.widget-item:focus {
  background: var(--bg-section);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  text-decoration: none;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.widget-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 0.75rem;
  display: block;
}

.widget-item-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.widget-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-medium);
  padding: 0.5rem;
  background: var(--bg-section);
  border-radius: 4px;
  font-weight: 500;
}

.widget-contact.whatsapp-only {
  background: rgba(37, 211, 102, 0.1);
  color: var(--accent-color);
  font-weight: 600;
}

/* Mobile specific improvements */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .widget-toggle {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .widget-menu {
    min-width: 240px;
    right: -5px;
    bottom: 70px;
    padding: 0.75rem;
  }

  .widget-item {
    padding: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .widget-item-title {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .widget-contact {
    padding: 0.625rem;
    font-size: 0.8rem;
  }

  .elegant-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 0.75rem;
    align-items: center;
    margin: 0 auto;
  }

  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 1rem;
    align-items: center;
    margin: 0 auto;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .footer-section:first-child {
    text-align: center;
    grid-column: 1 / -1;
  }

  .footer-products-empresa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
  }

  .footer-products-empresa .footer-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    column-gap: 1rem;
  }

  .footer-section:last-child {
    text-align: center;
    grid-column: 1 / -1;
  }

  .footer-section:last-child .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-widget {
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .widget-toggle {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .widget-menu {
    min-width: 220px;
    right: -10px;
    bottom: 65px;
    max-width: calc(100vw - 2rem);
  }

  .top-bar a {
    font-size: 0.7rem;
    gap: 0.2rem;
  }

  .top-bar-content {
    gap: 0.5rem;
  }
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.footer-section p {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--bg-white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #bbb;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  text-align: center;
  color: #bbb;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

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

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

.slide.active {
  opacity: 1;
}

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

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--bg-white);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.slide-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--bg-white);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--primary-color);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrows:hover {
  background: var(--bg-white);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 15px;
}

.next-arrow {
  right: 15px;
}

/* =================================
   PÁGINA PRODUCTOS - ESTILOS ESPECÍFICOS
   ================================= */

/* Products Section */
.products-section {
  background: var(--bg-white);
  padding: 4rem 0;
}

.products-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.products-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.products-intro p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.product-card.featured {
  border-color: var(--primary-color);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Product Image */
.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(74, 155, 155, 0.9), rgba(107, 182, 182, 0.8));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-actions {
  display: flex;
  gap: 1rem;
}

.product-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.product-btn.primary {
  background: var(--bg-white);
  color: var(--primary-color);
}

.product-btn.primary:hover {
  background: var(--bg-section);
  transform: translateY(-2px);
}

/* Product Info */
.product-info {
  padding: 2rem;
}

.product-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Product Features */
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--bg-section);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
}

/* Product CTA */
.product-cta {
  margin-top: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.cta-btn.whatsapp {
  background: var(--accent-color);
  color: var(--bg-white);
}

.cta-btn.whatsapp:hover {
  background: #128c7e;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Features Section */
.features-section {
  background: var(--bg-section);
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--bg-white);
  font-size: 1.8rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Product Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-medium);
  z-index: 1;
}

.modal-close:hover {
  color: var(--text-dark);
}

/* =================================
   PÁGINA NOSOTROS - ESTILOS ESPECÍFICOS
   ================================= */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* About Content */
.about-content {
  background: var(--bg-white);
  padding: 5rem 0;
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

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

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-text .highlight {
  color: var(--primary-color);
  position: relative;
}

.about-text .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
}

/* Company Stats */
.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-section);
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact CTA */
.contact-cta {
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(74, 155, 155, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(74, 155, 155, 0.4);
  color: var(--bg-white);
}

.cta-button i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-button span {
  font-size: 1.3rem;
  font-weight: 700;
}

/* MVV Section */
.mvv-section {
  background: var(--bg-section);
  padding: 5rem 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mvv-card {
  background: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--bg-white);
  font-size: 2rem;
}

.mvv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mvv-card p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0;
}

.mvv-card ul {
  list-style: none;
  text-align: left;
}

.mvv-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.mvv-card ul li:last-child {
  margin-bottom: 0;
}

.mvv-card ul li i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--bg-white);
  padding: 5rem 0;
}

/* =================================
   PÁGINA CERTIFICACIONES - ESTILOS ESPECÍFICOS
   ================================= */

/* Certifications Image Section */
.certifications-image-section {
  background: var(--bg-white);
  padding: 4rem 0;
}

.certifications-image-container {
  text-align: center;
  margin-bottom: 4rem;
}

.certifications-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

.certifications-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.certifications-description {
  max-width: 1000px;
  margin: 0 auto;
}

.certifications-description h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.certifications-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.cert-category {
  background: var(--bg-section);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.cert-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.cert-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cert-category h3 i {
  font-size: 1.1rem;
}

.cert-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-category ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(74, 155, 155, 0.1);
}

.cert-category ul li:last-child {
  border-bottom: none;
}

.cert-category ul li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Commitment Section */
.commitment-section {
  background: var(--bg-section);
  padding: 5rem 0;
}

.commitment-content {
  text-align: center;
  margin-bottom: 3rem;
}

.commitment-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.commitment-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.commitment-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.commitment-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--bg-white);
  font-size: 1.8rem;
}

.commitment-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.commitment-item p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =================================
   PÁGINA CONTACTO - ESTILOS ESPECÍFICOS
   ================================= */

/* Contact Main Section */
.contact-main-section {
  background: var(--bg-white);
  padding: 4rem 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.contact-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.contact-card.location-card:hover {
  border-color: #e74c3c;
}

.contact-card.location-card::before {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.contact-card.sales-card:hover {
  border-color: var(--primary-color);
}

.contact-card.retail-card:hover {
  border-color: #9b59b6;
}

.contact-card.retail-card::before {
  background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

/* Contact Icon */
.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--bg-white);
  font-size: 2rem;
}

.contact-icon.wholesale {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-icon.retail {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.location-card .contact-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Contact Card Content */
.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details strong {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.contact-details ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Contact Actions */
.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  min-width: 140px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn.phone-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
}

.contact-btn.phone-btn:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(74, 155, 155, 0.4);
}

.contact-btn.whatsapp-btn {
  background: linear-gradient(135deg, var(--accent-color), #128c7e);
  color: var(--bg-white);
}

.contact-btn.whatsapp-btn:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-btn.maps-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: var(--bg-white);
}

.contact-btn.maps-btn:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.contact-btn i {
  font-size: 1.1rem;
}

/* Contact Info Section */
.contact-info-section {
  background: var(--bg-section);
  padding: 4rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.info-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--bg-white);
  font-size: 1.8rem;
}

.info-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-item p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

.info-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
  .top-bar .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .top-bar-content {
    flex-direction: row;
    gap: 2rem;
  }

  .nav-menu {
    display: flex;
  }

  .nav-contact {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-slider {
    height: 500px;
  }

  .slide-content {
    padding: 3rem 2rem 2rem;
  }

  .slide-content h2 {
    font-size: 2.2rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .main-title {
    font-size: 2.8rem;
  }

  .elegant-buttons {
    flex-wrap: nowrap;
  }

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

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

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

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

  .footer-cta-buttons {
    flex-wrap: nowrap;
  }

  .widget-toggle {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  /* Products responsive */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  /* Certificaciones responsive */
  .certifications-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cert-category:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }

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

  /* Contact responsive */
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-card.location-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }

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

@media (min-width: 1024px) {
  .hero-slider {
    height: 600px;
  }

  .slide-content h2 {
    font-size: 2.8rem;
  }

  .slide-content p {
    font-size: 1.3rem;
  }

  .main-title {
    font-size: 3.2rem;
  }

  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-cta h2 {
    font-size: 3rem;
  }

  /* Products responsive */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Certificaciones responsive */
  .certifications-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .cert-category:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .commitment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Contact responsive */
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-card.location-card {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
  }

  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-intro h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .main-title {
    font-size: 3.5rem;
  }

  .footer-cta h2 {
    font-size: 3.2rem;
  }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  /* Header mobile improvements */
  .navbar {
    padding: 0.75rem 0;
  }

  .logo {
    height: 45px;
  }

  /* Hero slider mobile */
  .hero-slider {
    height: 350px;
    margin: 0 -1rem;
    border-radius: 0;
  }

  .slide-content {
    padding: 1.5rem 1rem 1rem;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

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

  .slider-arrows {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }

  /* Main content mobile */
  .main-content {
    padding: 3rem 0;
  }

  .main-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .main-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .elegant-cta {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .elegant-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 0.75rem;
    align-items: center;
    margin: 0 auto;
  }

  .elegant-btn {
    width: 100%;
    padding: 1rem;
    min-width: auto;
  }

  /* Categories mobile */
  .categories-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .categories-grid {
    gap: 1.5rem;
  }

  .category-card {
    padding: 1.25rem;
  }

  .category-card-image {
    height: 180px;
  }

  /* Benefits mobile */
  .benefits-section {
    padding: 3rem 0;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  /* Testimonials mobile */
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  /* Footer CTA mobile */
  .footer-cta {
    padding: 3rem 0;
  }

  .footer-cta h2 {
    font-size: 2rem;
  }

  .footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 1rem;
    align-items: center;
    margin: 0 auto;
  }

  .footer-cta-btn {
    width: 100%;
    padding: 1rem;
    justify-content: center;
  }

  /* WhatsApp widget mobile */
  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .widget-toggle {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .widget-menu {
    min-width: 220px;
    right: -10px;
    bottom: 70px;
  }

  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    text-align: center;
    gap: 1.5rem;
  }

  /* Products mobile */
  .products-section {
    padding: 3rem 0;
  }

  .products-intro {
    margin-bottom: 3rem;
  }

  .products-intro h2 {
    font-size: 1.8rem;
  }

  .products-grid {
    gap: 2rem;
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 1.5rem;
  }

  .features-section {
    padding: 3rem 0;
  }

  /* Nosotros mobile */
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .page-hero p {
    font-size: 1.1rem;
  }

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

  .about-image {
    order: -1;
  }

  .about-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .company-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .mvv-card {
    padding: 2rem 1.5rem;
  }

  .why-choose-section {
    padding: 3rem 0;
  }

  /* Certificaciones mobile */
  .certifications-image-section {
    padding: 3rem 0;
  }

  .certifications-image-container {
    margin-bottom: 3rem;
  }

  .certifications-description h2 {
    font-size: 1.8rem;
  }

  .cert-category {
    padding: 1.5rem;
  }

  .cert-category ul li {
    font-size: 0.9rem;
  }

  .commitment-section {
    padding: 3rem 0;
  }

  .commitment-content h2 {
    font-size: 1.8rem;
  }

  /* Contact mobile */
  .contact-main-section {
    padding: 3rem 0;
  }

  .contact-intro {
    margin-bottom: 3rem;
  }

  .contact-intro h2 {
    font-size: 1.8rem;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-card.location-card {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .contact-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-btn {
    flex: none;
    min-width: auto;
  }

  .contact-info-section {
    padding: 3rem 0;
  }

  .info-item {
    padding: 1.5rem;
  }

  .info-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-slider {
    height: 300px;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer-cta h2 {
    font-size: 1.8rem;
  }

  .widget-menu {
    min-width: 200px;
    right: -20px;
  }

  /* Products mobile small */
  .product-image {
    height: 180px;
  }

  .product-info {
    padding: 1.25rem;
  }

  .product-info h3 {
    font-size: 1.2rem;
  }

  /* Nosotros mobile small */
  .page-hero {
    padding: 3rem 0;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .about-content {
    padding: 3rem 0;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .mvv-section {
    padding: 3rem 0;
  }

  .why-choose-section {
    padding: 3rem 0;
  }

  /* Certificaciones mobile small */
  .certifications-description h2 {
    font-size: 1.6rem;
  }

  .cert-category {
    padding: 1.25rem;
  }

  .cert-category ul li {
    font-size: 0.9rem;
  }

  .commitment-content h2 {
    font-size: 1.6rem;
  }

  /* Contact mobile small */
  .contact-intro h2 {
    font-size: 1.6rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-card h3 {
    font-size: 1.3rem;
  }

  .info-item h4 {
    font-size: 1.1rem;
  }
}

/* =================================
   PÁGINA CONTACTO - ESTILOS SIMPLIFICADOS
   ================================= */

/* Contact Section */
.contact-section {
  background: var(--bg-white);
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info */
.contact-info {
  padding-right: 2rem;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item:last-of-type {
  margin-bottom: 3rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-item-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-item-content p:last-child {
  margin-bottom: 0;
}

.contact-item-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-item-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  justify-content: center;
}

.contact-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-button:hover::before {
  left: 100%;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-button.phone-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
}

.contact-button.phone-btn:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(74, 155, 155, 0.4);
}

.contact-button.whatsapp-btn {
  background: linear-gradient(135deg, var(--accent-color), #128c7e);
  color: var(--bg-white);
}

.contact-button.whatsapp-btn:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-button i {
  font-size: 1.1rem;
}

/* Contact Map */
.contact-map {
  position: relative;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

.map-container:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
  .contact-layout {
    gap: 3rem;
  }

  .contact-info {
    padding-right: 1rem;
  }
}

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    padding-right: 0;
  }

  .contact-info h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .contact-description {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .contact-item {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact-item-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .contact-buttons {
    justify-content: center;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-button {
    width: 100%;
    min-width: auto;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-item-icon {
    margin: 0 auto;
  }

  .contact-item-content h3 {
    font-size: 1.1rem;
  }

  .contact-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .map-container {
    height: 300px;
  }
}

/* =================================
   VISTA INDIVIDUAL DE PRODUCTO
   ================================= */

/* Product Page Layout */
.product-page {
  background: var(--bg-white);
  padding: 4rem 0;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* Product Image */
.product-image-container {
  position: relative;
}

.product-image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

.product-image-container img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

/* Product Info */
.product-info-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

/* Product Action Buttons */
.product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.product-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  justify-content: center;
}

.product-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.product-action-btn:hover::before {
  left: 100%;
}

.product-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-action-btn.phone {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
}

.product-action-btn.phone:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(74, 155, 155, 0.4);
}

.product-action-btn.whatsapp {
  background: linear-gradient(135deg, var(--accent-color), #128c7e);
  color: var(--bg-white);
}

.product-action-btn.whatsapp:hover {
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.product-action-btn i {
  font-size: 1.1rem;
}

/* Product Specifications */
.product-specifications {
  grid-column: 1 / -1;
  background: var(--bg-section);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  margin-top: 2rem;
}

.product-specifications h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 1px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.spec-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-section h3 i {
  font-size: 1.1rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-medium);
  line-height: 1.6;
  border-bottom: 1px solid rgba(74, 155, 155, 0.1);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list li i {
  color: var(--primary-color);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.spec-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Color Palette */
.color-palette {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74, 155, 155, 0.2);
}

.color-palette h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.color-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.color-option:hover {
  transform: scale(1.1);
  border-color: var(--primary-color);
}

.color-option.white {
  background: #ffffff;
  border-color: #ddd;
}

.color-option.blue {
  background: #2196f3;
}

.color-option.green {
  background: #4caf50;
}

.color-option.pink {
  background: #e91e63;
}

.color-option.gray {
  background: #757575;
}

.color-option.orange {
  background: #ff9800;
}

/* Specifications Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.specs-table th,
.specs-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.specs-table th {
  background: var(--primary-color);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.specs-table td {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.specs-table tr:hover {
  background: var(--bg-section);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

/* Responsive Design for Product Page */
@media (max-width: 1024px) {
  .product-container {
    gap: 3rem;
  }

  .product-info-container h1 {
    font-size: 2.2rem;
  }

  .specs-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 3rem 0;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .product-info-container h1 {
    font-size: 2rem;
    text-align: center;
  }

  .product-description {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .product-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .product-action-btn {
    width: 100%;
    min-width: auto;
  }

  .product-specifications {
    padding: 2rem 1.5rem;
    margin-top: 1rem;
  }

  .product-specifications h2 {
    font-size: 1.6rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .specs-table {
    font-size: 0.85rem;
  }

  .specs-table th,
  .specs-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .product-info-container h1 {
    font-size: 1.8rem;
  }

  .product-description {
    font-size: 1rem;
  }

  .product-action-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .product-specifications {
    padding: 1.5rem 1rem;
  }

  .product-specifications h2 {
    font-size: 1.4rem;
  }

  .spec-section h3 {
    font-size: 1.2rem;
  }

  .color-options {
    justify-content: center;
  }

  .specs-table {
    font-size: 0.8rem;
  }

  .specs-table th,
  .specs-table td {
    padding: 0.5rem 0.25rem;
  }
}
