/* Base styles */
:root {
  --primary-color: #1e88e5;
  --primary-dark: #1565c0;
  --primary-light: #64b5f6;
  --secondary-color: #ff9800;
  --secondary-dark: #f57c00;
  --secondary-light: #ffb74d;
  --text-color: #333;
  --text-light: #757575;
  --bg-color: #fff;
  --bg-light: #f5f7fa;
  --bg-dark: #263238;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --border-color: #e0e0e0;
  --border-radius: 4px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --section-spacing: 5rem;
  --container-width: 1200px;
}

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

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

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

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

ul, ol {
  list-style: none;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-cookie-secondary {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-cookie-secondary:hover {
  background-color: var(--bg-light);
}

/* Header styles */
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;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

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

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

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

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

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 50%;
  transition: var(--transition);
}

.cart-icon:hover {
  background-color: var(--bg-light);
}

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

/* Hero section */
.hero {
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://source.unsplash.com/random/1600x900/?truck');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Advantages section */
.advantages {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-light);
  text-align: center;
}

.advantages h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.advantages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.advantage-card:hover {
  transform: translateY(-10px);
}

.advantage-card .icon {
  margin-bottom: 1.5rem;
}

.advantage-card .icon svg {
  color: var(--primary-color);
  width: 48px;
  height: 48px;
}

.advantage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.advantage-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.stats {
  display: flex;
  justify-content: space-around;
  max-width: 900px;
  margin: 4rem auto 0;
  flex-wrap: wrap;
}

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

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

.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
}

.cta-container {
  margin-top: 3rem;
}

/* Detailed info section */
.detailed-info {
  padding: var(--section-spacing) 0;
  background-color: white;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 5rem 20px;
}

.detailed-info h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.detailed-info p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.info-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Products section */
.products {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-light);
}

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

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

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

.product-card h3 {
  font-size: 1.3rem;
  margin: 1.5rem 1.5rem 0.5rem;
}

.product-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0 1.5rem 0.5rem;
}

.product-card .description {
  color: var(--text-light);
  margin: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 85px;
}

.button-group {
  display: flex;
  padding: 0 1.5rem 1.5rem;
  gap: 0.5rem;
}

.button-group .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
}

/* Newsletter section */
.newsletter {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-dark);
  color: white;
  text-align: center;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

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

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

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

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

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

.footer-column p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

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

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

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

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

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-link {
  font-size: 0.9rem;
}

/* Product detail page */
.product-detail {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

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

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.product-description h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-description h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.product-description ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.quantity {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.quantity label {
  margin-right: 1rem;
  font-weight: 600;
}

.quantity input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  text-align: center;
}

.product-actions .buttons {
  display: flex;
  gap: 1rem;
}

.product-actions .btn {
  padding: 1rem 2rem;
  flex: 1;
}

/* Product tabs */
.product-tabs {
  padding: 4rem 0;
  background-color: white;
}

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

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

.tab-button {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--text-light);
  transition: var(--transition);
}

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

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

.tab-pane {
  display: none;
}

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

.tab-pane h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

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

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

.specs-table td:first-child {
  font-weight: 600;
  width: 40%;
}

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

.rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-score {
  font-size: 2.5rem;
  font-weight: bold;
}

.stars {
  display: flex;
}

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

.star.filled {
  color: #ffb400;
}

.star.half-filled {
  position: relative;
  color: #ddd;
}

.star.half-filled::before {
  content: '★';
  position: absolute;
  color: #ffb400;
  width: 50%;
  overflow: hidden;
}

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

.review {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.review-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

.related-products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.cart-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

#empty-cart p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.quantity-control input {
  width: 50px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-right: none;
  border-left: none;
  text-align: center;
}

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

.cart-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.cart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Checkout page */
.checkout-section {
  padding: 4rem 0;
  min-height: 60vh;
}

.checkout-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.checkout-form {
  flex: 1 1 500px;
}

.checkout-summary {
  flex: 1 1 300px;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  align-self: flex-start;
  position: sticky;
  top: 100px;
}

.checkout-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.checkout-items-list {
  margin-bottom: 2rem;
}

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

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
}

.checkout-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form-checkbox input {
  margin-top: 0.3rem;
}

.form-checkbox label {
  font-size: 0.95rem;
}

/* Success page */
.success-section {
  padding: 6rem 0;
  text-align: center;
  min-height: 60vh;
}

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

.success-icon {
  margin-bottom: 2rem;
}

.success-icon svg {
  color: var(--success-color);
  stroke-width: 1.5;
}

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

.success-message p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

/* About us page */
.about-hero {
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/random/1600x900/?truck-driver');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 7rem 2rem;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
}

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

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

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

.mission-content h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.mission-content > p {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.mission-point {
  display: flex;
  gap: 1.5rem;
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

.mission-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.mission-text p {
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.team-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.team-member {
  background-color: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

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

.team-member h3 {
  font-size: 1.3rem;
  margin: 1.5rem 1.5rem 0.5rem;
}

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

.team-member p:last-of-type {
  color: var(--text-light);
  margin: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

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

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

.cta-section {
  padding: 5rem 0;
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/random/1600x900/?truck-highway');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

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

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

/* Contact page */
.contact-hero {
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/random/1600x900/?customer-service');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 7rem 2rem;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
}

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

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

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

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

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

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

.info-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-text p {
  margin-bottom: 0.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.contact-form-container {
  flex: 2 1 500px;
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

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

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

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
}

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

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

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

.faq-answer {
  padding: 0 0 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

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

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

/* Media queries */
@media (max-width: 992px) {
  .product-detail-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 1rem 20px;
  }
  
  nav ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .advantages h2, 
  .products h2, 
  .detailed-info h2 {
    font-size: 2rem;
  }
  
  .info-columns {
    grid-template-columns: 1fr;
  }
  
  .mission-point {
    flex-direction: column;
    text-align: center;
  }
  
  .mission-icon {
    margin: 0 auto 1rem;
  }
  
  .contact-wrapper {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2) {
    display: none;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    margin-bottom: 1rem;
  }
  
  .success-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .about-hero h1,
  .contact-hero h1 {
    font-size: 2.5rem;
  }
}
