/**
 * ANOROT STORE — Core Luxury Black & White Stylesheet
 * Ultra-lightweight, high performance, fully responsive
 */

:root {
  --anorot-bg: #000000;
  --anorot-surface: #0a0a0a;
  --anorot-card: #121212;
  --anorot-card-hover: #181818;
  --anorot-border: #222222;
  --anorot-border-light: #333333;
  --anorot-text: #ffffff;
  --anorot-text-muted: #8e8e93;
  --anorot-accent: #ffffff;
  --anorot-accent-hover: #e5e5e5;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--anorot-bg);
  color: var(--anorot-text);
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

a:hover {
  color: var(--anorot-text-muted);
}

/* Navbar */
.anorot-nav {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--anorot-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

.brand-logo span {
  font-weight: 300;
  color: var(--anorot-text-muted);
}

/* Buttons */
.btn-anorot-primary {
  background-color: #ffffff;
  color: #000000 !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-anorot-primary:hover {
  background-color: #e2e2e2;
  border-color: #e2e2e2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-anorot-outline {
  background-color: transparent;
  color: #ffffff !important;
  border: 1px solid var(--anorot-border-light);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-anorot-outline:hover {
  background-color: #1a1a1a;
  border-color: #ffffff;
}

.btn-anorot-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-anorot-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Cards & Containers */
.anorot-card {
  background-color: var(--anorot-card);
  border: 1px solid var(--anorot-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s ease;
}

.anorot-card:hover {
  background-color: var(--anorot-card-hover);
  border-color: var(--anorot-border-light);
  transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 10%, #1f1f1f 0%, #000000 70%);
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--anorot-text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
}

/* Template Showcase Grid */
.template-card {
  background: var(--anorot-card);
  border: 1px solid var(--anorot-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.template-card:hover {
  border-color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.template-thumb-holder {
  height: 220px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.template-thumb-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.template-card:hover .template-thumb-holder img {
  transform: scale(1.05);
}

/* Pricing Section */
.pricing-card {
  background: var(--anorot-card);
  border: 1px solid var(--anorot-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #ffffff;
  background: linear-gradient(180deg, #181818 0%, #101010 100%);
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
}

/* FAQ Accordion */
.accordion-item {
  background-color: var(--anorot-card) !important;
  border: 1px solid var(--anorot-border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--anorot-card) !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 20px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--anorot-border);
}

.accordion-body {
  color: var(--anorot-text-muted);
  line-height: 1.7;
}

/* Forms */
.anorot-form-control {
  background-color: #121212 !important;
  border: 1px solid var(--anorot-border) !important;
  color: #ffffff !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
}

.anorot-form-control:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1) !important;
}

/* Footer */
.anorot-footer {
  background-color: #050505;
  border-top: 1px solid var(--anorot-border);
  padding: 70px 0 30px;
  color: var(--anorot-text-muted);
}
