/* ===== RESET AND BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #D8232A;
  --primary-dark: #B71C1C;
  --primary-light: #EF5350;
  --secondary-color: #FFFFFF;
  --accent-color: #F5F5F5;
  --text-color: #333333;
  --text-light: #777777;
  --border-color: #E0E0E0;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FFC107;
  --info-color: #2196F3;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --font-family: 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Helvetica Neue', Arial, sans-serif;
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

/* ===== HEADER AND NAVIGATION ===== */
header {
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

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

.logo img {
  max-height: 50px;
  border-radius: var(--border-radius);
}

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

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

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

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

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

.cart-link svg {
  margin-right: 0.25rem;
}

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

/* ===== HERO SECTION ===== */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/random/1200x600/?swiss,mountains');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 6rem 0;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-family);
}

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

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

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

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

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

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.full-width {
  width: 100%;
  display: block;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
  padding: 3rem 0;
  text-align: center;
  background-color: var(--accent-color);
}

.advantages h2 {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

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

.advantage-item h3 {
  margin-bottom: 1rem;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

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

.stat .label {
  font-size: 1rem;
  color: var(--text-color);
}

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

/* ===== ABOUT PRODUCTS SECTION ===== */
.about-products {
  padding: 3rem 0;
  background-color: white;
}

.about-products h2 {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.product-description {
  max-width: 900px;
  margin: 0 auto;
}

.quality-assurance, .heritage {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--accent-color);
  border-radius: var(--border-radius);
}

.quality-assurance h3, .heritage h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.certifications {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.certifications span {
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 3rem 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

.products-grid.small {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-image {
  height: 250px;
  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 {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

/* ===== ADMIN PREVIEW SECTION ===== */
.admin-preview {
  padding: 3rem 0;
  background-color: var(--accent-color);
  text-align: center;
}

.admin-preview h2 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.admin-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  background-color: #f0f0f0;
}

/* ===== FOOTER ===== */
footer {
  background-color: #333;
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

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

.footer-logo img {
  max-height: 60px;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  margin-bottom: 1.25rem;
  color: white;
  font-size: 1.25rem;
}

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

.footer-links a {
  color: #ccc;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  margin-right: 0.5rem;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  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 {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #aaa;
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.cookie-policy-link {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
  pointer-events: none;
}

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

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

/* ===== PRODUCT DETAIL PAGE ===== */
.page-header {
  background-color: var(--accent-color);
  padding: 2rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

.product-detail {
  padding-bottom: 3rem;
}

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

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

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

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

.stars {
  color: var(--warning-color);
}

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

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

.product-description h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

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

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

.quantity {
  margin-bottom: 1.5rem;
}

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

.quantity-btn {
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
}

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

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

.product-additional {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.guarantee, .shipping {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.product-tabs {
  margin-bottom: 3rem;
}

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

.tab-btn {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}

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

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

.tab-pane {
  display: none;
}

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

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

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

.nutrition-table th {
  font-weight: 500;
}

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

.review:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

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

.review-info {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.review-author {
  font-weight: 500;
  margin-right: 1rem;
}

.related-products h2 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

/* ===== CART PAGE ===== */
.cart-section {
  padding-bottom: 3rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
}

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

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

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

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

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

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

.cart-table th {
  font-weight: 500;
  color: var(--text-light);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

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

.cart-item-info h3 {
  margin-bottom: 0.25rem;
}

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

.cart-item-quantity {
  display: flex;
  align-items: center;
  max-width: 100px;
}

.cart-item-total {
  font-weight: 500;
}

.cart-item-remove {
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--error-color);
}

.cart-summary {
  background-color: var(--accent-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

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

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

.cart-summary .btn {
  margin-bottom: 1rem;
}

.cart-notes {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.cart-notes p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.recommended-products {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.recommended-products h2 {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
  padding-bottom: 3rem;
}

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

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

.checkout-form-container h2, .order-summary h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-form h3 {
  margin: 1.5rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
  width: calc(50% - 0.5rem);
  display: inline-block;
}

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

.form-group:nth-child(odd) {
  margin-right: 1rem;
}

.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: var(--font-family);
  font-size: 1rem;
}

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

.required {
  color: var(--error-color);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  font-size: 0.875rem;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

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

.order-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

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

.order-item-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.order-item-price {
  font-size: 0.875rem;
  color: var(--text-light);
}

.order-item-quantity {
  font-weight: bold;
}

.order-totals {
  padding: 1.5rem 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

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

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

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

.secure-checkout p {
  margin-bottom: 0;
  font-weight: 500;
}

.order-guarantees {
  margin-top: 1.5rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.need-help {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.need-help h3 {
  margin-bottom: 0.75rem;
}

.need-help p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  padding: 3rem 0;
  text-align: center;
}

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

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

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

.success-details {
  margin-bottom: 2.5rem;
  text-align: left;
}

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

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

.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.next-steps li {
  display: flex;
  gap: 1rem;
}

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

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

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

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

.recommendations {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

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

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 3rem 0;
}

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

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

.about-text h2 {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-mission {
  padding: 3rem 0;
  background-color: var(--accent-color);
}

.mission-content h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

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

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

.team-section {
  padding: 3rem 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

.member-image {
  height: 300px;
  overflow: hidden;
}

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

.member-info {
  padding: 1.5rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.member-social {
  display: flex;
  gap: 0.75rem;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--text-color);
  transition: var(--transition);
}

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

.about-certifications {
  padding: 3rem 0;
  background-color: var(--accent-color);
}

.about-certifications h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

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

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

.visit-us {
  padding: 3rem 0;
}

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

.visit-text h2 {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visit-details {
  margin: 2rem 0;
}

.detail-item {
  margin-bottom: 1.5rem;
}

.detail-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.visit-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 3rem 0;
}

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

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

.contact-info h2 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.info-icon {
  margin-right: 1rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-text h3 {
  margin-bottom: 0.75rem;
}

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

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

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

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

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

.contact-form-container h2 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-section {
  padding: 3rem 0;
  background-color: var(--accent-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-section {
  padding: 3rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

.faq-question {
  padding: 1.25rem;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 500px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .product-content, .visit-content {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .cart-content, .checkout-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-summary, .order-summary {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .advantages-grid, .mission-grid, .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .product-additional {
    flex-direction: column;
    gap: 1rem;
  }
  
  .tab-navigation {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    padding: 0.5rem 1rem;
  }
  
  .cart-table thead {
    display: none;
  }
  
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  
  .cart-table tr {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
  }
  
  .cart-table td {
    border-bottom: none;
    padding: 0.5rem 0;
    text-align: right;
    position: relative;
    padding-left: 50%;
  }
  
  .cart-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-right: 15px;
    white-space: nowrap;
    text-align: left;
    font-weight: 500;
  }
  
  .cart-item-details {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form-group, .form-group:nth-child(odd) {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .product-content {
    gap: 1rem;
  }
  
  .product-tabs {
    margin-top: 2rem;
  }
  
  .tab-btn {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
  
  .cookie-content {
    gap: 0.5rem;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}
