/* Base Styles */
:root {
  --primary-color: #2d9d78;
  --primary-dark: #1e7a5c;
  --primary-light: #78d1b6;
  --secondary-color: #34495e;
  --accent-color: #f39c12;
  --background-color: #f9f9f9;
  --card-color: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

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

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

section {
  padding: 4rem 0;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 4px 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: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.5rem;
  position: relative;
}

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

.nav-links a.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  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(--accent-color);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 8rem 0;
  margin-bottom: 2rem;
}

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

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

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

/* Advantages Section */
.advantages {
  text-align: center;
}

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

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

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

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

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

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

.cta-banner {
  background-color: var(--primary-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 3rem;
}

.cta-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.about-products h2 {
  text-align: center;
}

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

.about-products-content h3 {
  margin-top: 2rem;
  color: var(--primary-dark);
}

/* Products Section */
.products-section {
  text-align: center;
}

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

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

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

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-info {
  padding: 1.5rem;
}

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

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

.product-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

/* Product Detail Page */
.product-detail {
  padding-top: 2rem;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

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

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

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

.stars {
  color: var(--accent-color);
  display: flex;
  margin-right: 1rem;
}

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

.product-price-large {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-availability {
  display: flex;
  align-items: center;
  color: var(--success-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-availability svg {
  margin-right: 0.5rem;
}

.product-quantity {
  margin-bottom: 1.5rem;
}

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

.quantity-btn {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-color);
}

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

.quantity-control input {
  width: 50px;
  text-align: center;
  border: none;
  padding: 0.5rem 0;
  -moz-appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-actions-large {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

.meta-item svg {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.product-additional-info {
  margin-top: 3rem;
}

.tab-container {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.tab-header {
  display: flex;
  background-color: #f5f5f5;
  border-bottom: 1px solid var(--border-color);
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.tab-btn.active {
  color: var(--primary-color);
  background-color: white;
  border-bottom: 3px solid var(--primary-color);
}

.tab-content {
  padding: 2rem;
  display: none;
}

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

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

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

.specs-table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.installation-note, .note {
  background-color: #f0f7f4;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.installation-warning {
  background-color: #fef2e0;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
  color: #d35400;
}

.related-products {
  margin-top: 4rem;
}

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

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

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

.average-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.rating-large {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

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

.reviewer {
  font-weight: 600;
}

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

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

/* Cart Page */
.page-title {
  text-align: center;
  margin-bottom: 3rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.cart-content {
  display: none;
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  padding: 1rem 0;
  border-bottom: 2px solid var(--border-color);
  font-weight: 600;
  color: var(--text-light);
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

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

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

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

.cart-product-details h3 {
  margin-bottom: 0.25rem;
}

.cart-price, .cart-item-total {
  font-weight: 600;
}

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

.remove-item:hover {
  transform: scale(1.1);
}

.cart-summary {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  margin-left: auto;
  margin-top: 2rem;
}

.cart-subtotal, .cart-shipping, .cart-tax {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

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

/* Checkout Page */
.checkout-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

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

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

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

.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);
  font-family: 'Poppins', sans-serif;
}

.form-group textarea {
  resize: vertical;
}

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

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

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

.order-totals {
  margin-bottom: 2rem;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--success-color);
  font-weight: 600;
}

.secure-icon {
  margin-right: 0.75rem;
}

.order-support {
  padding: 1.5rem;
  background-color: #f0f7f4;
  border-radius: var(--border-radius);
}

.order-support h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.order-support p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Success Page */
.success-section {
  padding: 4rem 0;
}

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

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

.success-content h1 {
  margin-bottom: 1.5rem;
}

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

.success-info {
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

.success-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.success-next-steps, .support-info {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.success-next-steps ol {
  counter-reset: steps;
  list-style: none;
}

.success-next-steps li {
  counter-increment: steps;
  display: flex;
  margin-bottom: 1.5rem;
}

.step-icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.support-contact {
  margin-top: 1.5rem;
}

.support-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

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

.recommended-products {
  margin-top: 4rem;
}

.recommended-products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* About Page */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1508615070457-7baeba4003ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.about-hero h1 {
  color: white;
}

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

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

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

.value-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.team-section {
  background-color: #f0f7f4;
  text-align: center;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

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

.team-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-member h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-member p {
  color: var(--text-light);
  padding: 0 1.5rem;
}

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

.certifications {
  text-align: center;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.certification-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1529236183275-4fdcf2bc987e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.contact-hero h1 {
  color: white;
}

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

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

.contact-methods {
  margin: 2rem 0;
}

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

.contact-icon {
  margin-right: 1.5rem;
  color: var(--primary-color);
}

.contact-details h3 {
  margin-bottom: 0.25rem;
}

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

.social-contact {
  margin-top: 2rem;
}

.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: #f0f7f4;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.faq-section {
  background-color: #f0f7f4;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

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

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* History Section */
.history-section {
  background-color: #f0f7f4;
  padding: 3rem 0;
}

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

.history-date {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.history-fact {
  font-style: italic;
}

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

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

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

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

.footer-column ul {
  list-style: none;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--card-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

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

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

/* Notification */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

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

/* Media Queries */
@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-content {
    grid-template-columns: 1fr;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .nav-links {
    margin-top: 1rem;
    width: 100%;
    justify-content: space-around;
  }
  
  .nav-links li {
    margin: 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 2fr 1fr 1fr 0.5fr;
  }
  
  .cart-price-header, .cart-price {
    display: none;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .success-extras {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cart-header, .cart-item {
    grid-template-columns: 2fr 1fr 0.5fr;
  }
  
  .cart-quantity-header, .cart-quantity {
    display: none;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .advantage-item, .product-card {
    padding: 1.5rem;
  }
  
  .tab-header {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1 0 50%;
    text-align: center;
    padding: 0.75rem;
  }
  
  .tab-content {
    padding: 1.5rem;
  }
}
