/* Global Styles */
:root {
  --primary-color: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #4caf50;
  --secondary-color: #ffc107;
  --secondary-dark: #ffa000;
  --text-color: #212121;
  --text-light: #757575;
  --background-color: #ffffff;
  --background-alt: #f5f5f5;
  --border-color: #e0e0e0;
  --error-color: #d32f2f;
  --success-color: #388e3c;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

ul {
  list-style: none;
}

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

section {
  padding: 60px 0;
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-view,
.btn-add-cart,
.btn-buy-now,
.btn-submit {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.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: var(--text-color);
}

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

.btn-view {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
}

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

.btn-add-cart {
  background-color: var(--primary-color);
  color: white;
  width: 100%;
  margin-bottom: 10px;
}

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

.btn-buy-now {
  background-color: var(--secondary-color);
  color: var(--text-color);
  width: 100%;
}

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

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  width: 100%;
}

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

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

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

.logo img {
  height: 50px;
  object-fit: cover;
}

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

nav a {
  padding: 8px 12px;
  font-weight: 500;
  color: var(--text-color);
}

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

.cart-icon {
  position: relative;
}

.cart-icon i {
  font-size: 1.2rem;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Daily Inspiration Section */
.daily-inspiration {
  background-color: var(--background-alt);
  text-align: center;
  padding: 40px 0;
}

.inspiration-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  border-left: 5px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.inspiration-content blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 15px;
}

.inspiration-author {
  font-weight: 600;
  color: var(--text-light);
}

/* Benefits Section */
.benefits {
  text-align: center;
  padding: 80px 0;
}

.benefits h2 {
  margin-bottom: 2rem;
}

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

.benefit-item {
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.icon {
  margin-bottom: 15px;
}

.icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.statistics {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.cta {
  margin-top: 30px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Product Info Section */
.product-info {
  background-color: var(--background-alt);
  padding: 60px 0;
}

.product-info .container {
  max-width: 900px;
}

.product-info h2 {
  margin-bottom: 30px;
  text-align: center;
}

.product-info h3 {
  margin: 25px 0 15px;
  color: var(--primary-dark);
}

.product-info p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

.product-details {
  padding: 20px;
}

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

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

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

/* Footer Styles */
footer {
  background-color: #1c1c1c;
  color: #e0e0e0;
  padding: 60px 0 30px;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-column p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

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

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

.footer-column ul li a:hover {
  color: var(--primary-light);
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f8f8f8;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 1001;
  display: none; /* Initially hidden, will be shown by JavaScript */
}

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

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

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

.btn-cookie {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

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

.btn-cookie.customize {
  background-color: #e0e0e0;
  color: var(--text-color);
}

.btn-cookie.customize:hover {
  background-color: #d0d0d0;
}

.btn-cookie.decline {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid #e0e0e0;
}

.btn-cookie.decline:hover {
  background-color: #f0f0f0;
}

.cookie-more {
  width: 100%;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

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

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

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

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

.product-rating i {
  color: #ffc107;
  margin-right: 3px;
}

.product-rating span {
  margin-left: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

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

.product-features ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

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

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

.quantity {
  margin-bottom: 15px;
}

.quantity label {
  display: block;
  margin-bottom: 5px;
}

.quantity select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

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

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

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

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

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

.tab-pane {
  display: none;
}

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

.tab-pane h2 {
  margin-bottom: 20px;
}

.module, .feature-section, .strategy-section, .phase-section {
  margin-bottom: 30px;
}

.module h3, .feature-section h3, .strategy-section h3, .phase-section h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.module ul, .feature-section ul, .strategy-section ul, .phase-section ul {
  list-style: disc;
  margin-left: 20px;
}

.module li, .feature-section li, .strategy-section li, .phase-section li {
  margin-bottom: 5px;
}

.bonus-content {
  padding: 15px;
  background-color: #f8f8f8;
  border-left: 3px solid var(--primary-color);
  margin-top: 20px;
}

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

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

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

.review-author {
  font-weight: 600;
}

.review-content p {
  font-style: italic;
  color: var(--text-color);
}

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

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

/* About Page Styles */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.about-mission {
  padding: 60px 0;
}

.mission-content {
  margin-bottom: 40px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box {
  padding: 25px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.stat-box .stat-label {
  font-weight: 500;
}

.our-approach {
  background-color: var(--background-alt);
  padding: 60px 0;
  text-align: center;
}

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

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

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

.approach-icon {
  margin-bottom: 20px;
}

.approach-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

/* Team Section */
.team {
  padding: 80px 0;
  text-align: center;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  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;
  object-fit: cover;
}

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

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

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

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

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

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

/* Values Section */
.values {
  background-color: var(--background-alt);
  padding: 60px 0;
  text-align: center;
}

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

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

.value-item:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid var(--primary-color);
}

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

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  text-align: center;
}

.testimonials-slider {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

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

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

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

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

/* CTA Section */
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.contact-info {
  padding: 60px 0;
}

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

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

.detail-item {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.detail-icon {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 1.2rem;
}

.detail-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.detail-content p {
  margin-bottom: 5px;
  color: var(--text-light);
}

.social-contact {
  margin-top: 30px;
}

.social-contact h3 {
  margin-bottom: 15px;
}

/* Contact Form */
.contact-form-container h2 {
  margin-bottom: 20px;
}

.contact-form {
  width: 100%;
}

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

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

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

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

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  background-color: var(--background-alt);
  padding: 60px 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

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

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

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

.empty-cart {
  text-align: center;
  padding: 50px 0;
}

.empty-cart i {
  font-size: 5rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.empty-cart h2 {
  margin-bottom: 10px;
}

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

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

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 15px;
}

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

.cart-item-details h3 {
  margin-bottom: 5px;
}

.cart-item-price {
  font-weight: 600;
  color: var(--primary-color);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.quantity-btn {
  background: #f5f5f5;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-value {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  font-weight: 500;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--error-color);
  cursor: pointer;
  padding: 5px;
  font-size: 1.2rem;
}

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

.cart-summary h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

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

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

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

.btn-continue-shopping {
  display: block;
  text-align: center;
  color: var(--primary-color);
}

/* Cart Features */
.cart-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
}

.feature-text h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

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

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

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

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

.checkout-section h1 {
  text-align: center;
  margin-bottom: 40px;
}

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

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

.progress-step.active .step-name {
  color: var(--primary-color);
  font-weight: 500;
}

.progress-line {
  height: 2px;
  background-color: #e0e0e0;
  width: 80px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}

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

.checkout-form-container h2, .order-summary h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

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

.form-section h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.form-actions {
  margin-top: 40px;
}

.checkbox-group {
  margin-bottom: 30px;
}

.btn-place-order {
  width: 100%;
  margin-bottom: 15px;
}

.btn-return-to-cart {
  display: block;
  text-align: center;
  color: var(--text-light);
}

.btn-return-to-cart i {
  margin-right: 5px;
}

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

.order-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

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

.order-item-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.order-item-details h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

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

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

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

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

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

.order-security {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.security-icon {
  color: var(--success-color);
  font-size: 1.5rem;
}

.order-security p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

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

.success-icon {
  color: var(--success-color);
  font-size: 5rem;
  margin-bottom: 20px;
}

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

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

.success-details {
  margin: 40px 0;
  text-align: left;
}

.next-steps {
  margin-top: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

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

.support-info i {
  margin-right: 5px;
  color: var(--primary-color);
}

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

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

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

.recommendation {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.recommendation-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recommendation-content h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.recommendation-content p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Typing Effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

#typing-effect {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .statistics {
    gap: 20px;
  }

  .product-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 15px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 30px 0;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .statistics {
    flex-direction: column;
    gap: 15px;
  }

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

  .benefits-grid {
    gap: 20px;
  }

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

  .tab-btn {
    padding: 10px 15px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
  }

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

  .checkout-progress {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .progress-line {
    width: 2px;
    height: 20px;
  }
}
