:root {
  --primary-color: #3a6ea5;
  --primary-dark: #2b5080;
  --primary-light: #5f93c9;
  --secondary-color: #ff6b35;
  --secondary-dark: #e04e1a;
  --secondary-light: #ff8c62;
  --bg-color: #ffffff;
  --bg-alt: #f8f9fa;
  --text-color: #333333;
  --text-light: #6c757d;
  --border-color: #e1e4e8;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-max: 1200px;
  --container-padding: 1rem;
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* Custom List Markers */
.custom-markers {
  list-style: none;
  padding-left: 0;
}

.custom-markers li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.custom-markers li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  background-color: var(--primary-color);
  color: white;
}

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

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

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

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

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

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

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

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

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

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

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  border-radius: 50%;
  object-fit: cover;
}

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

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

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

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

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

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

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

/* 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;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 110, 165, 0.9) 0%, rgba(43, 80, 128, 0.9) 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;
  color: rgba(255, 255, 255, 0.9);
}

.hero .btn {
  background-color: var(--secondary-color);
  color: white;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

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

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

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

.features h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

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

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
}

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

.feature p {
  color: var(--text-light);
}

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.stat {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
}

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

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

/* CTA */
.cta {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

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

.about-products h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.quality-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
  gap: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  background-color: var(--bg-alt);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.badge span {
  font-weight: 500;
}

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

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

.products h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

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

.product-card a {
  color: var(--text-color);
  display: block;
}

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

.product-card h3 {
  padding: 1.5rem 1.5rem 0;
  font-size: 1.25rem;
}

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

.product-description {
  padding: 0.5rem 1.5rem 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.product-actions .btn {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

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

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

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

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

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--secondary-color);
  color: white;
}

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

.subscriber-count {
  margin-top: 2rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.subscriber-count .count {
  font-weight: 700;
  color: white;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 5rem 0 2rem;
  margin-top: auto;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

.footer-column .custom-markers li::before {
  background-color: var(--secondary-color);
}

.footer-column .custom-markers li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

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

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

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

address p {
  margin-bottom: 0.5rem;
}

.company-reg {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 1.5rem;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
  max-width: 800px;
}

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

.cookie-consent a {
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Product Detail Page */
.breadcrumb {
  background-color: var(--bg-alt);
  padding: 1rem 0;
}

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

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--text-light);
}

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

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

.product-detail {
  padding: 4rem 0;
}

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

.product-gallery {
  display: flex;
  flex-direction: column;
}

.main-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.thumbnail {
  cursor: pointer;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumbnail.active {
  border-color: var(--primary-color);
}

.thumbnail:hover {
  opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

.model-selector {
  margin-top: 1rem;
}

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

.model-selector select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  color: var(--text-color);
}

.color-options {
  margin: 2rem 0;
}

.color-selector {
  display: flex;
  gap: 1rem;
  margin: 1rem 0 0.5rem;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.color-option.active {
  border-color: var(--text-color);
  transform: scale(1.1);
}

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

.pack-options {
  margin: 2rem 0;
}

.pack-selector {
  display: flex;
  gap: 1rem;
  margin: 1rem 0 0.5rem;
}

.pack-option {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
  cursor: pointer;
  transition: var(--transition);
}

.pack-option.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

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

.warranty-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #e6f3ff;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.warranty-info svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.quantity-selector {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.quantity-selector label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

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

.qty-btn {
  background-color: var(--bg-alt);
  border: none;
  color: var(--text-color);
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.quantity-controls input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  font-size: 1rem;
}

.product-tabs {
  margin-top: 4rem;
}

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

.tab-button {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

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

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

.tab-content {
  padding: 1rem 0;
}

.tab-pane {
  display: none;
}

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

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

.specs-table th, .specs-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.specs-table th {
  width: 30%;
  font-weight: 600;
  color: var(--text-color);
}

.specs-table td {
  color: var(--text-light);
}

.installation-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.installation-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.installation-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.installation-steps h4 {
  margin-bottom: 0.5rem;
}

.installation-tips {
  background-color: var(--bg-alt);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.installation-tips h4 {
  margin-bottom: 1rem;
}

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

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

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

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.about-content h2 {
  margin: 2rem 0 1.5rem;
  position: relative;
}

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

.featured-img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

.about-values h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

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

.value-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.team-section {
  padding: 5rem 0;
  background-color: white;
}

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

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

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

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: var(--box-shadow);
}

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

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

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

.social-links a {
  color: var(--text-light);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

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

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

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

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

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.cta-section {
  padding: 5rem 0;
  background-color: white;
  text-align: center;
}

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

.cta-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

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

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

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

.contact-info > p {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

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

.contact-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  height: 48px;
  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;
  color: var(--text-light);
}

.availability {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  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(58, 110, 165, 0.1);
}

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

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
  margin-right: 0.75rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

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

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

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

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

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

.faq-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

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

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

.cart-empty.hidden {
  display: none;
}

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

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

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

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

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

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

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

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

.product-col {
  width: 50%;
}

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

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-right: 1rem;
}

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

.cart-item-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

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

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

.cart-quantity button {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

.cart-quantity input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-left: none;
  border-right: none;
}

.remove-item {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--danger-color);
}

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

.cart-summary h3 {
  margin-bottom: 2rem;
  position: relative;
}

.cart-summary h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

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

.cart-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-methods {
  margin-top: 2rem;
  text-align: center;
}

.payment-methods p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.payment-icon {
  opacity: 0.7;
  transition: var(--transition);
}

.payment-icon:hover {
  opacity: 1;
}

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

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

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

.checkout-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

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

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-alt);
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

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

.step-divider {
  width: 100%;
  height: 2px;
  background-color: var(--bg-alt);
  flex: 1;
  margin: 0 1rem;
  margin-bottom: 2.5rem;
}

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

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

.summary-item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-right: 1rem;
}

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

.summary-item-info h4 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.summary-item-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.secure-checkout-notice {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: var(--bg-alt);
  border-radius: var(--border-radius);
}

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

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

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

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

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

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

.confirmation-email {
  color: var(--text-light);
  margin-bottom: 3rem;
}

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

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

.next-steps ol {
  padding-left: 2rem;
  margin-bottom: 0;
}

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

.next-steps li:last-child {
  margin-bottom: 0;
}

.delivery-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--bg-alt);
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.delivery-estimate svg {
  margin-right: 1rem;
  color: var(--primary-color);
}

.delivery-estimate p {
  margin-bottom: 0;
  font-weight: 500;
}

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

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

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

/* Responsive Styles */
@media (max-width: 991px) {
  html {
    font-size: 14px;
  }

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

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image {
    order: -1;
    text-align: center;
  }

  .about-image img {
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .contact-form-container {
    order: -1;
  }

  .cart-content {
    grid-template-columns: 1fr;
  }

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

  .cart-summary, 
  .order-summary {
    position: static;
    margin-top: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }

  .newsletter-form .btn {
    width: 100%;
    border-radius: var(--border-radius);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  html {
    font-size: 12px;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  nav ul li {
    margin-left: 0;
  }

  .feature-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat {
    padding: 1rem;
  }

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

  .cart-table, 
  .cart-table tbody, 
  .cart-table tr, 
  .cart-table th, 
  .cart-table td {
    display: block;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tr {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }

  .cart-table td {
    text-align: right;
    position: relative;
    padding-left: 50%;
    border-bottom: 1px solid var(--border-color);
  }

  .cart-table td:before {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
  }

  .cart-table td:nth-child(1):before { content: "Product"; }
  .cart-table td:nth-child(2):before { content: "Price"; }
  .cart-table td:nth-child(3):before { content: "Quantity"; }
  .cart-table td:nth-child(4):before { content: "Total"; }

  .cart-table td:last-child {
    text-align: center;
    padding: 1rem;
  }

  .cart-item-details {
    flex-direction: column;
    align-items: flex-end;
  }

  .cart-item-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cart-item-info {
    text-align: center;
  }

  .success-actions {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .quality-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 10px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 3rem 0;
  }

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

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

  .features, 
  .products, 
  .newsletter, 
  .contact-section, 
  .about-story, 
  .about-values, 
  .team-section, 
  .testimonials, 
  .cart-section, 
  .checkout-section, 
  .success-section {
    padding: 3rem 0;
  }

  .tab-button {
    padding: 0.75rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
