/* Base & Reset */
:root {
  --primary-color: #3a6bc5;
  --primary-light: #4f7bd7;
  --primary-dark: #2a5ab5;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --text-color: #333333;
  --text-light: #6c7a89;
  --bg-color: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #f0f0f0;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --border-radius-sm: 4px;
  --border-radius: 6px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
  --container-max-width: 1280px;
  --container-padding: 20px;
  --section-spacing: 80px;
  --section-spacing-sm: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

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

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

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

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

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

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

.btn-tertiary {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
  background-color: var(--bg-light);
  color: var(--text-color);
}

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

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

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

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

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

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

.header-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search {
  position: relative;
  width: 200px;
}

.search input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.search input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 107, 197, 0.1);
}

.search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  transition: var(--transition);
}

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

.cart {
  position: relative;
}

.cart a {
  color: var(--text-color);
  padding: 8px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.cart a:hover, .cart a.active {
  color: var(--primary-color);
  background-color: rgba(58, 107, 197, 0.1);
}

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

/* Breadcrumbs */
.breadcrumbs {
  background-color: var(--bg-light);
  padding: 12px 0;
  margin-bottom: 30px;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--text-light);
}

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

.breadcrumbs li:last-child {
  color: var(--text-color);
  font-weight: 500;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 100px 0;
  text-align: center;
  margin-bottom: var(--section-spacing);
}

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

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

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

.hero .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Summary Block */
.summary-block {
  background-color: var(--bg-light);
  padding: 40px 0;
  margin-bottom: var(--section-spacing);
  text-align: center;
}

.summary-block h2 {
  margin-bottom: 20px;
}

.summary-block p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Future Quote Block */
.future-quote {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
  margin-bottom: var(--section-spacing);
  text-align: center;
}

.future-quote h2 {
  color: white;
  margin-bottom: 30px;
}

.future-quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.future-quote blockquote::before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: -60px;
  left: -40px;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.future-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 1rem;
  font-style: normal;
  opacity: 0.8;
}

/* Products Section */
.products {
  padding: 60px 0;
  margin-bottom: var(--section-spacing);
}

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

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

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

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

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.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: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

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

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

.product-actions .add-to-cart {
  flex: 1;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  transition: var(--transition);
}

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

.product-actions .btn-secondary {
  padding: 10px 15px;
  font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail {
  margin-bottom: var(--section-spacing);
}

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

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

.product-main-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.product-price-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

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

.product-stock {
  background-color: var(--success-color);
  color: white;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.product-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

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

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

.product-features ul {
  list-style-type: disc;
  padding-left: 20px;
}

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

.product-quantity {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

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

.quantity-controls button {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  font-size: 1.2rem;
  transition: var(--transition);
}

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

.quantity-controls input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-weight: 500;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.product-actions button {
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  transition: var(--transition);
}

.add-to-cart-large {
  background-color: var(--primary-color);
  color: white;
}

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

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

.buy-now:hover {
  background-color: #1e2b3a;
}

.product-details-tabs {
  margin-top: 60px;
}

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

.tab-button {
  padding: 15px 25px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  transition: var(--transition);
}

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

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

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

.tab-content {
  display: none;
}

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

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

.specifications-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specifications-table td {
  padding: 12px 0;
}

.specifications-table td:first-child {
  width: 200px;
  font-weight: 500;
}

.reviews-summary {
  margin-bottom: 30px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-value {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.rating-stars {
  display: flex;
}

.star {
  font-size: 1.5rem;
  color: #ddd;
}

.star.filled, .star.half-filled {
  color: #f39c12;
}

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

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
}

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

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

.review-rating {
  display: flex;
}

.review-rating .star {
  font-size: 1rem;
}

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

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

.related-products {
  margin-bottom: var(--section-spacing);
}

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

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

/* Cart Page */
.cart-section {
  margin-bottom: var(--section-spacing);
}

.cart-empty, .checkout-empty {
  text-align: center;
  padding: 60px 0;
}

.cart-empty svg, .checkout-empty svg {
  margin: 0 auto 20px;
  color: var(--text-light);
}

.cart-empty h2, .checkout-empty h2 {
  margin-bottom: 15px;
}

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

.cart-table-container {
  margin-bottom: 30px;
  overflow-x: auto;
}

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

.cart-table th {
  padding: 15px;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
  font-weight: 600;
}

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

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

.cart-item-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

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

.cart-item-price {
  font-weight: 500;
}

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

.cart-item-quantity button {
  width: 30px;
  height: 30px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-sm);
}

.cart-item-quantity input {
  width: 40px;
  text-align: center;
  border: none;
  font-weight: 500;
}

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

.cart-item-remove {
  color: var(--text-light);
  transition: var(--transition);
}

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

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

.cart-summary {
  max-width: 400px;
  margin-left: auto;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.summary-content {
  padding: 25px;
}

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

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

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

.checkout-button {
  margin-top: 25px;
}

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

.you-may-like {
  margin-bottom: var(--section-spacing);
}

.you-may-like h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Checkout Page */
.checkout-section {
  margin-bottom: var(--section-spacing);
}

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

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

.checkout-form-container h2 {
  margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  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 3px rgba(58, 107, 197, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.form-checkbox input {
  margin-top: 5px;
  margin-right: 10px;
}

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

.form-actions {
  display: flex;
  gap: 15px;
}

.checkout-summary {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  align-self: start;
}

.checkout-summary h2 {
  padding: 20px;
  margin-bottom: 0;
  background-color: var(--secondary-color);
  color: white;
}

.checkout-summary-content {
  padding: 25px;
}

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

.checkout-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

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

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

.checkout-item-quantity {
  margin-left: auto;
  font-weight: 500;
}

.checkout-total-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.checkout-total-line.total {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Success Page */
.success-section {
  margin-bottom: var(--section-spacing);
}

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

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

.success-message h1 {
  margin-bottom: 20px;
}

.success-message p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.success-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.success-recommendations {
  margin-top: 60px;
}

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

/* Contact Page */
.contact-section {
  margin-bottom: var(--section-spacing);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

.contact-details h3 {
  margin-bottom: 10px;
}

.contact-details p {
  margin-bottom: 5px;
}

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

.contact-social {
  padding: 25px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

.social-links {
  display: flex;
  gap: 15px;
}

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

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

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

.contact-form-container h2 {
  margin-bottom: 30px;
}

.map-section {
  margin-bottom: var(--section-spacing);
}

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

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

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
  color: var(--text-light);
}

.map-content svg {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.faq-section {
  margin-bottom: var(--section-spacing);
}

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

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  background-color: var(--bg-light);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* About Page */
.about-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
  margin-bottom: var(--section-spacing);
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  color: white;
  margin-bottom: 20px;
}

.about-tagline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-intro {
  font-size: 1.1rem;
}

.about-mission {
  margin-bottom: var(--section-spacing);
}

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.mission-content {
  padding-right: 20px;
}

.mission-content h2, .mission-values h2 {
  margin-bottom: 25px;
}

.mission-content p {
  font-size: 1.1rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.values-list li {
  display: flex;
  gap: 20px;
}

.value-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(58, 107, 197, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.value-content h3 {
  margin-bottom: 10px;
}

.about-history {
  margin-bottom: var(--section-spacing);
  padding: 60px 0;
  background-color: var(--bg-light);
}

.about-history h2 {
  text-align: center;
  margin-bottom: 50px;
}

.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: 30px;
}

.timeline-year {
  width: 100px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-top: 5px;
}

.timeline-year::after {
  content: '';
  position: absolute;
  right: -31px;
  top: 10px;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  padding-left: 60px;
}

.timeline-content h3 {
  margin-bottom: 10px;
}

.team-section {
  margin-bottom: var(--section-spacing);
}

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

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

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

.team-member:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.member-photo {
  height: 300px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  padding: 25px;
}

.member-position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.member-bio {
  margin-bottom: 20px;
  color: var(--text-light);
}

.member-social {
  display: flex;
  gap: 10px;
}

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

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

.stats-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: white;
  margin-bottom: var(--section-spacing);
}

.stats-section h2 {
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

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

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-light);
}

.stat-label {
  font-size: 1.1rem;
}

.testimonials-section {
  margin-bottom: var(--section-spacing);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.testimonial-content {
  margin-bottom: 30px;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -40px;
  left: -20px;
  color: rgba(58, 107, 197, 0.1);
  font-family: Georgia, serif;
}

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

.author-company {
  color: var(--text-light);
}

.partners-section {
  margin-bottom: var(--section-spacing);
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.partner-logo svg {
  color: var(--text-light);
}

.partner-logo p {
  font-weight: 500;
  margin-bottom: 0;
}

.cta-section {
  background-color: var(--primary-color);
  padding: 80px 0;
  margin-bottom: var(--section-spacing);
}

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

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.cta-buttons .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 30px;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 25px;
  position: relative;
}

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

.footer-column p, .footer-column address p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

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

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

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

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-content h3 {
  margin-bottom: 10px;
}

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

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

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 15px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transform: translateX(200%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.notification.show {
  transform: translateX(0);
}

.notification p {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 60px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

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

  .mission-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 100px;
  }

  .timeline-year::after {
    right: -21px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
    --section-spacing-sm: 30px;
  }

  header .container {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .logo {
    margin-bottom: 15px;
  }

  .menu {
    margin-bottom: 15px;
  }

  .header-controls {
    width: 100%;
    justify-content: space-between;
  }

  .search {
    width: 100%;
    max-width: 300px;
  }

  .hero {
    padding: 60px 0;
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --container-padding: 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .menu {
    gap: 15px;
  }

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

  .cart-table {
    font-size: 0.9rem;
  }

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

  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-year {
    margin-bottom: 10px;
  }

  .timeline-year::after {
    top: auto;
    bottom: -20px;
    right: auto;
    left: 0;
  }

  .timeline-content {
    padding-left: 0;
  }
}
