:root {
  --bg-primary: #050505;
  --bg-secondary: #0f0f0f;
  --bg-tertiary: #171717;
  --bg-glass: rgba(10, 10, 10, 0.7);
  
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  
  --accent: #3b82f6;
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --accent-glow: rgba(59, 130, 246, 0.5);
  
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  --danger: #ef4444;
  --success: #10b981;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 80px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

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

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

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

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

.text-secondary {
  color: var(--text-secondary);
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.grid {
  display: grid;
}

.lg\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

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

.flex-grow {
  flex-grow: 1;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-3 {
  gap: 0.75rem;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.rounded-full {
  border-radius: 9999px;
}

.bg-bg-tertiary {
  background-color: var(--bg-tertiary);
}

.hover\:bg-accent:hover {
  background-color: var(--accent);
}

.hover\:text-white:hover {
  color: white;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
}

.text-secondary {
  color: var(--text-secondary);
}

.hover\:text-danger:hover {
  color: var(--danger);
}

.transition {
  transition: all 0.2s;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}

.border {
  border: 1px solid;
}

.border-border {
  border-color: var(--border);
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.border-t {
  border-top: 1px solid;
}

.pt-4 {
  padding-top: 1rem;
}

.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-accent {
  color: var(--accent);
}

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

.btn-outline:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--border-hover);
}

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

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

.absolute {
  position: absolute;
}

.top-4 {
  top: 1rem;
}

.right-4 {
  right: 1rem;
}

.hover\:text-white:hover {
  color: white;
}

.max-w-md {
  max-width: 28rem;
}

.w-full {
  width: 100%;
}

.relative {
  position: relative;
}

.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}

.bg-success\/10 {
  background-color: rgba(16, 185, 129, 0.1);
}

.rounded-full {
  border-radius: 9999px;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

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

.text-success {
  color: var(--success);
}

.size-48 {
  width: 12rem;
  height: 12rem;
}

.bg-success\/10 {
  background-color: rgba(16, 185, 129, 0.1);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

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

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

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

.gap-3 {
  gap: 0.75rem;
}

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

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

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.z-50 {
  z-index: 50;
}

.p-4 {
  padding: 1rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-medium {
  font-weight: 500;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; line-height: 1.2; }
.text-4xl { font-size: 2.5rem; line-height: 1.1; }
.text-5xl { font-size: 3.5rem; line-height: 1.1; }

.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }

.text-gradient {
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--border-hover);
}

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

.btn-danger:hover {
  background-color: var(--danger-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-full {
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-new {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Header */
header {
  height: var(--header-height);
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.header-search {
  position: relative;
  margin: 0 16px;
}

.header-search input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px 10px 40px;
  color: var(--text-primary);
  font-size: 0.9rem;
  width: 240px;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.header-search input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  width: 280px;
}

.header-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.cart-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-secondary);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  border-radius: 50%;
}

.hero h1 {
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(to bottom right, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Product Card */
.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: var(--border-hover);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-image-wrapper {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-tertiary));
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Cart item */
.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  align-items: center;
  transition: all 0.2s ease;
}

.cart-item:hover {
  border-color: var(--border-hover);
  background-color: var(--bg-tertiary);
}

.cart-item .font-bold.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.cart-item .text-secondary.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Equal cover image sizing for all product images */
.cover-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cover-image-square {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Features Grid */
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
  background: rgba(59, 130, 246, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* Homepage Features */
.homepage-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  max-width: 56rem;
  margin: 64px auto 0;
}

.homepage-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.homepage-feature-icon {
  color: var(--accent);
}

.homepage-feature-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* About Page Specifics */
.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.05);
}

.offering-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}

.offering-card:hover {
  border-color: var(--border-hover);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
}

/* Legal Pages Styling */
.legal-content {
  position: relative;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-content .bg-secondary {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-content section:first-child h2,
.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.legal-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-content ul li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.legal-content a:hover {
  border-color: var(--accent);
  opacity: 0.8;
}

/* FAQ Styling */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item[open] {
  border-color: var(--accent-glow);
  background: rgba(59, 130, 246, 0.05);
}

.faq-summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-content {
  border-top-color: rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  margin-top: auto;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 60px;
}

.footer-col h4 {
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Cart & Checkout */
.checkout-grid {
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.summary-card {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 20px 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.pagination a.active {
  background-color: var(--accent);
  color: white;
}

.pagination .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination .ellipsis {
  width: auto;
  padding: 0 8px;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .checkout-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; } /* Mobile menu logic would go here */
  .header-search { display: none; } /* Hide search on mobile for now or move it */
  .header-content .flex.gap-6 { gap: 16px; }
  .cart-item { flex-direction: column; align-items: flex-start; }
  .cart-item img { width: 100%; height: 150px; }
  .cart-item > div { width: 100%; }
  .cart-item .flex.items-center.gap-4 { justify-content: space-between; width: 100%; margin-top: 12px; }
  
  .legal-content .bg-secondary { padding: 24px; }
  .legal-content h1 { font-size: 2rem; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { border-left: 4px solid var(--success); }

/* Contact Information */
.contact-info-card {
  background: var(--bg-tertiary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
}

.contact-info-card h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon-wrapper {
  background: rgba(59, 130, 246, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper i {
  color: var(--accent);
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-details p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .contact-item {
    gap: 0.75rem;
  }
  
  .contact-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  /* Removed unused social media styles as the Follow Us section was removed */
}

/* Payment Popup */
#payment-popup {
  animation: fadeIn 0.3s ease-out;
}

#payment-popup .btn {
  transition: all 0.2s ease;
}

#payment-popup .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

#payment-popup > div {
  animation: slideUp 0.3s ease-out;
}

/* Payment Options */
.payment-option {
  transition: all 0.2s ease;
  border-radius: var(--radius-md);
}

.payment-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-option > div {
  transition: all 0.2s ease;
}

.payment-option.active > div {
  border-color: var(--accent) !important;
}

.payment-option:not(.active) > div {
  border-color: transparent;
}

.payment-option:hover:not(.active) > div {
  border-color: var(--border);
}

.payment-form {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.payment-form.hidden {
  display: none;
}

.payment-form input,
.payment-form select {
  margin-bottom: 1rem;
}

.payment-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.payment-form-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

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

.h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Text Colors */
.text-danger {
  color: var(--danger);
}

.border-danger {
  border-color: var(--danger) !important;
}

.border-danger:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}
