/* Base Styles */
:root {
  --primary-color: #4a6fa5;
  --secondary-color: #4c7a91;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-color: #f8f9fa;
  --dark-background: #2c3e50;
  --border-color: #e1e1e1;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  --heading-font: "Playfair Display", serif;
  --body-font: "Raleway", sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Raleway:wght@300;400;500;600;700&display=swap");

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

html {
  scroll-behavior: smooth;
}

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

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

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(--secondary-color);
}

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

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

.hidden {
  display: none;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

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

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

.neon-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--secondary-color);
  z-index: 1;
}

.neon-btn:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
  z-index: -1;
  filter: blur(15px);
  opacity: 0.7;
  transition: var(--transition);
}

.neon-btn:hover:before {
  filter: blur(25px);
  opacity: 1;
}

.neon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--secondary-color);
}

/* Header and Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

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

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.3rem;
}

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

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

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

.cart-icon span {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--light-text);
  border-radius: 50%;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/1.jpg");
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

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

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

.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-item {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px 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-bottom: 3rem;
}

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

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

.cta-container {
  text-align: center;
}

/* About Services Section */
.about-services {
  padding: 5rem 0;
  background-color: #fff;
}

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

.about-services p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: justify;
}

.about-services h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

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

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.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-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.3rem;
}

.product-card .price {
  padding: 0 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.product-card .description {
  padding: 0 1rem;
  font-size: 0.9rem;
  color: #666;
  min-height: 60px;
}

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

.product-actions .btn {
  width: 100%;
}

/* Product Detail Page */
.product-detail {
  padding: 5rem 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.product-detail-info h1 {
  margin-bottom: 0.5rem;
}

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

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

.stars {
  display: flex;
  color: #ffc107;
  margin-right: 0.5rem;
}

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

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

.product-description p {
  margin-bottom: 1.5rem;
}

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

.product-description ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.quantity-btn {
  width: 40px;
  height: 40px;
  background-color: #f1f1f1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:hover {
  background-color: #e1e1e1;
}

.quantity input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: 1px solid #e1e1e1;
  margin: 0 5px;
}

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

.add-to-cart {
  flex: 1;
}

.buy-now {
  flex: 1;
}

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

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

/* Admin Preview Section */
.admin-preview {
  padding: 4rem 0;
  background-color: #fff;
}

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

.admin-frame {
  width: 100%;
  height: 400px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background-color: #f5f5f5;
  box-shadow: var(--box-shadow);
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

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

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.team-member {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  padding-bottom: 1.5rem;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.team-member h3 {
  margin: 1rem 0 0.3rem;
}

.team-member p {
  padding: 0 1rem;
  margin-bottom: 0.5rem;
}

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

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

.team-member .social-icons a {
  color: #666;
  transition: var(--transition);
}

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

/* Achievements Section */
.achievements {
  padding: 5rem 0;
  background-color: #fff;
}

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

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

.achievement-item {
  text-align: center;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/images/5.jpg");
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  text-align: center;
}

.cta-section h2 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
}

/* Page Header */
.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/images/2.jpg");
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

/* About Page */
.about-intro {
  padding: 5rem 0;
  background-color: #fff;
}

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

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

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

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

.about-text ul li {
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--body-font);
}

.form-group textarea {
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

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

.checkbox-group input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

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

/* Map Section */
.map-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

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

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

/* Cart Page */
.cart-section {
  padding: 5rem 0;
  background-color: #fff;
}

.empty-cart-message {
  text-align: center;
  padding: 3rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.empty-cart-message svg {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.empty-cart-message p {
  max-width: 500px;
  margin: 0 auto 2rem;
}

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

.cart-table th {
  text-align: left;
  padding: 1rem;
  background-color: #f5f5f5;
  border-bottom: 2px solid var(--border-color);
}

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

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}

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

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

.cart-item-details {
  margin-left: 1rem;
}

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

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

.cart-quantity button {
  width: 30px;
  height: 30px;
  background-color: #f1f1f1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.cart-quantity button:hover {
  background-color: #e1e1e1;
}

.cart-quantity input {
  width: 40px;
  height: 30px;
  text-align: center;
  border: 1px solid #e1e1e1;
  margin: 0 5px;
}

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

.remove-item:hover {
  color: #b52b38;
}

.cart-summary {
  margin-top: 2rem;
}

.summary-box {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

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

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

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

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

/* Checkout Page */
.checkout-section {
  padding: 5rem 0;
  background-color: #fff;
}

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

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.form-section h2 {
  margin-bottom: 1.5rem;
}

.form-section:last-child {
  border-bottom: none;
}

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

.checkout-summary .summary-box {
  position: sticky;
  top: 100px;
}

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

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 1rem;
}

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

.checkout-item-details h4 {
  margin-bottom: 0.3rem;
}

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

.checkout-item-quantity {
  font-size: 0.9rem;
  color: #666;
}

.summary-totals {
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

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

.success-box {
  text-align: center;
  padding: 3rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  margin-bottom: 4rem;
}

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

.success-box h1 {
  margin-bottom: 1rem;
}

.success-box p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.next-steps {
  padding: 3rem 0;
  background-color: #f9f9f9;
}

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

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

.step-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  position: relative;
  padding-top: 3rem;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-item h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.other-services {
  padding: 5rem 0;
  background-color: #fff;
}

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

/* Recommended Products */
.recommended-products {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

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

/* Footer */
footer {
  background-color: var(--dark-background);
  color: var(--light-text);
  padding: 4rem 0 2rem;
}

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

.footer-column h3 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-column p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

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

.footer-column ul li a {
  color: #ccc;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--light-text);
  padding-left: 5px;
}

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

.footer-column .social-icons a {
  color: #ccc;
}

.footer-column .social-icons a:hover {
  color: var(--light-text);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--light-text);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.cookie-content a {
  color: #ccc;
  font-size: 0.9rem;
}

.cookie-content a:hover {
  color: var(--light-text);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .cart-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 1rem;
  }

  nav ul li {
    margin-left: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .form-actions a,
  .form-actions button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 0.5rem;
  }

  .advantages-grid,
  .team-grid,
  .achievements-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    flex-direction: column;
  }

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

  .product-actions {
    flex-direction: column;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}
