/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-50: #e0f2fe;
  --primary-100: #bae6fd;
  --primary-800: #075985;
  --primary-900: #0c4a6e;
  --primary-700: #0369a1;
  --secondary-400: #fbbf24;
  --secondary-600: #d97706;
  --secondary-700: #b45309;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --border-color: #e5e7eb;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background-color: var(--primary-800);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
  padding: 0.75rem 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  position: relative;
}

nav .container > .header-actions {
  margin-left: auto;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  color: var(--white);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--secondary-400);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-actions button,
.header-actions a {
  padding: 0.4rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  z-index: 101;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.header-actions button:hover,
.header-actions a:hover {
  color: var(--secondary-400);
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-600);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-count.show {
  display: flex;
}

/* Mobile Menu */
.mobile-menu-button {
  display: block;
}

.mobile-menu {
  display: none;
  padding-top: 1rem;
  border-top: 1px solid var(--primary-700);
  margin-top: 1rem;
}

.mobile-menu.show {
  display: block !important;
}

.mobile-menu a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--secondary-400);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mobile-menu-button {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-800);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-900);
}

.btn-secondary {
  background-color: var(--secondary-600);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-700);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-800);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 6rem 0;
  }
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg-primary);
  position: relative;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem;
  }
}

.hero-text {
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-text .badge {
  color: var(--gray-500);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.hero-text h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--primary-800);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
}

.hero-text p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 1.25rem;
  }
}

.hero-image {
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.hero-image img {
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

/* Section Headings */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-800);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Product Card */
.product-card {
  background: var(--bg-primary);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, background-color 0.3s ease;
  position: relative;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.product-card a {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
  pointer-events: auto;
}

.product-card-image a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: var(--secondary-600);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-card-content {
  padding: 1rem;
}

.product-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  display: block;
}

.product-card-title a:hover {
  color: var(--primary-700);
}

.product-card-description {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-card-price .current {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary-800);
}

.product-card-price .original {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

/* USP Section */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.usp-item {
  text-align: center;
}

.usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary-100);
  color: var(--primary-800);
  margin-bottom: 1rem;
}

.usp-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: 0.5rem;
}

.usp-item p {
  color: var(--gray-600);
}

.usp-highlight {
  background-color: var(--primary-50);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 3rem;
  transition: background-color 0.3s ease;
}


@media (min-width: 768px) {
  .usp-highlight {
    padding: 3rem;
  }
}

.usp-highlight-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .usp-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.usp-highlight-list {
  list-style: none;
  margin-top: 1rem;
}

.usp-highlight-list li {
  display: flex;
  align-items: start;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.usp-highlight-list li::before {
  content: '✓';
  color: var(--secondary-600);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-primary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, background-color 0.3s ease;
  border: 1px solid var(--border-color);
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-300);
}

.star.filled {
  color: var(--secondary-600);
  fill: var(--secondary-600);
}

.testimonial-content {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-800);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary-800);
}

.testimonial-verified {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Trust Indicators */
.trust-section {
  background-color: var(--primary-800);
  color: var(--white);
  padding: 4rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary-700);
  color: var(--secondary-400);
  margin-bottom: 1rem;
}

.trust-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: var(--gray-300);
  font-size: 0.875rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--bg-primary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  color: var(--secondary-600);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--gray-600);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.faq-trigger {
  width: 100%;
  padding: 1rem 0;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-800);
}

.faq-item.active .faq-trigger::after {
  content: '-';
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.75;
  padding: 0 0 0 0;
}

.faq-item.active .faq-content {
  padding-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--primary-900);
  color: var(--white);
  padding: 3rem 0;
  transition: background-color 0.3s ease;
}


.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h3,
.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}


.footer-section h3 {
  font-size: 1.25rem;
}

.footer-section p {
  color: var(--gray-300);
  margin-bottom: 1rem;
}


.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s;
}


.footer-section a:hover {
  color: var(--secondary-400);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.footer-newsletter input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--primary-800);
  border: 1px solid var(--primary-700);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-newsletter input::placeholder {
  color: var(--gray-400);
}


.footer-newsletter input:focus {
  outline: none;
  border-color: var(--secondary-600);
}

.footer-bottom {
  border-top: 1px solid var(--primary-800);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}


@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
}


.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.875rem;
}


.footer-payment-icons {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-800);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Product Detail Page */
.product-detail-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery-main {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-gallery-thumb {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-primary);
  z-index: 1;
  pointer-events: auto;
}

.product-gallery-thumb:hover {
  border-color: var(--primary-400);
}

.product-gallery-thumb.active {
  border-color: var(--primary-800);
  box-shadow: 0 0 0 2px var(--primary-800);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail h1 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-800);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .product-detail h1 {
    font-size: 2.5rem;
  }
}

.product-detail-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.product-price-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-800);
}

.product-price-original {
  font-size: 1.25rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.product-badge {
  background-color: var(--secondary-600);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-options {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-options label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.product-variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variant-button {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 2px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.variant-button:hover {
  border-color: var(--primary-400);
}

.variant-button.selected {
  border-color: var(--primary-800);
  background-color: var(--primary-50);
  color: var(--primary-800);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-button {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.quantity-button:hover {
  background: var(--bg-secondary);
}

.quantity-display {
  font-size: 1.125rem;
  font-weight: 600;
  width: 3rem;
  text-align: center;
}

/* Cart Page */
.cart-empty {
  text-align: center;
  padding: 4rem 0;
}

.cart-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cart-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  background: var(--bg-primary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .cart-item {
    flex-direction: row;
  }
}

.cart-item-image {
  width: 100%;
  height: 8rem;
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cart-item-image {
    width: 8rem;
    height: 8rem;
  }
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: 0.5rem;
}

.cart-item-title a {
  color: inherit;
  text-decoration: none;
}

.cart-item-price {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--primary-800);
  margin-bottom: 1rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--red-600);
}

.cart-summary {
  background: var(--bg-primary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.cart-summary h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-800);
  margin-bottom: 1rem;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.cart-summary-total {
  border-top: 2px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary-800);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-800);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}

/* Background Colors */
.bg-white {
  background-color: var(--bg-primary);
}

/* Theme Toggle Button */

.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-primary-800 {
  background-color: var(--primary-800);
}

.bg-primary-900 {
  background-color: var(--primary-900);
}

/* Text Colors */
.text-primary-800 {
  color: var(--primary-800);
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-700 {
  color: var(--gray-700);
}

.text-white {
  color: var(--white);
}

/* Prose/Content Styles */
.prose {
  max-width: 65ch;
  color: var(--text-primary);
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

