/* Geist Font Face Declarations */
@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* CSS Variables */
:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0 0);
  --primary: oklch(0.55 0.18 275);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.96 0 0);
  --muted: oklch(0.96 0 0);
  --muted-foreground: oklch(0.5 0 0);
  --accent: oklch(0.65 0.2 120);
  --accent-foreground: oklch(1 0 0);
  --border: oklch(0.92 0 0);
  --input: oklch(0.92 0 0);
  --ring: oklch(0.55 0.18 275);
  --radius: 0.75rem;
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.min-h-screen {
  min-height: 100vh;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 4rem;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  max-width: none;
  width: 100%;
}

@media (min-width: 768px) {
  .header-container {
    padding: 0 6rem;
  }
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.header-logo svg {
  height: 1.5rem;
  width: 1.5rem;
}

.header-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  padding: 0.5rem 1rem;
  height: 2.25rem;
}

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

.btn-primary:hover {
  background: color-mix(in oklch, var(--primary) 90%, black);
}

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

.btn-outline:hover {
  background: var(--muted);
}

.btn-lg {
  height: 2.5rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.btn-primary:hover .btn-icon {
  transform: translateX(0.25rem);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--background), var(--muted));
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -10;
  overflow: hidden;
}

.hero-background::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 24rem;
  width: 24rem;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  background: color-mix(in oklch, var(--primary) 10%, transparent);
  filter: blur(3rem);
}

.hero-background::after {
  content: '';
  position: absolute;
  right: 25%;
  top: 25%;
  height: 24rem;
  width: 24rem;
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent) 10%, transparent);
  filter: blur(3rem);
}

.hero-content {
  margin: 0 auto;
  max-width: 56rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-style: normal;
  margin: 0 auto;
}

.hero-badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-style: normal;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-gradient {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 50rem;
  margin: 0 auto;
  font-style: normal;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
    max-width: 55rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 3rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

/* Products Section */
.products-section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.region-selector-wrapper {
  width: 100%;
  margin-bottom: 3rem;
}

.region-selector-title {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
}

.region-selector {
  margin: 0 auto;
  max-width: 64rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  justify-items: center;
}

@media (max-width: 1023px) {
  .region-selector {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .region-selector {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 639px) {
  .region-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}

.region-btn {
  height: 6rem;
  width: 100%;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0.1rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: calc(var(--radius) - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.region-btn:hover {
  background: var(--muted);
}

.region-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.region-flag {
  font-size: 1.25rem;
}

.region-name {
  font-size: 0.7rem;
  font-weight: 500;
}

.region-currency {
  font-size: 0.65rem;
  color: var(--muted-foreground);
}

.region-btn.active .region-currency {
  color: rgba(255, 255, 255, 0.8);
}

.products-grid {
  margin: 0 auto;
  max-width: 72rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  position: relative;
}

.product-badge {
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
  z-index: 10;
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.product-card-wrapper:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-card-front {
  position: relative;
  aspect-ratio: 1.6 / 1;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-gradient-0 {
  background: linear-gradient(to bottom right, rgb(52, 211, 153) 0%, rgb(20, 184, 166) 50%, rgb(8, 145, 178) 100%);
}

.product-card-gradient-1 {
  background: linear-gradient(to bottom right, rgb(96, 165, 250), rgb(6, 182, 212), rgb(20, 184, 166));
}

.product-card-gradient-2 {
  background: linear-gradient(to bottom right, rgb(251, 146, 60), rgb(245, 158, 11), rgb(234, 179, 8));
}

.product-card-gradient-3 {
  background: linear-gradient(to bottom right, rgb(244, 114, 182), rgb(239, 68, 68), rgb(251, 146, 60));
}

.product-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.product-card-pattern::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(3rem);
}

.product-card-pattern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(2rem);
}

.product-card-content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-logo {
  position: relative;
  height: 2.5rem;
  width: 2.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.product-card-logo img {
  border-radius: 0.375rem;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-card-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.product-card-amount {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.product-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product-card-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.product-card-currency-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.product-card-info {
  background: white;
  padding: 1rem;
}

.product-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.product-card-price-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.product-card-price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.product-card-buy-btn {
  width: 100%;
  height: 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: calc(var(--radius) - 2px);
  border: none;
  background: var(--primary);
  color: var(--primary-foreground);
  cursor: pointer;
  transition: all 0.2s;
}

.product-card-buy-btn:hover {
  background: color-mix(in oklch, var(--primary) 90%, black);
}

.product-card-features {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.product-card-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.product-card-feature-icon {
  width: 1rem;
  height: 1rem;
  color: rgb(22, 163, 74);
}

/* Features Section */
.features-section {
  border-top: 1px solid var(--border);
  background: color-mix(in oklch, var(--muted) 30%, transparent);
  padding: 5rem 0;
}

.features-grid {
  margin: 0 auto;
  max-width: 80rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.feature-icon {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.feature-icon svg {
  height: 2rem;
  width: 2rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* Wholesale Section */
.wholesale-section {
  border-top: 1px solid var(--border);
  background: color-mix(in oklch, var(--muted) 30%, transparent);
  padding: 5rem 0;
}

.wholesale-benefits {
  margin: 0 auto 3rem;
  max-width: 80rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .wholesale-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wholesale-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wholesale-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.wholesale-benefit-icon {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.wholesale-benefit-icon svg {
  height: 2rem;
  width: 2rem;
}

.wholesale-benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.wholesale-benefit-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.wholesale-info {
  margin: 0 auto;
  max-width: 48rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
}

.wholesale-info-title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.wholesale-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.wholesale-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.wholesale-info-dot {
  margin-top: 0.375rem;
  height: 0.5rem;
  width: 0.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
}

.wholesale-info-item p {
  line-height: 1.75;
}

.wholesale-contact {
  margin-top: 2rem;
  text-align: center;
}

.wholesale-contact-email {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* FAQ Section */
.faq-section {
  border-top: 1px solid var(--border);
  padding: 5rem 0;
}

.faq-container {
  margin: 0 auto;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-bottom: 0;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding-bottom: 1rem;
}

.faq-content p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.faq-support {
  margin-top: 3rem;
  border-radius: var(--radius);
  background: var(--muted);
  padding: 1.5rem;
  text-align: center;
}

.faq-support-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.faq-support-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.faq-support-link {
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.faq-support-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem;
  }
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-logo svg {
  height: 1.25rem;
  width: 1.25rem;
}

.footer-brand-text {
  font-weight: 700;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.footer-column-title {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  list-style: none;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  margin: 1rem;
}

.modal-header {
  margin-bottom: 1rem;
  position: relative;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.modal-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  border: none;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--muted);
  color: var(--foreground);
}

.modal-product-info {
  margin-bottom: 1rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--muted) 50%, transparent);
  padding: 1rem;
}

.modal-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.modal-product-row:last-child {
  margin-bottom: 0;
}

.modal-product-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.modal-product-amount {
  font-weight: 700;
  color: var(--primary);
}

.modal-product-label-secondary {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.modal-product-price {
  font-size: 1.125rem;
  font-weight: 700;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  height: 2.25rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background: transparent;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--ring) 20%, transparent);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.modal-actions {
  display: flex;
  gap: 0.5rem;
}

.modal-actions .btn {
  flex: 1;
}

.modal-features {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-feature-icon {
  width: 1rem;
  height: 1rem;
  color: rgb(22, 163, 74);
}






