/* Base Styles */
:root {
  --primary-color: #6f42c1;
  --primary-light: #8c68d4;
  --primary-dark: #5e35b1;
  --secondary-color: #ff3d71;
  --accent-color: #00d68f;
  --dark-color: #222b45;
  --gray-dark: #4a4a4a;
  --gray: #8f9bb3;
  --gray-light: #edf1f7;
  --light-color: #f7f9fc;
  --danger-color: #ff3d71;
  --success-color: #00e096;
  --warning-color: #ffaa00;
  --info-color: #0095ff;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Poppins', var(--font-main);
  --border-radius: 8px;
  --box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
  list-style: none;
}

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

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 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

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

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

.btn.secondary:hover {
  background-color: #e83467;
}

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

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

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

.btn.accent:hover {
  background-color: #00c17f;
}

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

.btn.accept:hover {
  background-color: #00c982;
}

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

.btn.customize:hover {
  background-color: #7d89a1;
}

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

.btn.decline:hover {
  background-color: #e83467;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

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

nav a {
  color: var(--gray-light);
  font-weight: 600;
  transition: var(--transition);
}

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

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

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

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

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

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

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

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

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

.feature .icon svg {
  color: white;
}

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

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

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

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

.cta {
  text-align: center;
}

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

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

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

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

.history {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-top: 3rem;
}

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

.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: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.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 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

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

/* Unique Color Scheme Section */
.unique-color-scheme {
  background: linear-gradient(135deg, #5e35b1 0%, #8c68d4 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.unique-color-scheme h2 {
  color: white;
  margin-bottom: 1rem;
}

.unique-color-scheme p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

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

.social-icons svg {
  color: white;
}

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

/* Interesting Facts Section */
.interesting-facts {
  padding: 4rem 0;
  background-color: var(--light-color);
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-policy {
  font-size: 0.875rem;
  opacity: 0.8;
}

.cookie-policy a {
  color: var(--accent-color);
}

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

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

.breadcrumbs a {
  color: var(--gray-dark);
}

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

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

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

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

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

.price-tag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

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

.stat {
  margin-bottom: 0.5rem;
}

.stat .label {
  font-weight: 600;
  color: var(--gray-dark);
}

.stat .value {
  color: var(--primary-color);
}

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

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

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

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

.product-actions {
  margin-top: 3rem;
}

.quantity {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

input[type="number"] {
  width: 60px;
  height: 40px;
  border: 1px solid var(--gray-light);
  text-align: center;
  font-size: 1rem;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

/* Product Additional Information */
.product-additional {
  padding: 4rem 0;
  background-color: var(--light-color);
}

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

.tab-btn {
  padding: 1rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}

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

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

.tab-content {
  display: none;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
  padding: 3rem 0;
}

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

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

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

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

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
}

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

.values {
  padding: 4rem 0;
  background-color: var(--light-color);
}

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

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

.value-icon svg {
  color: white;
}

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

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

.team-intro {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

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

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

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

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

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

.social-links svg {
  color: var(--gray-dark);
}

.social-links a:hover svg {
  color: white;
}

.partnerships {
  padding: 4rem 0;
  background-color: var(--light-color);
  text-align: center;
}

.partnerships h2 {
  margin-bottom: 1rem;
}

.partnerships > p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

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

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

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

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

.cta-section p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.info-items {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

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

.info-item .icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item .icon svg {
  color: white;
}

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

.info-content p {
  margin-bottom: 0.25rem;
}

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

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

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

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

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

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

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

.form-group.full-width {
  grid-column: span 2;
}

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

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

.form-group textarea {
  resize: vertical;
}

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

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

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
}

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

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

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

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

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

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

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

.empty-cart-icon {
  width: 80px;
  height: 80px;
  background-color: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.empty-cart-icon svg {
  color: var(--gray);
}

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

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

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

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

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

.cart-product-name {
  font-weight: 600;
}

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

.cart-remove {
  background: none;
  border: none;
  color: var(--danger-color);
  cursor: pointer;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cart-coupon {
  display: flex;
  gap: 0.5rem;
}

.cart-coupon input {
  padding: 0.75rem;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  font-size: 1rem;
}

.cart-totals {
  max-width: 400px;
  margin-left: auto;
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

.totals-row.total {
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: none;
  padding-top: 1.5rem;
}

.checkout-button {
  text-align: center;
}

.cart-additional-info {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.secure-checkout, .delivery-info, .payment-methods {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.security-icons, .payment-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.security-icons svg, .payment-icons svg {
  color: var(--primary-color);
}

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

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

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

.recommendation-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  padding-bottom: 1.5rem;
}

.recommendation-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.recommendation-item h3 {
  padding: 0 1rem;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.recommendation-item .price {
  margin-bottom: 1.5rem;
}

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

.checkout-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.step {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 2rem;
}

.step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gray-light);
  z-index: 1;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 36px;
  height: 36px;
  background-color: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
  z-index: 2;
}

.step.active .step-number {
  background-color: var(--primary-color);
  color: white;
}

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

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

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

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

.form-help {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.form-actions {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.order-summary {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 100px;
}

.order-items {
  margin-bottom: 2rem;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 1rem;
}

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

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

.order-item-details h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.order-item-price {
  display: flex;
  justify-content: space-between;
  color: var(--gray);
}

.empty-message {
  text-align: center;
  padding: 2rem 0;
  color: var(--gray);
}

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

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

.order-row.total {
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: none;
  padding-top: 1.5rem;
}

.secure-checkout-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.secure-checkout-badge svg {
  color: var(--success-color);
}

.order-guarantees {
  display: grid;
  gap: 1rem;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  color: white;
}

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

.delivery-info {
  text-align: left;
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.steps {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.steps .step {
  display: flex;
  padding: 0;
  position: static;
}

.steps .step::after {
  display: none;
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-icon svg {
  color: white;
}

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

.support-info {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
  text-align: left;
}

.support-options {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.action-buttons {
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .about-columns {
    grid-template-columns: 1fr;
  }
  
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 2fr 1fr 1fr auto;
  }
  
  .price-col {
    display: none;
  }
  
  .cart-product {
    gap: 0.75rem;
  }
  
  .cart-product img {
    width: 60px;
    height: 60px;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .cart-coupon {
    width: 100%;
  }
  
  .cart-coupon input {
    flex-grow: 1;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1rem;
  }
  
  .feature-grid, .stat-box {
    grid-template-columns: 1fr;
  }
  
  .checkout-form {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    grid-column: span 1;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-actions .btn {
    width: 100%;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }
  
  .quantity-col, .subtotal-col {
    display: none;
  }
  
  .cart-product {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-product img {
    margin: 0 auto;
  }
}
