/* Base Styles */
:root {
  --primary-color: #0056b3;
  --primary-dark: #003f82;
  --primary-light: #e6f0ff;
  --secondary-color: #ff6b00;
  --secondary-dark: #e55d00;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --bg-color: #ffffff;
  --bg-alt: #f7f9fc;
  --border-color: #e1e5ee;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: 'Georgia', 'Times New Roman', serif;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

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

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: -15px;
  margin-bottom: 40px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

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

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

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

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

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

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

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

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

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

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

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

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

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

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}

.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: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Advantages Section */
.advantages {
  background-color: var(--bg-alt);
}

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

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

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

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

.advantage-item .icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.advantage-item h3 {
  margin-bottom: 15px;
}

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

.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  margin: 10px;
}

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

.stat-item p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.advantages .btn {
  display: block;
  max-width: 250px;
  margin: 0 auto;
}

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

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

.about-products p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 40px;
}

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

.feature {
  padding: 30px;
  background-color: var(--bg-alt);
  border-radius: 8px;
}

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

.interview {
  background-color: var(--primary-light);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.interview h3 {
  margin-bottom: 20px;
  text-align: center;
}

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

.expert h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

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

.question {
  margin-bottom: 20px;
}

.question p:first-child {
  font-weight: bold;
  color: var(--text-color);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.comparison-table caption {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.comparison-table th {
  background-color: var(--primary-light);
  font-weight: bold;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--bg-alt);
}

/* Products Section */
.products {
  background-color: var(--bg-alt);
  text-align: center;
}

.products h2 {
  margin-bottom: 10px;
}

.products > .container > p {
  margin-bottom: 50px;
}

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

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

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

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

.product-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
}

.product-card .price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-card .description {
  padding: 0 20px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-card .btn {
  margin: 0 20px 20px;
}

/* Testimonials Section */
.testimonials {
  background-color: white;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 50px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial {
  background-color: var(--bg-alt);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  max-width: 350px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary-light);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.client h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.client p {
  color: var(--text-light);
  font-style: normal;
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #f5f5f5;
  padding: 60px 0 20px;
}

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

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col p {
  color: #b3b3b3;
  margin-bottom: 10px;
}

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

.footer-col ul li a {
  color: #b3b3b3;
}

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

.registration {
  font-size: 0.9rem;
  color: #999999;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.footer-bottom p {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: white;
  padding: 20px;
  z-index: 1001;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: bottom 0.5s ease-in-out;
}

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

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

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

.cookie-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

/* Product Details Page */
.breadcrumb {
  margin-bottom: 30px;
  color: var(--text-light);
}

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

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

.product-details {
  padding: 60px 0;
}

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

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

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

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

.product-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

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

.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.product-tabs {
  margin-bottom: 60px;
}

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

.tab-btn {
  padding: 15px 25px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  color: var(--text-light);
}

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

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

.tab-content {
  display: none;
}

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

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list li svg {
  color: var(--success-color);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.benefit-item {
  padding: 20px;
  background-color: var(--bg-alt);
  border-radius: 8px;
  transition: var(--transition);
}

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

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

.benefit-item h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.benefit-item p {
  margin-bottom: 0;
}

.product-related h3 {
  margin-bottom: 30px;
  text-align: center;
}

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

/* Notification */
.notification {
  position: fixed;
  top: -100px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: top 0.5s ease;
  z-index: 1000;
}

.notification.show {
  top: 20px;
}

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

.notification.error {
  background-color: var(--error-color);
}

/* Cart Page */
.page-header {
  background-color: var(--primary-light);
  padding: 60px 0;
  text-align: center;
}

.cart-section {
  padding: 60px 0;
}

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

.cart-empty svg {
  color: var(--text-lighter);
  margin-bottom: 20px;
}

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

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

.cart-content {
  display: none;
}

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

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

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

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

.cart-table img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

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

.cart-product-info h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-alt);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.quantity-input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

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

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

.cart-summary {
  background-color: var(--bg-alt);
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  margin-left: auto;
}

.cart-summary h3 {
  margin-bottom: 20px;
}

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

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

.cart-summary .btn {
  width: 100%;
  margin-top: 20px;
}

.featured-products {
  background-color: var(--bg-alt);
  text-align: center;
}

.featured-products h2 {
  margin-bottom: 40px;
}

.product-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

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

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

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

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

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

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

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

.form-group textarea {
  resize: vertical;
}

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

.form-group.checkbox input {
  width: auto;
  margin-top: 5px;
}

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

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

.order-summary {
  background-color: var(--bg-alt);
  padding: 30px;
  border-radius: 8px;
  align-self: flex-start;
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  margin-bottom: 30px;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.checkout-item-image {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
}

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

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

.checkout-item-price {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.9rem;
}

.summary-totals {
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.secure-checkout {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(40, 167, 69, 0.1);
  padding: 15px;
  border-radius: 4px;
}

.secure-icon {
  color: var(--success-color);
}

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

/* Success Page */
.success-section {
  padding: 80px 0;
  text-align: center;
}

.success-message {
  max-width: 700px;
  margin: 0 auto;
}

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

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

.success-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

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

.after-purchase {
  background-color: var(--bg-alt);
  text-align: center;
}

.after-purchase h2 {
  margin-bottom: 50px;
}

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

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

.step-number {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.step h3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.step p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Contact Page */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
}

.info-items {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item .icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 5px;
}

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

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

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

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

.contact-form {
  background-color: var(--bg-alt);
  padding: 30px;
  border-radius: 8px;
}

.contact-hours {
  text-align: center;
  margin-bottom: 60px;
}

.contact-hours h2 {
  margin-bottom: 40px;
}

.hours-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
}

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

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

.hours-item p {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.contact-cta {
  text-align: center;
  background-color: var(--primary-light);
  padding: 50px;
  border-radius: 8px;
}

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

.contact-cta p {
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Page */
.about-intro {
  padding: 60px 0;
}

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

.about-content h2 {
  margin-bottom: 30px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-stats .stat-item {
  background-color: var(--bg-alt);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

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

.about-stats .stat-item p {
  margin-bottom: 0;
  color: var(--text-color);
}

.mission-values {
  background-color: var(--bg-alt);
}

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

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

.mission-item h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-item.values ul {
  padding-left: 20px;
}

.mission-item.values ul li {
  margin-bottom: 15px;
  list-style-type: disc;
}

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

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

.team-member {
  background-color: var(--bg-alt);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

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

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  margin: 20px 0 5px;
  padding: 0 20px;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 10px;
}

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

.team-member .social-icons {
  justify-content: center;
  margin: 15px 0 20px;
}

.team-member .social-icons a {
  background-color: transparent;
  color: var(--text-light);
}

.team-member .social-icons a:hover {
  color: var(--primary-color);
}

.why-choose-us {
  background-color: var(--bg-alt);
  text-align: center;
}

.why-choose-us h2 {
  margin-bottom: 50px;
}

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

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

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

.feature-item .icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-item h3 {
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.certifications {
  text-align: center;
}

.certifications h2 {
  margin-bottom: 50px;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.cert-item {
  background-color: var(--bg-alt);
  padding: 30px;
  border-radius: 8px;
  width: 250px;
}

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

.cert-item h3 {
  margin-bottom: 10px;
}

.cert-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 80px 0;
}

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .product-details-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    position: static;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hours-grid {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 20px;
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .stat-item {
    min-width: 120px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .stats {
    flex-direction: column;
  }
  
  .cart-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}
