/* Base Styles */
:root {
  --primary-color: #5a2de2;
  --secondary-color: #ff5722;
  --accent-color: #00c2ff;
  --dark-color: #121212;
  --dark-gray: #2a2a2a;
  --mid-gray: #4a4a4a;
  --light-gray: #f0f0f0;
  --white: #ffffff;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
  --transition: all 0.3s ease;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--secondary-color);
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

section {
  padding: 4rem 0;
}

svg {
  vertical-align: middle;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
}

.btn svg {
  margin-right: 0.25rem;
}

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

.btn-primary:hover {
  background-color: #4a1fc2;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(90, 45, 226, 0.2);
}

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

.btn-secondary:hover {
  background-color: #e64a19;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 87, 34, 0.2);
}

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

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

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

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

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

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

nav ul li {
  margin-left: 2rem;
}

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

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

nav ul li a.active::after,
nav ul li a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

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

/* Breadcrumb */
.breadcrumb {
  background-color: var(--light-gray);
  padding: 0.75rem 0;
}

.breadcrumb ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.breadcrumb ul li {
  display: flex;
  align-items: center;
}

.breadcrumb ul li:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
  color: var(--mid-gray);
}

.breadcrumb ul li a {
  color: var(--mid-gray);
}

.breadcrumb ul li:last-child {
  color: var(--dark-color);
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3a1c71 0%, #d76d77 50%, #ffaf7b 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.5;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

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

/* What You'll Learn Section */
.what-you-learn {
  background-color: var(--white);
  text-align: center;
}

.what-you-learn h2 {
  margin-bottom: 3rem;
}

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

.learn-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.learn-item svg {
  color: var(--primary-color);
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
}

.learn-item h3 {
  margin-bottom: 1rem;
}

.learn-item p {
  color: var(--mid-gray);
  margin-bottom: 0;
}

/* Advantages Section */
.advantages {
  background-color: var(--light-gray);
  text-align: center;
}

.advantages h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.advantages h2 svg {
  color: var(--secondary-color);
  margin-right: 0.75rem;
}

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

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

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

.advantage-item svg {
  color: var(--primary-color);
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
}

.advantage-item h3 {
  margin-bottom: 1rem;
}

.advantage-item p {
  color: var(--mid-gray);
  margin-bottom: 0;
}

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

.stat {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.stat p {
  color: var(--mid-gray);
  margin-bottom: 0;
}

.cta {
  background-color: var(--dark-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  color: var(--white);
}

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

/* Product Info Section */
.product-info {
  background-color: var(--white);
}

.product-info h2 {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.product-info h2 svg {
  color: var(--primary-color);
  margin-right: 0.75rem;
}

.product-info h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 30px;
}

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

/* Products Section */
.products {
  background-color: var(--white);
}

.products h2 {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.products h2 svg {
  color: var(--primary-color);
  margin-right: 0.75rem;
}

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

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

.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: transform 0.5s ease;
}

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

.product-info {
  padding: 1.5rem;
}

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

.product-description {
  color: var(--mid-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

.product-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
}

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

.product-rating svg {
  color: #ffc107;
  width: 16px;
  height: 16px;
}

.btn-view {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-view:hover {
  background-color: #4a1fc2;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(90, 45, 226, 0.2);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-gray);
}

.testimonials h2 {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
}

.testimonials h2 svg {
  color: var(--accent-color);
  margin-right: 0.75rem;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
  padding-bottom: 2rem;
}

.testimonial {
  flex: 0 0 auto;
  width: 100%;
  max-width: 500px;
  scroll-snap-align: start;
}

.testimonial-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

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

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

.testimonial-author strong {
  color: var(--dark-color);
}

.testimonial-author span {
  color: var(--mid-gray);
  font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #3a1c71 0%, #d76d77 50%, #ffaf7b 100%);
  color: var(--white);
  text-align: center;
}

.newsletter h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.newsletter h2 svg {
  margin-right: 0.75rem;
}

.newsletter p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

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

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

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

.footer-column h3 {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-info {
  list-style: none;
  margin: 0;
}

.contact-info li {
  display: flex;
  margin-bottom: 1rem;
}

.contact-info li svg {
  margin-right: 0.75rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  margin: 0;
}

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

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

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

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

.social-links 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: var(--white);
  transition: var(--transition);
}

.social-links 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);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  margin-bottom: 0.5rem;
}

.cookie-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-content a {
  font-size: 0.85rem;
}

/* Notification */
.notification {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  z-index: 1000;
  transition: top 0.5s ease;
  opacity: 0;
  display: flex;
  align-items: center;
}

.notification.show {
  top: 20px;
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-content svg {
  color: var(--success-color);
}

/* Product Detail Page */
.product-detail {
  padding: 3rem 0;
}

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

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

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

.product-info-detailed h1 {
  margin-bottom: 1rem;
}

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

.product-price {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

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

.old-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--mid-gray);
  margin-right: 1rem;
}

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

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

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

.product-features ul {
  list-style: none;
  margin: 0 0 2rem 0;
}

.product-features ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-features ul li svg {
  color: var(--success-color);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

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

.quantity-selector input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
}

.add-to-cart, .buy-now {
  flex: 1;
}

.product-guarantees {
  display: flex;
  gap: 2rem;
}

.guarantee {
  display: flex;
  align-items: center;
}

.guarantee svg {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.guarantee span {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

.product-details-tabs {
  margin-bottom: 3rem;
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 2rem;
}

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

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

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

.tab-content {
  display: none;
}

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

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

.specs-table tr:nth-child(even) {
  background-color: var(--light-gray);
}

.specs-table th, .specs-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.specs-table th {
  width: 30%;
  font-weight: 600;
}

.review-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
}

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

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

.stars {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0;
}

.review-breakdown {
  width: 60%;
}

.breakdown-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.breakdown-row span {
  width: 15%;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
  margin: 0 1rem;
  overflow: hidden;
}

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

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

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

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

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.reviewer span {
  color: var(--mid-gray);
  font-size: 0.875rem;
}

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

.review-rating {
  margin-bottom: 0.5rem;
}

.review-title {
  margin-bottom: 0.5rem;
}

.review-text {
  color: var(--mid-gray);
  margin-bottom: 0;
}

/* Related Products */
.related-products {
  background-color: var(--light-gray);
  padding: 4rem 0;
}

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

/* Cart Page */
.cart-section {
  padding: 4rem 0;
  min-height: 60vh;
}

.cart-section h1 {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.cart-section h1 svg {
  margin-right: 1rem;
  color: var(--primary-color);
}

.cart-empty {
  text-align: center;
  padding: 3rem;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  display: none;
}

.cart-empty svg {
  width: 80px;
  height: 80px;
  stroke: var(--mid-gray);
  margin-bottom: 1.5rem;
}

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

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

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

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

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

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

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

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

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

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

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

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.cart-item-quantity button {
  background-color: var(--light-gray);
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-quantity button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.cart-item-quantity input {
  width: 40px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--light-gray);
  margin: 0 0.5rem;
  font-size: 0.875rem;
}

.cart-item-remove {
  color: var(--danger-color);
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.cart-item-remove svg {
  margin-right: 0.25rem;
}

.cart-item-remove:hover {
  color: #b71c1c;
}

.cart-summary {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  align-self: flex-start;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  margin-bottom: 1.5rem;
}

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

.summary-row.total {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  margin-bottom: 1rem;
}

.continue-shopping {
  width: 100%;
  text-align: center;
}

/* Checkout Page */
.checkout-section {
  padding: 4rem 0;
}

.checkout-section h1 {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.checkout-section h1 svg {
  margin-right: 1rem;
  color: var(--primary-color);
}

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

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

.checkout-form h2 {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(90, 45, 226, 0.1);
}

.required {
  color: var(--danger-color);
}

.order-summary {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  align-self: flex-start;
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  margin-bottom: 2rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.checkout-item:last-child {
  padding-bottom: 0;
  margin-bottom: 1.5rem;
  border-bottom: none;
}

.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-details h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}

.checkout-item-quantity {
  color: var(--mid-gray);
  font-size: 0.875rem;
}

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

.summary-totals {
  margin-bottom: 2rem;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background-color: var(--light-gray);
  padding: 1rem;
  border-radius: var(--border-radius);
}

.secure-checkout svg {
  margin-right: 0.5rem;
  color: var(--success-color);
}

.secure-checkout p {
  margin-bottom: 0;
  font-weight: 600;
}

.checkout-support {
  text-align: center;
}

.checkout-support h3 {
  margin-bottom: 0.5rem;
}

.checkout-support p {
  color: var(--mid-gray);
  margin-bottom: 0;
}

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

.success-message {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

.success-message svg {
  color: var(--success-color);
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.success-message h1 {
  margin-bottom: 1.5rem;
  color: var(--success-color);
}

.next-steps {
  margin: 2rem 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps h2 {
  margin-bottom: 1rem;
}

.next-steps ul {
  margin-bottom: 0;
}

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

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

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

.contact-section h1 {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.contact-section h1 svg {
  margin-right: 1rem;
  color: var(--primary-color);
}

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

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

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

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

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-item svg {
  margin-right: 1rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

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

.info-item p {
  margin-bottom: 0;
  color: var(--mid-gray);
}

.info-item a {
  color: var(--primary-color);
}

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

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

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

.faq-section {
  background-color: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius);
}

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

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

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

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--mid-gray);
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

.about-hero h1 {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.about-hero h1 svg {
  margin-right: 1rem;
  color: var(--primary-color);
}

.about-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.about-text h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-stats {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-content: flex-start;
  height: fit-content;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.stat-label {
  color: var(--mid-gray);
  font-size: 0.875rem;
}

.our-story {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.our-story h2 {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.our-story h2 svg {
  margin-right: 0.75rem;
  color: var(--secondary-color);
}

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

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

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

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

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 36px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--border-radius);
}

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

.timeline-content h3 {
  margin-bottom: 0.75rem;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--mid-gray);
}

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

.our-team h2 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  text-align: center;
}

.our-team h2 svg {
  margin-right: 0.75rem;
  color: var(--accent-color);
}

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

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

.team-member {
  background-color: var(--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;
  aspect-ratio: 1/1;
  object-fit: cover;
}

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

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

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

.team-member p:nth-of-type(2) {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.team-member .social-links {
  padding: 0 1.5rem 1.5rem;
  justify-content: flex-start;
}

.why-choose-us {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.why-choose-us h2 {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
}

.why-choose-us h2 svg {
  margin-right: 0.75rem;
  color: var(--primary-color);
}

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

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

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

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

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

.feature p {
  color: var(--mid-gray);
  margin-bottom: 0;
}

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

.cta-section {
  background: linear-gradient(135deg, #3a1c71 0%, #d76d77 50%, #ffaf7b 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
  margin-top: 5rem;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    margin-top: 2rem;
    position: static;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .product-card {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .cart-content {
    grid-template-columns: 1fr;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .quantity-selector {
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .product-guarantees {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cart-item-image {
    margin: 0 auto;
  }
  
  .cart-item-actions {
    justify-content: center;
  }
  
  .success-buttons {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}
