/* Base Styles */
:root {
  --primary-color: #0c82a3;
  --primary-dark: #05607a;
  --primary-light: #6bc8e3;
  --secondary-color: #d9a54c;
  --secondary-dark: #bd8f3e;
  --secondary-light: #f3d9a7;
  --accent-color: #f26a4f;
  --dark-color: #24313c;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --success-color: #4caf50;
  --danger-color: #f44336;
  --text-color: #24313c;
  --body-font: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --heading-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--light-color);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

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

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

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

ul {
  list-style: none;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

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

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

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

.btn-text {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  padding: 0.5rem;
}

.btn-text:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('images/1.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 8rem 0;
  position: relative;
}

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

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

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('images/3.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

/* Advantages Section */
.advantages {
  padding: 5rem 0;
  background-color: white;
}

.advantages h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.advantage-card .icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-dark);
}

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

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

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

/* About Products Section */
.about-products {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.about-products h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.certification-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 3rem;
}

.cert-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.cert-text h4 {
  margin-bottom: 0.5rem;
}

/* Comparison Section */
.comparison {
  padding: 5rem 0;
  background-color: white;
}

.comparison h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.table-container {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
}

.comparison-table tr:hover {
  background-color: var(--light-gray);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-style: normal;
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: white;
}

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

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

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

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

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

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

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

.product-info {
  padding: 1.5rem;
}

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

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

.description {
  margin-bottom: 1.5rem;
  color: var(--gray-color);
  font-size: 0.95rem;
}

/* Product Detail Page */
.product-detail {
  padding: 3rem 0;
  background-color: white;
}

.breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.breadcrumbs a {
  color: var(--gray-color);
  text-decoration: none;
}

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

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

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

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

.product-rating span {
  color: var(--gray-color);
}

.product-summary {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.product-details h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.product-details ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item svg {
  color: var(--primary-color);
}

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

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

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--light-gray);
  background: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.minus-btn {
  border-radius: var(--radius) 0 0 var(--radius);
}

.plus-btn {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: 1px solid var(--light-gray);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 1rem;
}

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

/* Product Extended Info */
.product-extended-info {
  padding: 3rem 0;
  background-color: var(--light-color);
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem 2rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.tab-pane {
  display: none;
}

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

.tab-pane h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.detail-group {
  margin-bottom: 2rem;
}

.detail-group h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.detail-group ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.review-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.review-average {
  text-align: center;
  margin-right: 2rem;
}

.average-score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.review-count {
  display: block;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.rating-bars {
  flex: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.rating-label {
  width: 60px;
}

.rating-progress {
  flex: 1;
  height: 10px;
  background-color: var(--light-gray);
  border-radius: 10px;
  margin: 0 1rem;
}

.progress-fill {
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 10px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
}

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

.reviewer-info h4 {
  margin-bottom: 0.25rem;
}

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

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

.review-meta .stars {
  margin: 0;
}

/* Related Products */
.related-products {
  padding: 5rem 0;
  background-color: white;
}

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

/* About Page */
.about-story {
  padding: 5rem 0;
  background-color: white;
}

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

.about-text h2 {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  text-align: center;
}

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

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

.about-achievements h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.achievement-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.achievement-icon {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 2.5rem;
}

.achievement-details h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.team-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gray-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.team-member h3,
.team-member p {
  padding: 0 1.5rem;
}

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

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

.team-member p:nth-of-type(2) {
  font-size: 0.95rem;
  color: var(--gray-color);
  margin-bottom: 1.5rem;
}

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

.about-testimonials {
  background-color: var(--light-color);
}

.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('images/5.jpg') no-repeat center center;
  background-size: cover;
  color: white;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Contact Page */
.contact-section {
  padding: 5rem 0;
  background-color: white;
}

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

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

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

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

.info-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.info-note {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.social-connect {
  margin-top: 3rem;
}

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

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

.social-icons a {
  color: var(--primary-color);
  transition: var(--transition);
}

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

.contact-form h2 {
  margin-top: 0;
  margin-bottom: 2rem;
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-weight: 400;
}

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

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

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: white;
  box-shadow: var(--shadow);
}

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

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

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

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Cart Page */
.cart-section {
  padding: 3rem 0;
  background-color: white;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 0;
}

.empty-cart-icon {
  font-size: 4rem;
  color: var(--light-gray);
}

.cart-content {
  display: flex;
  gap: 3rem;
}

.cart-items {
  flex: 2;
}

.cart-items h2 {
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

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

.cart-item-details h3 {
  margin-bottom: 0.5rem;
}

.item-price {
  color: var(--gray-color);
  font-weight: 600;
}

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

.cart-item-quantity input {
  width: 50px;
  text-align: center;
}

.cart-item-total {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

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

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

.cart-summary {
  flex: 1;
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--radius);
  height: fit-content;
}

.cart-summary h2 {
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  border-bottom: none;
  margin-top: 1rem;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

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

.recommended-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* Checkout Page */
.checkout-section {
  padding: 3rem 0;
  background-color: white;
}

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

.checkout-form-container h2 {
  margin-bottom: 2rem;
}

.order-summary {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--radius);
  height: fit-content;
}

.order-summary h2 {
  margin-bottom: 2rem;
}

.checkout-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.checkout-item-image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.checkout-item-info {
  flex: 1;
}

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

.checkout-item-price {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.checkout-item-total {
  font-weight: 700;
  color: var(--primary-color);
}

.summary-totals {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.order-security {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: white;
  border-radius: var(--radius);
}

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

.guarantee-block,
.help-block {
  margin-top: 2rem;
}

.guarantee-block h3,
.help-block h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.checkout-btn {
  width: 100%;
}

/* Success Page */
.success-section {
  padding: 5rem 0;
  background-color: white;
}

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

.success-icon {
  color: var(--success-color);
  font-size: 5rem;
  margin-bottom: 2rem;
}

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

.next-steps {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: left;
  margin: 2rem 0;
}

.next-steps h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.next-steps ol {
  margin-left: 1.5rem;
}

.next-steps li {
  margin-bottom: 0.5rem;
}

.additional-info {
  margin: 2rem 0;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 1000;
  transition: bottom 0.5s ease;
}

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

.cookie-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn-cookie {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie.accept {
  background-color: var(--success-color);
  color: white;
}

.btn-cookie.customize {
  background-color: var(--light-gray);
  color: var(--dark-color);
}

.btn-cookie.decline {
  background-color: var(--light-gray);
  color: var(--dark-color);
}

.btn-cookie.accept:hover {
  background-color: darken(var(--success-color), 10%);
}

.btn-cookie.customize:hover,
.btn-cookie.decline:hover {
  background-color: darken(var(--light-gray), 10%);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 0 2rem;
}

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

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

.footer-column p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

.footer-column .social-icons {
  margin-top: 1rem;
}

.footer-column .social-icons a {
  color: rgba(255, 255, 255, 0.8);
}

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

address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
}

.reg-number {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Media Queries */
@media (max-width: 992px) {
  .product-content {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-content {
    flex-direction: column;
  }
  
  .checkout-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 99;
  }
  
  nav ul.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cart-item-image {
    width: 100%;
    height: 200px;
  }
  
  .cart-item-quantity {
    margin: 1rem 0;
  }
  
  .success-actions {
    flex-direction: column;
    gap: 1rem;
  }
}
