/* Global Variables */
:root {
  --primary-color: #0d6b4b;
  --primary-dark: #084f37;
  --primary-light: #13967a;
  --secondary-color: #f39c12;
  --secondary-dark: #e67e22;
  --accent-color: #6c5ce7;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --background-color: #ffffff;
  --background-alt: #f7f9fc;
  --background-dark: #eef2f7;
  --border-color: #e1e5e9;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --warning-color: #f1c40f;
  --info-color: #3498db;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --border-radius: 6px;
  --border-radius-large: 12px;
  --container-width: 1200px;
  --header-height: 80px;
  --footer-background: #1a2c38;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.full-width {
  width: 100% !important;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Buttons */
.btn-primary, 
.btn-secondary, 
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary: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-text {
  background: transparent;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
}

.btn-text:hover {
  background-color: rgba(13, 107, 75, 0.1);
  color: var(--primary-dark);
}

.btn-cookie-accept {
  background-color: var(--success-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background-color: #219a52;
}

.btn-cookie-customize, 
.btn-cookie-decline {
  background-color: transparent;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid white;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-customize:hover, 
.btn-cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

.logo-container {
  display: flex;
  align-items: center;
}

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

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

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

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

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

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

.icon-cart {
  margin-right: 0.3rem;
}

#cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

.mobile-menu-btn span {
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  margin: 2px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(13, 107, 75, 0.95) 0%, rgba(19, 150, 122, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Story Section */
.story-section {
  background-color: var(--background-alt);
  padding: 4rem 0;
}

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

.story-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

/* Poll Section */
.poll-section {
  padding: 4rem 0;
  background-color: var(--background-color);
}

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

.poll-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.poll-question {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.poll-option {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  background-color: white;
  transition: var(--transition);
}

.poll-option:hover {
  background-color: #f0f4f9;
}

.poll-option input[type="radio"] {
  margin-right: 1rem;
}

.poll-option label {
  flex-grow: 1;
  cursor: pointer;
}

#poll-form button {
  display: block;
  margin: 2rem auto 0;
}

.poll-results {
  text-align: center;
  padding: 2rem 0;
}

.poll-results h3 {
  color: var(--success-color);
  margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
  background-color: var(--background-alt);
  padding: 5rem 0;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.benefit-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(13, 107, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}

.benefit-card h3 {
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.stat {
  text-align: center;
}

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

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

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

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

.about-products h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.about-products-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

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

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

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

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

.product-image {
  height: 240px;
  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: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.product-actions a, 
.product-actions button {
  flex: 1;
}

/* Mini Product Card for Recommendations */
.product-card.mini {
  display: flex;
  flex-direction: column;
}

.product-card.mini .product-image {
  height: 180px;
}

.product-card.mini .product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-card.mini .product-price {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.product-card.mini .product-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.product-card.mini .btn-secondary {
  display: block;
  width: 100%;
}

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  padding: 0 1rem;
}

.testimonial-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: var(--footer-background);
  color: white;
  padding: 5rem 0 2rem;
}

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

.footer-logo {
  margin-bottom: 1rem;
}

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

.footer-links h3, 
.footer-contact h3, 
.footer-social h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

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

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

.footer-contact p {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  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);
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 44, 56, 0.95);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 280px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-policy-link {
  color: var(--secondary-color);
  text-decoration: underline;
  margin-top: 0.5rem;
  display: block;
}

.cookie-policy-link:hover {
  color: white;
}

/* Product Detail Page */
.product-detail {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.breadcrumb {
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

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

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.product-detail-image img {
  width: 100%;
  height: auto;
}

.product-detail-info h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.stars {
  color: #f1c40f;
  margin-right: 0.5rem;
}

.rating-count {
  color: var(--text-light);
}

.product-short-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.product-features h3 {
  margin-bottom: 1rem;
}

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

.product-features ul li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

.quantity {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.quantity label {
  margin-right: 0.5rem;
}

.quantity select {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  min-width: 70px;
}

/* Product Tabs */
.product-tabs {
  margin-bottom: 4rem;
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.tab-button {
  padding: 1rem 2rem;
  border-bottom: 3px solid transparent;
  margin-right: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.tab-content {
  display: none;
}

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

.tab-content h2 {
  margin-bottom: 2rem;
}

.curriculum-list {
  margin-top: 2rem;
}

.curriculum-item {
  margin-bottom: 2.5rem;
}

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

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

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

/* Reviews Section */
.reviews-summary {
  display: flex;
  margin-bottom: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.overall-rating {
  flex: 0 0 30%;
  text-align: center;
  padding-right: 2rem;
  border-right: 1px solid var(--border-color);
}

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

.review-count {
  color: var(--text-light);
  margin-top: 0.5rem;
}

.rating-breakdown {
  flex: 0 0 70%;
  padding-left: 2rem;
}

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

.rating-level {
  flex: 0 0 80px;
}

.progress-bar {
  flex-grow: 1;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  margin: 0 1rem;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
}

.rating-percent {
  flex: 0 0 40px;
  text-align: right;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

.review-date {
  color: var(--text-light);
}

.review-content p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* Related Products */
.related-products {
  margin-top: 4rem;
}

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

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

.cart-section h1 {
  text-align: center;
  margin-bottom: 3rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cart-empty svg {
  color: var(--text-lighter);
  margin: 0 auto 2rem;
}

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

.cart-empty p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

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

.cart-header {
  padding: 0 0.5rem;
}

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

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

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

.cart-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0.5rem;
}

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

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

.cart-product-details {
  flex-grow: 1;
}

.cart-product-name {
  margin-bottom: 0.5rem;
}

.cart-price, .cart-subtotal {
  padding: 0 0.5rem;
  font-weight: 600;
}

.cart-quantity {
  padding: 0 0.5rem;
}

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

.quantity-btn {
  background-color: var(--background-dark);
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

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

.quantity-input {
  width: 40px;
  text-align: center;
  border: none;
  padding: 0.5rem 0;
}

.cart-actions {
  padding: 0 0.5rem;
}

.remove-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--error-color);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.remove-item:hover {
  text-decoration: underline;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: var(--background-alt);
  flex-wrap: wrap;
  gap: 2rem;
}

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

.cart-summary {
  min-width: 300px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border-color);
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  border-top: 2px solid var(--border-color);
  border-bottom: none;
  padding-top: 1rem;
}

.checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.cart-recommendations {
  margin-top: 4rem;
}

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

/* Checkout Page */
.checkout-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.checkout-breadcrumb {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.breadcrumb-line {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.breadcrumb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  color: var(--text-lighter);
  font-weight: 500;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--border-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

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

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

.checkout-main,
.checkout-sidebar {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
}

.checkout-form-container h2,
.order-summary h2 {
  margin-bottom: 2rem;
}

.checkout-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-group {
  flex: 0 0 calc(50% - 0.75rem);
}

.form-group.full-width {
  flex: 0 0 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(13, 107, 75, 0.1);
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}

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

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

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

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

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

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

.checkout-item-name {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

.checkout-item-price {
  font-weight: 600;
}

.checkout-totals {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.grand-total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
  margin-top: 1rem;
}

.order-security {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

.security-icon {
  color: var(--success-color);
}

.order-security p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Success Page */
.success-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.success-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem 2rem;
  text-align: center;
}

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

.success-container h1 {
  margin-bottom: 1rem;
}

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

.success-details {
  text-align: left;
  margin: 3rem 0;
  padding: 0 1rem;
}

.next-steps {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}

.next-steps li {
  margin-bottom: 0.8rem;
}

.support-info {
  background-color: var(--background-alt);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

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

.support-info p {
  margin-bottom: 0.5rem;
}

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

.recommendations {
  padding: 5rem 0;
}

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

.recommendations p {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

/* About Page */
.about-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(13, 107, 75, 0.95) 0%, rgba(19, 150, 122, 0.8) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

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

.about-mission-content {
  margin-bottom: 4rem;
}

.about-mission h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-mission p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

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

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

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(13, 107, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

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

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

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

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

.team-member img {
  width: 100%;
  height: auto;
}

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

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

.team-member .social-icons {
  padding: 0 1.5rem 1.5rem;
}

.achievements {
  padding: 5rem 0;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.achievement-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

.partners {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.partners h2 {
  text-align: center;
  margin-bottom: 1rem;
}

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

.partner {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-light);
}

.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

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

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

/* Contact Page */
.contact-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(13, 107, 75, 0.95) 0%, rgba(19, 150, 122, 0.8) 100%);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-info {
  padding: 5rem 0;
}

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

.contact-details h2, 
.contact-form-container h2 {
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(13, 107, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

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

.contact-info-text p {
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.social-connect h3 {
  margin-bottom: 1rem;
}

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

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-form .form-group {
  flex: 0 0 calc(50% - 0.75rem);
}

.contact-form .form-group.full-width {
  flex: 0 0 100%;
}

.form-response {
  text-align: center;
  padding: 3rem 2rem;
}

.form-response svg {
  color: var(--success-color);
  margin-bottom: 2rem;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-content {
  text-align: center;
}

.map-placeholder-content svg {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

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

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
}

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

.faq-item.active .faq-answer {
  display: block;
}

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

/* Responsive Styles */
@media (max-width: 1100px) {
  html {
    font-size: 15px;
  }
  
  .product-detail-content {
    grid-template-columns: 1fr;
  }
  
  .product-detail-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .checkout-sidebar {
    order: -1;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 14px;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: white;
    overflow: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  
  nav.active {
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cart-headers, 
  .cart-item {
    grid-template-columns: 3fr 1fr 1.5fr 1.5fr;
  }
  
  .cart-header.actions, 
  .cart-item .cart-actions {
    display: none;
  }
  
  .reviews-summary {
    flex-direction: column;
  }
  
  .overall-rating {
    padding-right: 0;
    padding-bottom: 2rem;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
  }
  
  .rating-breakdown {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cart-headers, 
  .cart-item {
    grid-template-columns: 3fr 1fr 2fr;
  }
  
  .cart-header.quantity, 
  .cart-item .cart-quantity {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .cart-headers, 
  .cart-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cart-header.price, 
  .cart-header.subtotal, 
  .cart-item .cart-price {
    display: none;
  }
  
  .cart-product {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cart-footer {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .form-group {
    flex: 0 0 100%;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-actions a, 
  .form-actions button {
    width: 100%;
    text-align: center;
  }
  
  .success-actions {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Filled and Half-Filled Stars */
.filled {
  color: #f1c40f;
}

.half-filled {
  position: relative;
  display: inline-block;
  color: #e1e5e9;
}

.half-filled::after {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #f1c40f;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation: fadeIn 0.5s ease forwards;
}
