:root {
  --primary-color: #0f6bae;
  --primary-dark: #084e83;
  --primary-light: #2b89d1;
  --secondary-color: #ffa726;
  --secondary-dark: #e0912e;
  --secondary-light: #ffbe54;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #e9ecef;
  --border-color: #dddddd;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  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;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

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

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

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

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

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

.btn-danger:hover {
  background-color: #d32f2f;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Header */
header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

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

nav ul {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--text-color);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

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

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.cart-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#cart-count {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature h3 {
  margin-bottom: 1rem;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
  padding: 1rem;
}

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

.label {
  font-size: 1.125rem;
  color: var(--text-light);
}

.cta {
  text-align: center;
}

/* About Products Section */
.about-products {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

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

.about-products p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.quality-assurance, .company-story {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.quality-assurance h3, .company-story h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.quality-assurance ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.quality-assurance li {
  margin-bottom: 0.5rem;
}

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

.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

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

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

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

.product-image {
  height: 200px;
  overflow: hidden;
}

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

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

.product h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}

.product .price {
  padding: 0 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.125rem;
}

.product .description {
  padding: 0.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.9375rem;
  height: 80px;
  overflow: hidden;
}

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

.product-actions .btn {
  flex: 1;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 350px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.1;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.client h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.client p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.review-cta {
  text-align: center;
}

/* Footer */
footer {
  background-color: #263238;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.9375rem;
  opacity: 0.8;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
}

.footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(38, 50, 56, 0.95);
  color: white;
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1 1 300px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-more {
  margin-left: 1rem;
  color: white;
  text-decoration: underline;
  opacity: 0.8;
}

.cookie-more:hover {
  opacity: 1;
  color: white;
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  transform: translateX(150%);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

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

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

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(15, 107, 174, 0.25);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

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

small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-lighter);
  font-size: 0.875rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

/* Review Form */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating input {
  display: none;
}

.rating label {
  cursor: pointer;
  width: 2rem;
  font-size: 2rem;
  color: var(--text-lighter);
  transition: var(--transition);
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
  color: var(--secondary-color);
}

/* Product Detail Page */
.breadcrumb {
  background-color: var(--bg-light);
  padding: 1rem 0;
}

.breadcrumb ul {
  display: flex;
  gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-lighter);
}

.breadcrumb li:last-child {
  color: var(--text-light);
}

.product-detail {
  padding: 3rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
}

.product-detail .product-image {
  height: auto;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.product-detail .product-image img {
  width: 100%;
  display: block;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: var(--secondary-color);
}

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

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

.product-price {
  margin-bottom: 1.5rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 1rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-lighter);
}

.discount {
  background-color: var(--success-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-description {
  margin-bottom: 2rem;
}

.product-description ul {
  padding-left: 1.5rem;
  list-style-type: disc;
  margin-top: 1rem;
}

.product-description li {
  margin-bottom: 0.5rem;
}

.quantity {
  margin-bottom: 1.5rem;
}

.quantity label {
  margin-bottom: 0.5rem;
  display: block;
}

.quantity-control {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
}

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

.minus {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.plus {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quantity input {
  width: 50px;
  height: 36px;
  text-align: center;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.buttons .btn {
  flex: 1;
}

.product-additional {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.delivery, .guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.product-details-tabs {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

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

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

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}

.tab-content {
  display: none;
}

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

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

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.requirements-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.requirements-column h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.requirements-column ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.requirements-column li {
  margin-bottom: 0.5rem;
}

.permissions h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.permissions ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex: 1;
}

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

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.rating-bars {
  flex: 1;
  min-width: 250px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

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

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

.percentage {
  width: 40px;
  text-align: right;
  color: var(--text-light);
  font-size: 0.875rem;
}

.reviews-list {
  margin-bottom: 2rem;
}

.review {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.review:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-author h4 {
  margin-bottom: 0.25rem;
}

.review-date {
  color: var(--text-lighter);
  font-size: 0.875rem;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn:hover, .pagination-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination-dots {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-products {
  padding: 3rem 0;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.products-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-light);
}

.products-slider .product {
  min-width: 280px;
  max-width: 300px;
}

/* About Page */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0;
  text-align: center;
  background-image: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.about-story {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.about-values {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.about-values h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.value-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.team-section {
  padding: 5rem 0;
}

.team-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.team-member {
  text-align: center;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  margin: 1.5rem 0 0.25rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
}

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

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.stats-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.stats-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--text-light);
}

.partners-section {
  padding: 5rem 0;
}

.partners-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.partners-section > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.partner-logo {
  text-align: center;
}

.partner-logo svg {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.partner-logo span {
  display: block;
  font-weight: 600;
}

/* Contact Page */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-text h3 {
  margin-bottom: 0.5rem;
}

.contact-text p {
  margin-bottom: 0.25rem;
}

.contact-text a {
  color: var(--text-color);
  transition: var(--transition);
}

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

.social-contact {
  margin-top: 3rem;
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.form-intro {
  margin-bottom: 2rem;
}

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

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--bg-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.125rem;
  flex: 1;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 1.5rem;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

/* Cart Page */
.cart-section {
  padding: 5rem 0;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
}

.cart-empty svg {
  color: var(--text-lighter);
  margin-bottom: 1.5rem;
}

.cart-empty h2 {
  margin-bottom: 1rem;
}

.cart-empty p {
  max-width: 400px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.cart-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.cart-items-container h2, .cart-summary h2 {
  margin-bottom: 2rem;
}

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

.cart-items {
  margin-bottom: 2rem;
}

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

.item-info {
  display: flex;
  gap: 1rem;
}

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

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

.item-details h3 {
  margin-bottom: 0.25rem;
}

.item-price, .item-total {
  font-weight: 600;
}

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

.item-quantity input {
  width: 50px;
  text-align: center;
}

.remove-item {
  color: var(--danger-color);
  cursor: pointer;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.cart-summary {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.summary-item.total {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.summary-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 1.5rem 0;
}

.secure-checkout {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
  color: var(--text-light);
  font-size: 0.875rem;
}

.payment-methods h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
}

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 40px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.recommended-products {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

/* Checkout Page */
.checkout-progress {
  padding: 2rem 0;
  background-color: var(--bg-light);
}

.progress-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.progress-steps li {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--bg-color);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  font-weight: 600;
}

.active .step-number {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.completed .step-number {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: white;
}

.step-text {
  color: var(--text-light);
  font-size: 0.875rem;
}

.active .step-text {
  color: var(--primary-color);
  font-weight: 600;
}

.completed .step-text {
  color: var(--success-color);
}

.checkout-section {
  padding: 3rem 0 5rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.checkout-form-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.checkout-items {
  margin-bottom: 2rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.item-name {
  font-weight: 600;
}

.item-quantity {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: normal;
  margin-left: 0.5rem;
}

.support-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.support-info h3 {
  margin-bottom: 1rem;
}

.support-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Success Page */
.success-section {
  padding: 5rem 0;
}

.success-content {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 2rem;
}

.success-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.success-details {
  margin-bottom: 1.5rem;
}

.success-notice {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.success-info {
  text-align: left;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.success-info h2 {
  margin-bottom: 1.5rem;
}

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

.step {
  display: flex;
  gap: 1rem;
}

.step-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.step-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.step-text p {
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

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

.recommendations h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
  .cart-content, .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-summary, .checkout-summary {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .cart-headers {
    display: none;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  
  .item-info {
    grid-column: 1 / -1;
  }
  
  .item-price, .item-quantity, .item-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .item-price::before {
    content: 'Precio:';
    font-weight: normal;
  }
  
  .item-quantity::before {
    content: 'Cantidad:';
    font-weight: normal;
  }
  
  .item-total::before {
    content: 'Total:';
    font-weight: normal;
  }
  
  .remove-item {
    text-align: right;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 1rem 20px;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .feature, .value-item, .team-member {
    padding: 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .product-meta, .buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .product-rating, .product-id {
    width: 100%;
  }
  
  .reviews-header {
    flex-direction: column;
    align-items: center;
  }
  
  .cart-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cart-actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .stats, .testimonials-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .stat, .testimonial {
    width: 100%;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
