:root {
  --primary-color: #4a6fff;
  --primary-dark: #3a5fef;
  --primary-light: #6a8fff;
  --secondary-color: #6c63ff;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-light: #f5f7ff;
  --background-dark: #eef0f9;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --border-color: #e0e0e0;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --font-primary: 'Roboto', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

button, .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

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

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

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

input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 111, 255, 0.2);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row .form-group {
  flex: 1;
}

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

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

.checkbox-group input {
  width: auto;
  margin-bottom: 0;
}

.checkbox-group label {
  margin-bottom: 0;
}

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

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

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

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
}

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

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

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

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

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Breadcrumb */
.breadcrumb {
  background-color: var(--background-light);
  padding: 1rem 0;
}

.breadcrumb ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
}

.breadcrumb li:after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-light);
}

.breadcrumb li:last-child:after {
  display: none;
}

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

.breadcrumb li:last-child {
  color: var(--text-color);
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

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

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

.neon-btn {
  position: relative;
  background: transparent;
  border: 2px solid white;
  color: white;
  overflow: hidden;
  z-index: 1;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
}

.neon-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.1;
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s;
  z-index: -1;
}

.neon-btn:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4), 0 0 45px rgba(255, 255, 255, 0.2);
}

.neon-btn:hover:before {
  transform: translateX(100%) rotate(45deg);
}

/* Counter Section */
.counter-section {
  padding: 2rem 0;
  background-color: var(--background-light);
}

.counter-box {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.counter-box p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Products Section */
.products {
  padding: 4rem 0;
}

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

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

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.product-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.25rem;
}

.product-card p {
  padding: 0 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  min-height: 3rem;
}

.price {
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

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

.product-actions .btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--background-light);
}

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

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

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

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

.feature svg {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 0.75rem;
}

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

/* Product Details Page */
.product-details {
  padding: 3rem 0;
}

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

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

.product-image img {
  width: 100%;
  height: auto;
}

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

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

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

.stars {
  display: flex;
  color: #ffb900;
}

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

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

.product-description h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

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

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

#product-quantity {
  width: 60px;
  height: 40px;
  border-radius: 0;
  border-left: none;
  border-right: none;
  margin: 0;
  text-align: center;
  -moz-appearance: textfield;
}

#product-quantity::-webkit-outer-spin-button,
#product-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.product-meta > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

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

/* Product Tabs */
.product-tabs {
  padding: 3rem 0;
  background-color: var(--background-light);
}

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

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

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

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

.tab-btn.active:after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
}

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

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

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 0.75rem 1rem;
}

.specs-table td:first-child {
  font-weight: 500;
  width: 30%;
}

.review {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

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

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reviewer {
  font-weight: 500;
}

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

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

.faq-question {
  padding: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
}

/* Related Products */
.related-products {
  padding: 4rem 0;
}

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

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

.cart-section h1 {
  margin-bottom: 2rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
}

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

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

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

.cart-content {
  margin-bottom: 3rem;
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 50px;
  padding: 1rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  font-weight: 500;
}

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

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

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

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

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

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

.cart-item .quantity {
  max-width: 120px;
}

.cart-item-remove button {
  background: none;
  border: none;
  color: var(--error-color);
  cursor: pointer;
  padding: 0.5rem;
}

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

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 2rem;
}

.cart-totals {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  min-width: 300px;
}

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

.cart-grand-total {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

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

.checkout-section h1 {
  margin-bottom: 2rem;
}

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

.checkout-form h2, .checkout-summary h2 {
  margin-bottom: 1.5rem;
}

.checkout-summary {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  align-self: start;
}

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

.checkout-item:last-child {
  margin-bottom: 1.5rem;
}

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

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

.checkout-item-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

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

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

.checkout-totals {
  margin-top: 1.5rem;
}

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

.checkout-grand-total {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

/* Success Page */
.success-section {
  padding: 5rem 0;
  text-align: center;
}

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

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

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

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

.success-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Contact Page */
.contact-section {
  padding: 3rem 0;
}

.contact-section h1 {
  margin-bottom: 2rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-icon {
  color: var(--primary-color);
}

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

.contact-details p {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

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

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

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--background-light);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

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

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

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

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

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 450px;
}

/* About Page */
.about-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.about-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.about-intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-story {
  padding: 5rem 0;
}

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

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

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

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

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

.mission-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-card h2 {
  margin-bottom: 1rem;
}

.about-values {
  padding: 5rem 0;
}

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

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

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

.value-card:hover {
  transform: translateY(-5px);
}

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

.value-card h3 {
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.team-member h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin-bottom: 0;
}

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

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

.team-member .social-links {
  padding: 0 1.5rem 1.5rem;
  justify-content: start;
}

.achievements-section {
  padding: 5rem 0;
}

.achievements-section 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(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

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

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

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

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

/* Recommendations */
.recommendations {
  padding: 4rem 0;
  background-color: var(--background-light);
}

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

/* Footer */
footer {
  background-color: #2a2a2a;
  color: #f5f5f5;
  padding: 4rem 0 2rem;
}

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

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

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
}

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

.footer-links a {
  color: #e0e0e0;
  transition: var(--transition);
}

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

.footer-contact h4 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.footer-contact svg {
  color: var(--primary-light);
}

.footer-contact .social-links {
  margin-top: 1.5rem;
}

.footer-contact .social-links a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

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

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

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

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

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-policy-link {
  margin-left: auto;
}

/* Notification */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

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

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

.notification p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-story-content,
  .product-layout,
  .contact-content,
  .checkout-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cart-summary {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  
  .cart-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  header nav {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  header nav.show {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 2fr 1fr 1fr 50px;
  }
  
  .cart-item-price {
    display: none;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 576px) {
  .cart-header, .cart-item {
    grid-template-columns: 2fr 1fr 50px;
  }
  
  .cart-item-quantity {
    display: none;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .success-buttons, .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }
}
