* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.85rem;
  font-weight: 700;
  color: #60a5fa;
}

.logo-circle { color: #3b82f6; }

.nav-links a {
  color: #ddd;
  text-decoration: none;
  margin: 0 1.4rem;
  font-weight: 500;
}

.nav-links a:hover { color: #60a5fa; }

.nav-actions button {
  background: none;
  border: none;
  color: #ddd;
  font-size: 1.5rem;
  margin-left: 1rem;
  cursor: pointer;
}

/* Trust Banner */
.trust-banner {
  background: linear-gradient(90deg, #166534, #4ade80);
  color: white;
  text-align: center;
  padding: 0.85rem;
  font-weight: 600;
  font-size: 0.98rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
              url('https://picsum.photos/id/1015/2000/1200') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  scroll-snap-align: start;
}

.hero-content {
  max-width: 820px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 4.2rem;
  line-height: 1.05;
  margin-bottom: 1.6rem;
  background: linear-gradient(90deg, #93c5fd, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.3rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 12px;
}

.primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  border: none;
}

.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
}

.secondary {
  background: transparent;
  color: white;
  border: 2px solid #60a5fa;
}

.secondary:hover {
  background: #60a5fa;
  color: #0a0a0a;
}

/* Products */
/* === MAIN GRID CONTAINER === */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 cards per row */
  gap: 25px;
  padding: 30px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* === EVERY PRODUCT CARD MUST LOOK LIKE THIS === */
.product-card {
  background: #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;               /* This is the key for equal height */
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.product-card:hover {
  transform: translateY(-6px);
}

/* Image area - same height for ALL cards */
.product-box {
  height: 170px;              /* Change only if needed */
  background: #0f0f0f;
}

.product-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.product-content {
  flex: 1;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.35rem;
  color: #ffffff;
}

.product-card .tag {
  background: rgba(0, 255, 200, 0.2);
  color: #00ffcc;
  font-size: 0.85rem;
  padding: 4px 11px;
  border-radius: 20px;
  align-self: flex-start;
}

.product-card p {
  margin: 0;
  flex-grow: 1;
  color: #cccccc;
  line-height: 1.45;
}

.price {
  font-size: 1.15rem;
  color: #fff;
  margin: 6px 0;
}

.buy-btn {
  margin-top: auto;
  background: #0066ff;
  color: white;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.buy-btn:hover {
  background: #3388ff;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  opacity: 0.8;
  max-width: 600px;
  margin: -2.5rem auto 3rem;
}

/* Payment Methods */
.payment-section {
  padding: 100px 2rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

.payment-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #e0f2fe;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.payment-card:hover {
  border-color: #3b82f6;
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(59,130,246,0.15);
}

.payment-card i {
  font-size: 2.8rem;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.payment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
}

.payment-card p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid #222;
  padding: 3rem 2rem;
  text-align: center;
  scroll-snap-align: end;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.site-footer p {
  opacity: 0.5;
  font-size: 0.9rem;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #60a5fa;
  font-size: 1.8rem;
  text-decoration: none;
  animation: bounceDown 2s infinite;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll-down-arrow:hover {
  opacity: 1;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* Section Navigation Dots */
.section-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
  cursor: pointer;
  display: block;
}

.section-dot:hover {
  background: #60a5fa;
  border-color: #60a5fa;
}

.section-dot.active {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: scale(1.3);
}

/* Back Link */
.back-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.back-link:hover {
  color: #93c5fd;
}

/* Orders Page */
.orders-page {
  padding: 100px 2rem 60px;
  max-width: 900px;
  margin: 0 auto;
}

.orders-page h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #e0f2fe;
}

.orders-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.summary-card {
  text-align: center;
}

.summary-card .dash-value {
  font-size: 2.4rem;
}

.orders-list-wrapper {
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 2rem;
}

.orders-list-heading {
  font-size: 1.2rem;
  color: #93c5fd;
  margin-bottom: 1.5rem;
}

.orders-list-heading i {
  margin-right: 0.5rem;
}

.no-orders {
  text-align: center;
  opacity: 0.5;
  padding: 2rem 0;
}

.no-orders a {
  color: #60a5fa;
  text-decoration: underline;
}

.order-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.order-date {
  font-size: 0.9rem;
  color: #999;
}

.order-date i {
  margin-right: 0.4rem;
}

.order-total {
  font-size: 1.15rem;
  font-weight: 700;
  color: #4ade80;
}

.order-items {
  list-style: none;
}

.order-items li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #222;
  font-size: 0.95rem;
}

.order-items li:last-child {
  border-bottom: none;
}

.order-item-name {
  color: #e0e0e0;
}

.order-item-detail {
  color: #999;
}

/* Active nav link */
.nav-links a.nav-active {
  color: #60a5fa;
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 4px;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 80px 2rem 40px;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #93c5fd, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Dashboard Styles */
.dashboard-section {
  padding: 40px 2rem 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dash-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
}

.dash-wide {
  grid-column: 1 / -1;
}

.dash-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #222;
}

.dash-card-header h3 {
  font-size: 1.2rem;
  color: #93c5fd;
}

.dash-card-header h3 i {
  margin-right: 8px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #e0f2fe;
  margin-bottom: 0.4rem;
}

.stat-value.positive { color: #4ade80; }

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
}

.wallet-list,
.transaction-list {
  padding: 1rem 1.5rem;
}

.wallet-item,
.tx-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.wallet-item:last-child,
.tx-item:last-child {
  border-bottom: none;
}

.wallet-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin-right: 1rem;
  flex-shrink: 0;
}

.wallet-info {
  flex: 1;
}

.wallet-info strong {
  display: block;
  margin-bottom: 2px;
}

.wallet-info span {
  font-size: 0.9rem;
  opacity: 0.6;
}

.wallet-value {
  font-weight: 600;
  color: #e0f2fe;
  font-size: 1.1rem;
}

.tx-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.tx-icon.receive { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.tx-icon.send { background: rgba(248, 113, 113, 0.15); color: #f87171; }
.tx-icon.swap { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }

.tx-info {
  flex: 1;
}

.tx-info strong {
  display: block;
  margin-bottom: 2px;
}

.tx-info span {
  font-size: 0.85rem;
  opacity: 0.6;
}

.tx-amount {
  font-weight: 600;
  font-size: 0.95rem;
}

.tx-amount.positive { color: #4ade80; }
.tx-amount.negative { color: #f87171; }

/* Chains Styles */
.chains-section {
  padding: 40px 2rem 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.chains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.chain-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s;
  text-align: center;
}

.chain-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.chain-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.2rem;
}

.chain-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.chain-tag {
  display: inline-block;
  background: #1e3a8a;
  color: #93c5fd;
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.chain-card p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.chain-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.chain-stats i {
  margin-right: 4px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: color 0.3s;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.nav-active {
  color: #60a5fa;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #e0e0e0;
  font-size: 2rem;
  cursor: pointer;
}

/* Cart Badge */
.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ef4444;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
}

.cart-badge.show {
  opacity: 1;
  transform: scale(1);
}

/* Cart Sidebar */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100%;
  background: #111;
  border-left: 1px solid #222;
  z-index: 3001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.cart-overlay.open + .cart-sidebar,
.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #222;
}

.cart-header h2 {
  font-size: 1.4rem;
  color: #e0f2fe;
}

.cart-header h2 i {
  margin-right: 8px;
  color: #60a5fa;
}

.cart-close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-close-btn:hover {
  color: white;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  opacity: 0.5;
}

.cart-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info strong {
  display: block;
  font-size: 1rem;
  color: #e0f2fe;
  margin-bottom: 2px;
}

.cart-item-info .cart-item-tag {
  font-size: 0.8rem;
  color: #93c5fd;
  opacity: 0.7;
}

.cart-item-price {
  font-weight: 600;
  color: #60a5fa;
  white-space: nowrap;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 6px;
}

.cart-item-qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #ddd;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cart-item-qty button:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.cart-item-qty span {
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #f87171;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #222;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.cart-total strong {
  color: #e0f2fe;
  font-size: 1.3rem;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Add-to-cart animation */
@keyframes addPulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

.buy-btn.added {
  background: #166534;
  animation: addPulse 0.3s ease;
}

/* Checkout Page */
.checkout-section {
  padding: 40px 2rem 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.checkout-form-card,
.checkout-summary-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 2rem;
}

.checkout-form-card h3,
.checkout-summary-card h3 {
  font-size: 1.25rem;
  color: #93c5fd;
  margin-bottom: 1.5rem;
}

.checkout-form-card h3 i,
.checkout-summary-card h3 i {
  margin-right: 8px;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #bbb;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.summary-items {
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item-name {
  font-size: 0.95rem;
}

.summary-item-name span {
  opacity: 0.5;
  font-size: 0.85rem;
}

.summary-item-price {
  font-weight: 600;
  color: #60a5fa;
}

.summary-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 1rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e0f2fe;
}

.place-order-btn {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.empty-checkout {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-checkout i {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.empty-checkout h3 {
  font-size: 1.5rem;
  color: #e0f2fe;
  margin-bottom: 0.5rem;
}

.empty-checkout p {
  opacity: 0.6;
  margin-bottom: 2rem;
}

.empty-checkout a {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.empty-checkout a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Order confirmation modal */
.order-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.order-confirm-box {
  background: #111;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 440px;
  width: 100%;
}

.order-confirm-box .confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.order-confirm-box h2 {
  font-size: 1.6rem;
  color: #e0f2fe;
  margin-bottom: 0.5rem;
}

.order-confirm-box p {
  opacity: 0.7;
  margin-bottom: 2rem;
}

.order-confirm-box a {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.order-confirm-box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .nav-links { display: none; }
  .page-header h1 { font-size: 2.4rem; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .payment-grid-duo { grid-template-columns: 1fr; }
  .section-nav { display: none; }
  .products-section, .payment-section { min-height: auto; }
}

/* PayPal Featured Card */
.payment-grid-single {
  display: flex;
  justify-content: center;
}

.payment-grid-single .paypal-featured,
.payment-grid-duo .paypal-featured {
  max-width: 400px;
  width: 100%;
  padding: 3rem 2rem;
  border-color: #0070ba;
  background: linear-gradient(135deg, #111 0%, #0d1b2a 100%);
}

.payment-grid-single .paypal-featured i,
.payment-grid-duo .paypal-featured i {
  font-size: 3.5rem;
  color: #0070ba;
}

.payment-grid-single .paypal-featured h3,
.payment-grid-duo .paypal-featured h3 {
  font-size: 1.5rem;
}

.payment-grid-single .paypal-featured:hover,
.payment-grid-duo .paypal-featured:hover {
  border-color: #00a0e3;
  box-shadow: 0 15px 30px rgba(0, 112, 186, 0.25);
}

/* PayPal Info Box */
.paypal-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 112, 186, 0.1);
  border: 1px solid rgba(0, 112, 186, 0.25);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.paypal-info i {
  font-size: 2rem;
  color: #0070ba;
  flex-shrink: 0;
}

.paypal-info p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0;
}

/* PayPal Button */
.paypal-btn {
  background: linear-gradient(90deg, #0070ba, #00a0e3) !important;
}

.paypal-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 112, 186, 0.4) !important;
}

/* Payment Badge */
.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem;
  background: rgba(0, 112, 186, 0.1);
  border: 1px solid rgba(0, 112, 186, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #00a0e3;
  font-weight: 500;
}

.payment-badge i {
  font-size: 1.1rem;
}

/* Payment Grid Duo */
.payment-grid-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Stripe Featured Card */
.stripe-featured {
  max-width: 400px;
  width: 100%;
  padding: 3rem 2rem;
  border-color: #635bff;
  background: linear-gradient(135deg, #111 0%, #1a1230 100%);
}

.stripe-featured i {
  font-size: 3.5rem;
  color: #635bff;
}

.stripe-featured h3 {
  font-size: 1.5rem;
}

.stripe-featured:hover {
  border-color: #7a73ff;
  box-shadow: 0 15px 30px rgba(99, 91, 255, 0.25);
}

/* Payment Tabs */
.payment-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.payment-tab {
  flex: 1;
  padding: 12px 16px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 10px;
  color: #aaa;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.payment-tab:hover {
  border-color: #555;
  color: #ddd;
}

.payment-tab.active[data-method="paypal"] {
  border-color: #0070ba;
  color: #0070ba;
  background: rgba(0, 112, 186, 0.1);
}

.payment-tab.active[data-method="stripe"] {
  border-color: #635bff;
  color: #635bff;
  background: rgba(99, 91, 255, 0.1);
}

.payment-tab i {
  font-size: 1.2rem;
}

/* Checkout Method Forms */
.checkout-method-form {
  display: none;
}

.checkout-method-form.active {
  display: block;
}

/* Stripe Info Box */
.stripe-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(99, 91, 255, 0.1);
  border: 1px solid rgba(99, 91, 255, 0.25);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.stripe-info i {
  font-size: 2rem;
  color: #635bff;
  flex-shrink: 0;
}

.stripe-info p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0;
}

/* Stripe Button */
.stripe-btn {
  background: linear-gradient(90deg, #635bff, #7a73ff) !important;
}

.stripe-btn:hover {
  box-shadow: 0 10px 25px rgba(99, 91, 255, 0.4) !important;
}
