/* Base Styles */
:root {
  --primary-color: #2e5cb8;
  --primary-dark: #1a4299;
  --primary-light: #4776d1;
  --secondary-color: #ffa000;
  --secondary-dark: #f08c00;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --bg-color: #ffffff;
  --bg-light: #f7f9fc;
  --border-color: #e6e9ef;
  --success-color: #28a745;
  --error-color: #dc3545;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Georgia', serif;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  position: relative;
  min-height: 100vh;
}

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

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

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

ul {
  list-style: none;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

button, .btn {
  cursor: pointer;
  font-family: var(--font-primary);
}

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

.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: var(--success-color);
  color: white;
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
  z-index: 100;
  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;
}

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

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

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

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

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

#cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  margin-left: 5px;
}

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

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

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
}

.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-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-sm {
  padding: 8px 15px;
  font-size: 0.9rem;
}

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

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

.btn-danger {
  background-color: var(--error-color);
  border-color: var(--error-color);
  color: white;
}

.btn-danger:hover {
  background-color: #bd2130;
  border-color: #bd2130;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

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

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

.benefit-item:hover {
  transform: translateY(-10px);
}

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

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

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

.cta-banner {
  background-color: var(--primary-light);
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 8px;
  margin-top: 50px;
}

.cta-banner h3 {
  color: white;
  margin-bottom: 20px;
}

/* About Products Section */
.about-products {
  padding: 80px 0;
}

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

.features-list {
  margin: 30px 0;
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
}

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

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

.features-list li {
  margin-bottom: 10px;
}

.history-block {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* Tip of the Day Section */
.tip-of-the-day {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.tip-of-the-day h2 {
  text-align: center;
  margin-bottom: 30px;
}

.tip-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  max-width: 800px;
  margin: 0 auto;
}

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

.tip-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 15px;
}

.tip-content li {
  margin-bottom: 10px;
}

/* Products Section */
.products {
  padding: 80px 0;
}

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

.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: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

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

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

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

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  padding: 0 20px;
  margin-bottom: 15px;
}

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

.product-actions .btn {
  flex: 1;
}

/* Product Detail Page */
.product-detail {
  padding: 80px 0;
}

.breadcrumb {
  margin-bottom: 30px;
  color: var(--text-lighter);
}

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

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

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

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

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

.product-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

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

.stars {
  color: var(--secondary-color);
  margin-right: 10px;
}

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

.product-availability {
  margin-left: auto;
  color: var(--success-color);
  font-weight: 500;
}

.product-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
}

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

.old-price {
  color: var(--text-lighter);
  text-decoration: line-through;
  margin-right: 10px;
}

.discount {
  background-color: var(--success-color);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

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

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

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

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

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quantity-selector label {
  margin-right: 10px;
}

.quantity-selector select {
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: white;
}

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

.delivery-info p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.delivery-info svg {
  margin-right: 10px;
  color: var(--primary-color);
}

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

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

.tab-btn {
  padding: 15px 25px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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

.tab-content {
  display: none;
}

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

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

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

.specifications-table th {
  width: 30%;
  color: var(--text-light);
  font-weight: 500;
}

.review-summary {
  display: flex;
  margin-bottom: 30px;
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
}

.average-rating {
  text-align: center;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid var(--border-color);
}

.big-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.rating-breakdown {
  flex: 1;
}

.rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rating-bar {
  flex: 1;
  background-color: var(--border-color);
  height: 8px;
  border-radius: 4px;
  margin: 0 15px;
  overflow: hidden;
}

.rating-fill {
  background-color: var(--primary-color);
  height: 100%;
}

.rating-percent {
  width: 40px;
  text-align: right;
  color: var(--text-lighter);
}

.review-list {
  margin-top: 30px;
}

.review-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.verified {
  color: var(--success-color);
  font-size: 0.9rem;
  margin-left: 10px;
}

.review-date {
  color: var(--text-lighter);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

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

/* Cart Page */
.cart-section {
  padding: 80px 0;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px;
}

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

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

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

#cart-table th {
  padding: 15px;
  text-align: left;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

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

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

.cart-product-info img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
}

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

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

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

.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cart-update {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.cart-summary {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  min-width: 300px;
}

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

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

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

.cart-recommendations {
  padding: 60px 0;
  background-color: var(--bg-light);
}

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

.secure-shopping {
  padding: 60px 0;
}

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

.feature {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--bg-light);
}

.feature-icon {
  color: var(--primary-color);
  margin-right: 15px;
}

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

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

.checkout-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px;
}

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

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

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

.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group.full-width {
  width: 100%;
}

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

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: white;
}

.form-group textarea {
  resize: vertical;
}

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

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

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

.order-items {
  margin-bottom: 20px;
}

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

.order-item-details {
  flex: 1;
}

.order-item-title {
  font-weight: 500;
  margin-bottom: 5px;
}

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

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

.summary-totals {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.order-security {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.security-icon {
  color: var(--success-color);
  margin-right: 15px;
}

.payment-options {
  text-align: center;
  margin-top: 30px;
}

.payment-options h3 {
  margin-bottom: 15px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-icon {
  padding: 8px 15px;
  background-color: var(--bg-light);
  border-radius: 4px;
  font-size: 0.9rem;
}

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

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

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

.success-message {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.success-details {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
}

.what-now, .contact-help {
  text-align: left;
  margin: 40px 0;
}

.what-now ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-top: 15px;
}

.what-now li {
  margin-bottom: 10px;
}

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

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

.resources-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.page-header h1 {
  color: white;
  margin-bottom: 10px;
}

/* About Us Page */
.about-story {
  padding: 80px 0;
}

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

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

.our-mission {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

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

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

.values li {
  margin-bottom: 15px;
}

.team {
  padding: 80px 0;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.team-member {
  background-color: white;
  border-radius: 8px;
  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 {
  padding: 20px 20px 5px;
  margin-bottom: 0;
}

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

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 20px 20px;
}

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

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

.achievements {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

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

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

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.testimonials {
  padding: 80px 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

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

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

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

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--text-lighter);
}

/* Contact Page */
.contact-info {
  padding: 80px 0;
}

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

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

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

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

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

.contact-form-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.contact-form-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.contact-form {
  margin-top: 30px;
}

.map {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.office-info {
  margin-top: 20px;
}

.faq {
  padding: 80px 0;
}

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

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

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

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

.faq-question:hover {
  background-color: #eaecf0;
}

.faq-question h3 {
  margin-bottom: 0;
}

.faq-toggle {
  font-size: 1.5rem;
}

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

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

.form-success {
  text-align: center;
  padding: 50px 20px;
}

.form-success svg {
  color: var(--success-color);
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 80px 0 30px;
  margin-top: 80px;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #ddd;
}

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links ul li a {
  color: #ddd;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ddd;
}

.footer-contact svg {
  margin-right: 10px;
}

.footer-contact .social-links {
  justify-content: flex-start;
  padding: 0;
  margin-top: 20px;
}

.footer-contact .social-links a {
  color: #ddd;
}

.footer-contact .social-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px 0;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

.cookie-link a {
  color: white;
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 992px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-form-section .container {
    grid-template-columns: 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }
  
  nav {
    margin-top: 20px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px 10px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .cart-summary {
    width: 100%;
    margin-top: 20px;
  }
  
  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .benefits-grid, .products-grid, .team-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .tabs {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tab-btn {
    width: 100%;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  
  .tab-btn.active {
    border-bottom-color: transparent;
    border-left-color: var(--primary-color);
  }
  
  .review-summary {
    flex-direction: column;
  }
  
  .average-rating {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 20px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .success-actions {
    flex-direction: column;
  }
}
