/* Base Styles */
:root {
  --primary-color: #40b777;
  --primary-dark: #349e65;
  --primary-light: #79d2a1;
  --secondary-color: #5e5eff;
  --secondary-dark: #4949cc;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f9f9f9;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

* {
  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(--background-color);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

ul {
  list-style: none;
}

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

button, .btn-primary, .btn-secondary {
  cursor: pointer;
  font-family: inherit;
  border: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  display: inline-block;
  text-align: center;
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 24px;
  border-radius: var(--border-radius);
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: rgba(64, 183, 119, 0.1);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.nav-links {
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

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

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

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

.cart-icon {
  position: relative;
}

.cart-icon svg {
  color: var(--text-color);
  transition: var(--transition);
}

.cart-icon:hover svg {
  color: var(--primary-color);
}

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

/* Hero Section */
.hero {
  background-color: #f0f9ff;
  background-image: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.benefits h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

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

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

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

.benefit-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}

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

.benefits .btn-secondary {
  display: block;
  max-width: 250px;
  margin: 0 auto;
}

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

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

.about-products p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.comparison-table {
  margin: 40px 0;
}

.comparison-table h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(64, 183, 119, 0.05);
}

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

.value-chart {
  margin: 40px 0;
}

.value-chart h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.chart-container {
  height: 400px;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Products Section */
.products {
  padding: 80px 0;
}

.products h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

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

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

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

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

.product-image img {
  width: 100%;
  height: 100%;
  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 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

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

.product-description {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

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

.btn-add-to-cart {
  flex: 1;
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.btn-add-to-cart:hover {
  background-color: var(--primary-dark);
}

.btn-view-details {
  flex: 1;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.btn-view-details:hover {
  background-color: rgba(64, 183, 119, 0.1);
}

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

.breadcrumb {
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

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

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

.product-main-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.product-info-container h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  margin-right: 10px;
}

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

.product-info-container .product-price {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.product-availability {
  color: var(--success-color);
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

.product-features h3 {
  margin-bottom: 15px;
}

.product-features ul {
  padding-left: 20px;
}

.product-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
}

.product-features li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

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

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

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

.quantity-btn:hover {
  background-color: #e0e0e0;
}

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

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

.quantity-selector input {
  width: 70px;
  height: 40px;
  border: 1px solid var(--border-color);
  text-align: center;
  font-size: 1rem;
  border-left: none;
  border-right: none;
  -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-info-container .product-actions {
  display: flex;
  gap: 15px;
}

.product-info-container .btn-add-to-cart,
.btn-buy-now {
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-buy-now {
  background-color: var(--secondary-color);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

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

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

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

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

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

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

.tab-content {
  display: none;
}

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

.tab-content h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.tab-content p, .tab-content li {
  margin-bottom: 15px;
}

.tab-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

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

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

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

.specs-table td:first-child {
  font-weight: 600;
  width: 30%;
}

/* Reviews */
.review-summary {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

.overall-rating {
  flex: 1;
  text-align: center;
}

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

.rating-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin: 10px 0;
}

.rating-breakdown {
  flex: 2;
}

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

.rating-row > span:first-child {
  width: 80px;
}

.rating-row > span:last-child {
  width: 60px;
  text-align: right;
}

.progress-bar {
  flex: 1;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 15px;
}

.progress {
  height: 100%;
  background-color: #ffc107;
}

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

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

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

.reviewer-name {
  font-weight: 600;
  margin-right: 15px;
}

.review-rating {
  color: #ffc107;
  margin-right: 15px;
}

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

/* Related Products */
.related-products h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

/* About Page */
.about-hero {
  background-color: #f0f9ff;
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.about-content h2, .about-values h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.value-item {
  background-color: var(--background-alt);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-item h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.team-section {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.team-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-light);
}

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

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.team-member h3 {
  margin: 20px 0 5px;
  font-size: 1.3rem;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 15px;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 20px;
}

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

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

.milestones {
  padding: 80px 0;
}

.milestones h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

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

.timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  z-index: 1;
}

.timeline-content {
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.timeline-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.cta-section {
  padding: 80px 0;
  background-color: var(--background-alt);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-right: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary-color);
}

.newsletter-form .btn-primary {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Contact Page */
.contact-hero {
  background-color: #f0f9ff;
  padding: 80px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

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

.contact-info h2, .contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-icon {
  color: var(--primary-color);
  margin-right: 20px;
  margin-top: 5px;
}

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

.info-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 5px;
}

.social-section {
  margin-top: 40px;
}

.social-section h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.social-icon {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-color);
}

.social-icon svg {
  margin-right: 15px;
}

.social-icon:hover {
  color: var(--primary-color);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

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

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 3px;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  color: var(--success-color);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

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

.faq-item {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

.cart-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.cart-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.cart-empty {
  padding: 60px 20px;
  text-align: center;
}

.cart-empty svg {
  color: var(--text-light);
  margin-bottom: 20px;
}

.cart-empty h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cart-empty p {
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cart-items {
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
  border-bottom: none;
}

.item-image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.item-details {
  flex: 1;
}

.item-details h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.item-details h3 a {
  color: var(--text-color);
}

.item-details h3 a:hover {
  color: var(--primary-color);
}

.item-price {
  color: var(--text-light);
  margin-bottom: 10px;
}

.item-quantity {
  display: flex;
  align-items: center;
  max-width: 120px;
}

.item-subtotal {
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 30px;
  min-width: 80px;
  text-align: right;
}

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

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

.cart-summary {
  padding: 30px;
  background-color: var(--background-alt);
}

.cart-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

.summary-row.total {
  font-size: 1.3rem;
  font-weight: bold;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-top: 15px;
}

.btn-checkout {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;
}

.recently-viewed {
  padding: 60px 0;
}

.recently-viewed h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

.checkout-header {
  margin-bottom: 40px;
}

.checkout-header h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step {
  display: flex;
  align-items: center;
  color: var(--text-light);
}

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

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

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

.step-connector {
  flex: 1;
  height: 2px;
  background-color: var(--border-color);
  margin: 0 15px;
  max-width: 100px;
}

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

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

.checkout-form h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 30px;
}

.checkout-form h2:first-child {
  margin-top: 0;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.checkout-summary {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  position: sticky;
  top: 100px;
}

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

.checkout-items {
  margin-bottom: 20px;
}

.checkout-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkout-item .item-image {
  position: relative;
  width: 70px;
  height: 70px;
  margin-right: 15px;
}

.item-quantity {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.checkout-item .item-info {
  flex: 1;
}

.checkout-item .item-name {
  font-size: 1rem;
  margin-bottom: 5px;
}

.checkout-item .item-price {
  margin-left: 10px;
  font-weight: bold;
}

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

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-top: 20px;
  font-size: 0.9rem;
}

.secure-checkout svg {
  margin-right: 8px;
}

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

.success-content {
  text-align: center;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 60px 30px;
  margin-bottom: 50px;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 30px;
}

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

.success-message {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 15px;
}

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

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

.what-next {
  margin-bottom: 60px;
}

.what-next h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.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: bold;
  margin: 0 auto 20px;
}

.step-item h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

/* Cookies Notice */
.cookies-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  z-index: 9999;
  padding: 20px 30px;
  display: none;
}

.cookies-notice.show {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.cookies-content {
  text-align: center;
}

.cookies-content p {
  margin-bottom: 20px;
}

.cookies-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.btn-accept {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-customize {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-customize:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.btn-reject {
  background-color: transparent;
  color: var(--text-light);
  border: none;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
}

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

.footer-col p {
  margin-bottom: 15px;
  color: #b8c2cc;
}

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

.footer-col ul li a {
  color: #b8c2cc;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-col .social-links {
  margin-top: 20px;
}

.footer-col .social-links a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #b8c2cc;
  margin: 0 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom p {
  color: #b8c2cc;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary {
    position: static;
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  .nav-links {
    margin-bottom: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .benefits-grid, .values-grid, .stats-container {
    grid-template-columns: 1fr;
  }
  
  .team-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .cart-item {
    flex-wrap: wrap;
  }
  
  .item-subtotal {
    margin-top: 15px;
    width: 100%;
    text-align: left;
  }
  
  .remove-item {
    position: absolute;
    top: 20px;
    right: 0;
  }
}

@media (max-width: 576px) {
  .nav-links li {
    margin: 0 10px;
  }
  
  .product-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-add-to-cart, .btn-view-details {
    width: 100%;
  }
  
  .product-info-container .product-actions {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    border-right: 2px solid var(--border-color);
    margin-bottom: 10px;
  }
  
  .newsletter-form .btn-primary {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .checkout-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .checkout-actions .btn-secondary {
    order: 2;
  }
  
  .cookies-buttons {
    flex-direction: column;
  }
}
