/* Base Styles */
:root {
  --primary-color: #2e4057;
  --primary-dark: #1d2b3a;
  --primary-light: #48617c;
  --secondary-color: #f79824;
  --secondary-dark: #db7d05;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #e9ecef;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --border-radius: 4px;
  --transition-speed: 0.3s;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: none;
  font-size: 1rem;
}

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

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

.secondary-btn {
  background-color: var(--background-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.btn svg {
  vertical-align: middle;
  margin-right: 6px;
}

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

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

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

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

nav a {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
}

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

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

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

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

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

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cta h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

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

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

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

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

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

.quality-assurance,
.production,
.guarantees,
.why-choose {
  margin-top: 3rem;
}

.quality-assurance h3,
.production h3,
.guarantees h3,
.why-choose h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Expert Interview Section */
.expert-interview {
  padding: 5rem 0;
  background-color: var(--background-light);
}

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

.interview {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.expert-info {
  margin-bottom: 2rem;
}

.expert-title {
  color: var(--text-light);
  font-style: italic;
}

.interview-content p {
  margin-bottom: 1.5rem;
}

.interview-content p strong {
  color: var(--primary-color);
}

/* Quote of the Day Section */
.quote-of-day {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: white;
}

blockquote {
  font-size: 1.75rem;
  line-height: 1.4;
  text-align: center;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-style: normal;
}

/* Products Section */
.products {
  padding: 5rem 0;
}

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

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

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

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

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

.product h3 {
  padding: 1.25rem 1.25rem 0.5rem;
  font-size: 1.2rem;
  height: 3.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.product .description {
  padding: 0.5rem 1.25rem 1rem;
  color: var(--text-light);
  height: 4.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-actions {
  display: flex;
  padding: 1.25rem;
  gap: 0.5rem;
}

.product-actions .btn {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

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

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

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

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

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

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

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

.product-author,
.product-publisher {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.product-rating {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
}

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

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

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

.original-price {
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.discount-label {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin-left: 0.5rem;
}

.quantity-selector {
  margin-bottom: 1.5rem;
}

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

.quantity-controls {
  display: flex;
  width: 150px;
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.quantity-controls button {
  width: 45px;
  background-color: var(--background-light);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
}

.quantity-controls input {
  width: 60px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

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

.product-details {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

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

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

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

.product-description,
.product-reviews,
.related-products {
  margin-bottom: 4rem;
}

.product-description h2,
.product-reviews h2,
.related-products h2 {
  margin-bottom: 2rem;
}

.product-description h3 {
  margin: 2rem 0 1rem;
}

.product-description ul,
.product-description ol {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

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

.review {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th {
  background-color: var(--background-light);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

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

.cart-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 1rem;
  border-radius: var(--border-radius);
}

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

.cart-quantity {
  display: flex;
  width: 120px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.cart-quantity button {
  width: 40px;
  background-color: var(--background-light);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
}

.cart-quantity input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--error-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cart-summary {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

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

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.checkout-button {
  margin-top: 2rem;
}

.checkout-button .btn {
  width: 100%;
}

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

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

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

.checkout-form-container,
.order-summary {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

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

.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;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  font-weight: normal;
}

.checkbox-label input {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-label.required:after {
  content: ' *';
  color: var(--error-color);
}

.checkout-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

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

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

.item-price {
  font-weight: 700;
}

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

.secure-checkout {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

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

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

.success-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--background-light);
  padding: 3rem;
  border-radius: var(--border-radius);
}

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

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

.next-steps {
  margin: 3rem 0;
  text-align: left;
}

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

.next-steps ul {
  list-style: disc;
  padding-left: 2rem;
}

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

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

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

.about-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

.mission-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.mission-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.mission-stats {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: fit-content;
}

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

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

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

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

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

.team {
  padding: 5rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

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

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

.team-member {
  text-align: center;
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.team-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

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

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

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

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

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

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

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

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

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

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.year {
  width: 100px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
  text-align: right;
  padding-right: 2rem;
}

.event {
  flex: 1;
  padding-left: 3rem;
  position: relative;
}

.event:before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 16px;
  height: 16px;
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}

.testimonials {
  padding: 5rem 0;
}

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

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

.testimonial {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
}

.quote {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

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

.testimonial-author {
  font-style: normal;
}

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

.contact-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

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

.contact-info p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  margin-right: 1.5rem;
}

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

.contact-details p {
  margin-bottom: 0.5rem;
}

.business-hours h3 {
  margin-bottom: 1.5rem;
}

.business-hours ul {
  margin-bottom: 1.5rem;
}

.business-hours li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  max-width: 300px;
}

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

.contact-form .btn {
  width: 100%;
}

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

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

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

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

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

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

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

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

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

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

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

.footer-col address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-col address a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-col address a:hover {
  color: white;
}

.footer-col .social-links {
  justify-content: flex-start;
}

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

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

.copyright {
  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;
  right: 0;
  background-color: var(--background-dark);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-speed) ease;
}

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

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

.cookie-content p {
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.cookie-more-info {
  font-size: 0.9rem;
}

/* Notification */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-speed) ease;
  z-index: 1000;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification p {
  margin: 0;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
  
  .checkout-content {
    grid-template-columns: 1fr;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
  }
  
  .mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .feature-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-table thead {
    display: none;
  }
  
  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td {
    display: block;
    width: 100%;
  }
  
  .cart-table tr {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
  }
  
  .cart-table td {
    position: relative;
    padding-left: 50%;
    text-align: right;
  }
  
  .cart-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-weight: 600;
  }
  
  .cart-product {
    justify-content: flex-end;
  }
  
  .cart-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .timeline:before {
    left: 70px;
  }
  
  .year {
    width: 60px;
    font-size: 1rem;
  }
  
  .event {
    padding-left: 2rem;
  }
}

@media (max-width: 576px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-stats {
    grid-template-columns: 1fr;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

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

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.slide-up {
  animation: slideUp 0.5s ease forwards;
}
