/* XANDEROZ - Premium Crypto Hardware Wallets */
/* Custom Styles - Luxury Fintech Theme */

:root {
  --bg-dark: #050505;
  --surface: #121212;
  --surface-hover: #1A1A1A;
  --gold: #D4AF37;
  --gold-hover: #F3CA3E;
  --text-main: #F5F5F7;
  --text-muted: #8A8A93;
  --border: #222222;
  --border-gold: rgba(212, 175, 55, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-main);
  font-size: 1.5rem;
}

.logo-dot {
  color: var(--gold);
}

/* Buttons */
.btn-primary {
  background-color: var(--gold);
  color: #000;
  padding: 14px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #fff;
  color: #000;
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  padding: 14px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: #000;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-top {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.header-top a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-icon {
  position: relative;
  color: var(--text-main);
  text-decoration: none;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 200;
  padding: 100px 24px 24px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.1em;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 18, 18, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-overline {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 100px 24px;
}

.section-dark {
  background: var(--surface);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-overline {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-dark);
}

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

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

.product-info {
  padding: 20px;
}

.product-tier {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
}

.product-card .btn-primary {
  width: 100%;
  text-align: center;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-gold);
}

.feature-icon {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Trust Section */
.trust-section {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 60px;
  text-align: center;
}

.trust-statement {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Product Detail Page */
.product-detail {
  padding: 140px 24px 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-gallery {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  padding: 20px 0;
}

.product-detail-tier {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-detail-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.product-detail-description {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.product-features-list {
  list-style: none;
  margin-bottom: 32px;
}

.product-features-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-features-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.quantity-selector label {
  color: var(--text-muted);
}

.quantity-selector input {
  width: 80px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-main);
  text-align: center;
  font-size: 1rem;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Cart Page */
.cart-page {
  padding: 140px 24px 80px;
  min-height: 100vh;
}

.cart-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 50px;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 50px;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: var(--surface);
}

.cart-item-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
}

.cart-item-quantity input {
  width: 60px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-main);
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  margin-top: 40px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cart-summary-row.total {
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: none;
  padding-top: 20px;
}

.cart-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

/* Checkout Page */
.checkout-page {
  padding: 140px 24px 80px;
  min-height: 100vh;
}

.checkout-container {
  max-width: 800px;
  margin: 0 auto;
}

.checkout-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.form-section {
  margin-bottom: 32px;
}

.form-section-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.payment-notice {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-notice-icon {
  color: var(--gold);
  font-size: 1.5rem;
}

.order-success {
  text-align: center;
  padding: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.order-success-icon {
  color: var(--gold);
  font-size: 4rem;
  margin-bottom: 24px;
}

.order-success h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.order-success p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Contact Page */
.contact-page {
  padding: 140px 24px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.contact-description {
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-details strong {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-details a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--gold);
}

/* Legal Pages */
.legal-page {
  padding: 140px 24px 80px;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.legal-container .last-updated {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.legal-container p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-container ul {
  color: var(--text-muted);
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-container li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* About Page */
.about-hero {
  text-align: center;
  padding: 160px 24px 80px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
}

.about-hero p {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-column h4 {
  color: var(--text-main);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--text-main);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-statement-footer {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Disclaimer */
.disclaimer {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  padding: 20px;
  margin: 40px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.disclaimer strong {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .cart-header {
    display: none;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  
  .cart-item-info {
    flex-direction: column;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .footer-copyright {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-top {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .nav-container {
    padding: 0 16px;
    height: 64px;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 60px 16px;
  }
  
  .checkout-form {
    padding: 24px;
  }
  
  .trust-section {
    padding: 40px 24px;
  }
}
