/* ============================================
   LOYAL NTC Gold Tea — Premium Stylesheet
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a68a3a;
  --white: #f5f5f0;
  --gray: #888;
  --gray-light: #ccc;
  --green: #25d366;
  --green-dark: #1da851;
  --red: #e74c3c;
  --orange: #f39c12;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.4);
  color: var(--black);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-tree {
  font-size: 1.6rem;
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-loyal {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.logo-ntc {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  color: var(--gray-light);
  letter-spacing: 6px;
  text-align: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-shop {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(37, 211, 102, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-desc {
  color: var(--gray-light);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-image-frame img {
  width: 100%;
  max-width: 420px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.badge-icon {
  font-size: 1.2rem;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-desc {
  color: var(--gray);
  margin-top: 12px;
  font-size: 0.95rem;
}

/* ---- Features ---- */
.features {
  padding: 100px 0;
  background: var(--black-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- Story ---- */
.story {
  padding: 100px 0;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: var(--shadow);
}

.story-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--gray-light);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 24px 0 32px;
}

/* ---- Video ---- */
.video-section {
  padding: 100px 0;
  background: var(--black-light);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow);
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: var(--black);
}

/* ---- Showcase ---- */
.showcase {
  padding: 100px 0;
}

.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-list {
  list-style: none;
  margin: 24px 0 32px;
}

.showcase-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-light);
  font-size: 0.95rem;
}

.showcase-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.showcase-price {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.price-label {
  color: var(--gray);
  font-size: 0.9rem;
}

.showcase-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showcase-img {
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.15);
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.cta-container h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-container p {
  color: var(--gray-light);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--black-light);
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--gray);
  font-style: italic;
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-links a,
.footer-contact p,
.footer-legal p {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ---- About Page ---- */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
    var(--black);
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-subtitle {
  color: var(--gray-light);
  font-size: 1.1rem;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.values {
  padding: 80px 0;
  background: var(--black-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.value-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.nutrition {
  padding: 80px 0;
}

.nutrition-table-wrapper {
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
}

.nutrition-table th,
.nutrition-table td {
  padding: 14px 24px;
  text-align: left;
}

.nutrition-table thead {
  background: rgba(201, 168, 76, 0.15);
}

.nutrition-table th {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1rem;
}

.nutrition-table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nutrition-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.nutrition-table td:first-child {
  color: var(--gray-light);
}

.nutrition-table td:last-child {
  color: var(--gold);
  font-weight: 600;
  text-align: right;
}

.nutrition-note {
  text-align: center;
  color: var(--gray);
  margin-top: 20px;
  font-size: 0.9rem;
}

.contact-section {
  padding: 80px 0;
  background: var(--black-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-details {
  margin: 32px 0;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  color: var(--gold);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-item p {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.contact-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ============================================
   ORDER MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform var(--transition);
  box-shadow: var(--shadow), 0 0 80px rgba(201, 168, 76, 0.08);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-light);
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.modal-close:hover {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.modal-phone a {
  color: var(--gold-light);
  font-weight: 600;
}

.phone-icon {
  font-size: 1.1rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.required {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

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

.error-msg {
  display: block;
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 0;
}

.error-msg:not(:empty) {
  min-height: 18px;
}

/* ---- Payment ---- */
.payment-fieldset {
  border: none;
  margin-bottom: 16px;
}

.payment-fieldset legend {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 12px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.payment-option:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.payment-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.payment-option input[type="radio"] {
  accent-color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.payment-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.payment-desc {
  font-size: 0.8rem;
  color: var(--gray);
}

.payment-message {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

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

.message-cod {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #6ee7a0;
  padding: 14px 16px;
  border-radius: var(--radius);
}

.message-online {
  background: rgba(243, 156, 18, 0.1);
  border: 1px solid rgba(243, 156, 18, 0.25);
  color: #f5c878;
  padding: 14px 16px;
  border-radius: var(--radius);
}

.message-online p {
  margin-bottom: 12px;
}

.btn-switch-cod {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-switch-cod:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.whatsapp-icon {
  font-size: 1.2rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-container,
  .story-container,
  .showcase-container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-badge {
    bottom: 8px;
    right: 8px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .showcase-images {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .modal {
    padding: 28px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .btn-lg {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Scrollbar for modal */
.modal::-webkit-scrollbar {
  width: 6px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 3px;
}

/* Body scroll lock when modal open */
body.modal-open {
  overflow: hidden;
}

/* ---- Success Modal ---- */
.modal-success {
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #6ee7a0;
}

.modal-success h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.success-note {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 16px 0;
}

.order-info-note {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.5;
}

.whatsapp-option-box {
  margin: 20px 0 12px;
  padding: 18px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius);
  text-align: left;
}

.whatsapp-option-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.whatsapp-option-desc {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.whatsapp-option-desc strong {
  color: #6ee7a0;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.modal-success .btn {
  margin-top: 10px;
}

#successStatus {
  margin-bottom: 8px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.hidden {
  display: none !important;
}

/* ============================================
   ADMIN PAGE
   ============================================ */
.admin-body {
  min-height: 100vh;
  background: var(--black);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-login-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.admin-login-card h1 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 8px;
}

.admin-login-sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.admin-back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gray);
  font-size: 0.85rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
  background: var(--black-light);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.admin-header h1 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.6rem;
}

.admin-header-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.admin-notice {
  display: none;
  margin: 20px 24px 0;
  padding: 14px 18px;
  background: rgba(243, 156, 18, 0.1);
  border: 1px solid rgba(243, 156, 18, 0.25);
  border-radius: var(--radius);
  color: #f5c878;
  font-size: 0.9rem;
}

.admin-notice code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.admin-table-wrapper {
  margin: 24px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  font-family: var(--font-serif);
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray-light);
  vertical-align: top;
}

.admin-table tbody tr:hover {
  background: rgba(201, 168, 76, 0.04);
}

.admin-address {
  max-width: 220px;
  word-break: break-word;
}

.admin-empty {
  text-align: center;
  color: var(--gray);
  padding: 40px 20px !important;
}

.badge-payment,
.badge-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-payment {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.badge-status {
  background: rgba(37, 211, 102, 0.12);
  color: #6ee7a0;
}

.admin-footer-note {
  padding: 24px;
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}

.admin-footer-note p {
  margin-bottom: 6px;
}

.admin-footer-note code {
  color: var(--gold);
}

@media (max-width: 768px) {
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-table-wrapper {
    margin: 16px;
  }
}
