/* Estilos Generales */
:root {
  --primary-color: #006a4e;
  --primary-dark: #004c38;
  --primary-light: #4c9d89;
  --secondary-color: #e74c3c;
  --secondary-dark: #c0392b;
  --secondary-light: #ec7063;
  --accent-color: #f39c12;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #eeeeee;
  --border-color: #dddddd;
  --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

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

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

ul {
  list-style: none;
}

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

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

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Botones */
.btn, 
.btn-secondary, 
.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

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

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

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

/* Botones de cookies */
.btn-cookie {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-cookie.accept {
  background-color: var(--primary-color);
  color: white;
}

.btn-cookie.accept:hover {
  background-color: var(--primary-dark);
}

.btn-cookie.configure {
  background-color: var(--bg-dark);
  color: var(--text-color);
}

.btn-cookie.configure:hover {
  background-color: var(--border-color);
}

.btn-cookie.reject {
  background-color: transparent;
  color: var(--text-color);
}

.btn-cookie.reject:hover {
  color: var(--primary-color);
}

/* Formularios */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
  min-width: 250px;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 106, 78, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  margin-bottom: 0;
}

/* Header y Navegación */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

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

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  padding: 8px 12px;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
}

nav ul li a:hover, 
nav ul li a.active {
  color: var(--primary-color);
}

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

nav ul li a:hover:after, 
nav ul li a.active:after {
  width: 100%;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
}

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

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.benefit-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 106, 78, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 50px;
  text-align: center;
}

.stat {
  padding: 20px;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.cta {
  text-align: center;
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.cta h3 {
  margin-bottom: 1.5rem;
}

/* About Products Section */
.about-products {
  padding: 80px 0;
  background-color: white;
}

.about-products h2 {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-products p {
  margin-bottom: 1.5rem;
}

.about-products h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.certifications {
  margin-top: 2rem;
  padding: 30px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
}

.certifications h3 {
  margin-top: 0;
}

.certifications ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

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

/* Products Section */
.products {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.products h2 {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  overflow: hidden;
  position: relative;
}

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

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

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-info h3 a {
  color: var(--text-color);
}

.product-info h3 a:hover {
  color: var(--primary-color);
}

.product-info .description {
  margin-bottom: 15px;
  color: var(--text-light);
}

.product-info .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions .btn,
.product-actions .btn-secondary {
  flex: 1;
  padding: 10px 15px;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card:before {
  content: """;
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 5rem;
  color: rgba(0, 106, 78, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.author {
  font-style: italic;
  margin-top: 15px;
  text-align: right;
}

.btn-review {
  display: block;
  margin: 0 auto;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-review:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-link {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: underline;
}

/* Product Detail Page */
.product-detail {
  padding: 60px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.product-detail .product-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.product-detail h1 {
  margin-bottom: 15px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.product-id {
  color: var(--text-light);
  font-size: 0.9rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-rating .count {
  color: var(--text-light);
  font-size: 0.9rem;
}

.product-detail .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-description {
  margin-bottom: 30px;
}

.product-benefits h3,
.product-ingredients h3,
.product-usage h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.product-benefits ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 30px;
}

.product-benefits ul li {
  margin-bottom: 5px;
}

.product-ingredients,
.product-usage {
  margin-bottom: 30px;
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:hover {
  background-color: var(--bg-dark);
}

.product-quantity input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.product-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.product-guarantee svg {
  color: var(--primary-color);
}

/* Product Tabs */
.product-tabs {
  margin-bottom: 60px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 30px;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

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

.specs-table th {
  width: 30%;
  background-color: var(--bg-light);
}

.reviews-summary {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}

.average-rating {
  text-align: center;
}

.big-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.total-reviews {
  color: var(--text-light);
}

.rating-bars {
  flex: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bar-container {
  flex: 1;
  height: 10px;
  background-color: var(--bg-dark);
  border-radius: 5px;
  overflow: hidden;
}

.bar {
  height: 100%;
  background-color: var(--accent-color);
}

.reviews-list {
  margin-bottom: 30px;
}

.review {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reviewer {
  font-weight: 600;
}

.date {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Related Products */
.related-products {
  margin-top: 50px;
}

.related-products h2 {
  margin-bottom: 30px;
  text-align: center;
}

/* Cart Page */
.cart-section {
  padding: 60px 0;
}

.cart-section h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.cart-container {
  margin-bottom: 50px;
}

.cart-empty-message {
  text-align: center;
  padding: 50px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.cart-empty-message svg {
  width: 64px;
  height: 64px;
  color: var(--text-light);
  margin: 0 auto 20px;
}

.cart-with-items {
  display: none;
}

.cart-headers {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-details {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.cart-item-quantity {
  display: flex;
  align-items: center;
}

.cart-item-remove {
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--secondary-color);
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}

.cart-coupon {
  display: flex;
  gap: 10px;
}

.cart-coupon input {
  width: 200px;
}

.cart-totals {
  width: 350px;
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cart-total-final {
  border-top: 1px solid var(--border-color);
  margin-top: 15px;
  padding-top: 15px;
  font-weight: 700;
  font-size: 1.2rem;
}

.cart-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cart-recommendations {
  margin-top: 80px;
}

.cart-recommendations h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Checkout Page */
.checkout-section {
  padding: 60px 0;
}

.checkout-section h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.form-section {
  margin-bottom: 40px;
}

.form-section h2 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.checkout-summary {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
  position: sticky;
  top: 90px;
}

.checkout-summary h2 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.order-items {
  margin-bottom: 30px;
}

.order-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.order-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.order-item-details {
  flex: 1;
}

.order-item-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.order-item-price {
  color: var(--primary-color);
}

.order-item-quantity {
  font-size: 0.9rem;
  color: var(--text-light);
}

.order-totals {
  margin-bottom: 30px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-total-final {
  border-top: 1px solid var(--border-color);
  margin-top: 15px;
  padding-top: 15px;
  font-weight: 700;
  font-size: 1.2rem;
}

.order-security {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.security-badge svg {
  color: var(--primary-color);
}

/* Success Page */
.success-section {
  padding: 80px 0;
}

.success-container {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
  background-color: white;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background-color: rgba(0, 106, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.success-info {
  color: var(--text-light);
  margin-bottom: 30px;
}

.success-actions {
  margin-top: 30px;
}

.success-recommendations h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Contact Page */
.contact-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-hero h1 {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-hero .subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}

.contact-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background-color: rgba(0, 106, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-form-container {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-container h2 {
  margin-bottom: 30px;
}

.faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  background-color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

/* About Page */
.about-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.about-hero h1 {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.about-hero .subtitle {
  font-size: 1.2rem;
}

.about-story {
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.values-list {
  margin-top: 30px;
}

.values-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.value-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(0, 106, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.value-content h3 {
  margin-bottom: 5px;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.stat-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

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

.about-process {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.about-process h2 {
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  width: 220px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.process-step h3 {
  margin: 15px 0;
}

.about-team {
  padding: 80px 0;
}

.about-team h2 {
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.team-member h3 {
  margin-bottom: 5px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member .social-links {
  justify-content: center;
  margin-top: 15px;
}

.about-certifications {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.about-certifications h2 {
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.certification-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.certification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(0, 106, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.certification-card h3 {
  margin-bottom: 15px;
}

.about-cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.about-cta h2 {
  color: white;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-footer {
    flex-direction: column;
    gap: 30px;
  }
  
  .cart-totals {
    width: 100%;
  }
  
  .cart-headers {
    display: none;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "details"
      "price"
      "quantity"
      "subtotal"
      "remove";
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
  }
  
  .cart-item-details {
    grid-area: details;
    margin-bottom: 15px;
  }
  
  .cart-item-price {
    grid-area: price;
    margin-bottom: 10px;
  }
  
  .cart-item-price::before {
    content: 'Precio: ';
    font-weight: 600;
  }
  
  .cart-item-quantity {
    grid-area: quantity;
    margin-bottom: 10px;
  }
  
  .cart-item-subtotal {
    grid-area: subtotal;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .cart-item-subtotal::before {
    content: 'Subtotal: ';
  }
  
  .cart-item-remove {
    grid-area: remove;
    text-align: right;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .benefits-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .tabs {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
  }
  
  .reviews-summary {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .cart-coupon {
    flex-direction: column;
    width: 100%;
  }
  
  .cart-coupon input {
    width: 100%;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
