/* ==========================================================
   EKOKEN NFC - ADVANCED CORPORATE DESIGN SYSTEM & INFRASTRUCTURE
   Tactile Buttons, High-End Card Architecture, Pedestals & Shadows
   ========================================================== */

:root {
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --brand-navy: #0f172a;
  --brand-blue: #1e3a8a;
  --brand-blue-hover: #172554;
  --brand-blue-light: #2563eb;
  --brand-emerald: #059669;
  --brand-emerald-hover: #047857;
  
  --text-title: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-subtle: rgba(226, 232, 240, 0.9);
  --border-active: rgba(30, 58, 138, 0.35);
  
  --shadow-elevation-1: 0 2px 4px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-elevation-2: 0 8px 16px -4px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-elevation-3: 0 20px 30px -8px rgba(15, 23, 42, 0.09), 0 8px 10px -4px rgba(15, 23, 42, 0.03);
  --shadow-pedestal: 0 25px 45px -12px rgba(15, 23, 42, 0.14);

  --radius-card: 24px;
  --radius-btn: 14px;
  --radius-pill: 9999px;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ==========================================================
   BUTTON DESIGN SYSTEM & INFRASTRUCTURE
   ========================================================== */

/* Base Button Properties */
.btn-lux {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 750;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  user-select: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-lux:active {
  transform: scale(0.96) !important;
}

/* Primary Corporate Navy Button */
.btn-primary-lux {
  background: linear-gradient(180deg, #1e3a8a 0%, #172554 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.32), 0 2px 4px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary-lux:hover {
  background: linear-gradient(180deg, #2563eb 0%, #1e3a8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.42), 0 3px 8px rgba(30, 58, 138, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* WhatsApp High-Conversion Action Button */
.btn-whatsapp-lux {
  background: linear-gradient(180deg, #25d366 0%, #16a34a 60%, #15803d 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38), 0 2px 5px rgba(15, 23, 42, 0.1), inset 0 1.5px 1px rgba(255, 255, 255, 0.45);
  font-weight: 750;
}

.btn-whatsapp-lux:hover {
  background: linear-gradient(180deg, #34d399 0%, #22c55e 50%, #16a34a 100%);
  transform: translateY(-2.5px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.52), 0 4px 10px rgba(15, 23, 42, 0.15), inset 0 1.5px 1px rgba(255, 255, 255, 0.6);
}

/* WhatsApp Icon Wrapper with Live Ping Beacon */
.btn-whatsapp-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  font-size: 15px;
}

.btn-whatsapp-ping {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px #ffffff;
  animation: waDotPulse 1.8s infinite;
}

@keyframes waDotPulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
  100% { transform: scale(0.9); opacity: 1; }
}

.btn-whatsapp-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.btn-whatsapp-price {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-divider {
  opacity: 0.45;
  font-weight: 300;
  font-size: 13px;
}

.btn-whatsapp-action {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

/* WhatsApp Secondary / Outline Button */
.btn-whatsapp-outline-lux {
  background: #ffffff;
  color: #065f46;
  border: 1.5px solid #a7f3d0;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-whatsapp-outline-lux:hover {
  background: #ecfdf5;
  border-color: #34d399;
  color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.22), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Subtle Shimmer Sweep on Hover */
.btn-lux::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.btn-lux:hover::after {
  left: 120%;
}

/* Outline / Secondary Button */
.btn-secondary-lux {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--brand-navy);
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-secondary-lux:hover {
  background: #ffffff;
  border-color: #94a3b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.09), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Stepper Control Button (+ / -) */
.btn-stepper {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1.5px solid #cbd5e1;
  color: var(--brand-navy);
  font-weight: 850;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-stepper:hover {
  background: #ffffff;
  border-color: #94a3b8;
  color: #1e3a8a;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.btn-stepper:active {
  transform: scale(0.92) !important;
  background: #e2e8f0;
}

/* Floating WhatsApp Widget with Radar Rings & Tooltip */
.whatsapp-float-lux {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(18, 140, 126, 0.25), inset 0 1.5px 1px rgba(255, 255, 255, 0.45);
  z-index: 999;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-lux:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6), inset 0 2px 1px rgba(255, 255, 255, 0.6);
}

.whatsapp-float-lux .whatsapp-icon-inner {
  font-size: 32px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.whatsapp-float-lux:hover .whatsapp-icon-inner {
  transform: scale(1.1) rotate(6deg);
}

/* Multi-Ring Radar Pulse */
.whatsapp-float-lux .ring-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  pointer-events: none;
}

.whatsapp-float-lux .ring-pulse-1 {
  animation: luxRadar 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.whatsapp-float-lux .ring-pulse-2 {
  animation: luxRadar 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite 1.2s;
}

@keyframes luxRadar {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.85); opacity: 0; }
}

/* Floating WhatsApp Tooltip Pill */
.whatsapp-tooltip-pill {
  position: absolute;
  right: 76px;
  background: #0f172a;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.95;
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.whatsapp-tooltip-pill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #0f172a;
}

.online-indicator-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25d366;
  margin-right: 5px;
}

/* ==========================================================
   BOX & CARD ARCHITECTURE (ÜRÜN KUTUCUKLARI)
   ========================================================== */

/* Ultra-Luxury Product Box Container */
.product-showcase-box {
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, #fcfdfe 70%, #f8fafc 100%);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 30px -4px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.02);
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.product-showcase-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a 0%, #0d9488 50%, #38bdf8 100%);
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.product-showcase-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 28px 56px -12px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(148, 163, 184, 0.35), 0 0 30px rgba(30, 58, 138, 0.08);
  transform: translateY(-8px);
}

.product-showcase-box:hover::before {
  opacity: 1;
}

/* Pedestal Stage for Card (Spotlight Arena) */
.stand-pedestal-stage {
  background: radial-gradient(circle at 50% 28%, #ffffff 0%, #f8fafc 60%, #eef2f6 100%);
  border: 1.5px solid rgba(226, 232, 240, 0.85);
  border-radius: 22px;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  box-shadow: inset 0 2px 10px rgba(15, 23, 42, 0.03), 0 2px 8px rgba(15, 23, 42, 0.02);
}

/* Floating 360 Drag Hint Badge */
.stage-360-hint {
  position: absolute;
  top: 10px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(203, 213, 225, 0.7);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  color: #475569;
  letter-spacing: 0.02em;
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
}

.stage-360-hint i {
  color: #1e3a8a;
  font-size: 10px;
}

/* Soft ambient floor shadow beneath stand */
.stand-pedestal-stage::after {
  content: '';
  position: absolute;
  bottom: 46px;
  width: 170px;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.05) 60%, transparent 85%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* 3D Stand Tilt & Flip Container (Full 360-degree Free Spin) */
.tilt-stand-container {
  perspective: 1200px;
  -webkit-perspective: 1200px;
  width: 290px;
  height: 290px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  position: relative;
  margin: 0 auto;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  z-index: 2;
}

.tilt-stand-container.is-dragging {
  cursor: grabbing !important;
}

.card-flipper-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.35, 1.15);
}

.card-face {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.card-face-front {
  transform: rotateY(0deg) translateZ(7px);
  -webkit-transform: rotateY(0deg) translateZ(7px);
  z-index: 2;
}

.card-face-back {
  transform: rotateY(180deg) translateZ(7px);
  -webkit-transform: rotateY(180deg) translateZ(7px);
  z-index: 1;
}

/* ==========================================================
   3D REALISTIC PLEXIGLASS / ACRYLIC SLAB & POLISHED EDGES
   ========================================================== */

/* Translucent acrylic core volume */
.card-plexi-core {
  position: absolute;
  inset: 6px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 242, 254, 0.45) 50%, rgba(255, 255, 255, 0.65) 100%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 25px rgba(186, 230, 253, 0.45), inset 0 0 16px rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  transform: translateZ(0px);
  -webkit-transform: translateZ(0px);
  pointer-events: none;
  z-index: 1;
}

/* Polished acrylic glass side edges (visible at any side/vertical angle) */
.card-plexi-edge {
  position: absolute;
  pointer-events: none;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  z-index: 3;
}

.card-plexi-edge.edge-left {
  top: 36px;
  bottom: 36px;
  left: 0;
  width: 14px;
  transform-origin: left center;
  transform: rotateY(-90deg) translateX(-7px);
  -webkit-transform: rotateY(-90deg) translateX(-7px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(186, 230, 253, 0.85) 50%, rgba(255, 255, 255, 0.95) 100%);
  border-left: 1.5px solid rgba(255, 255, 255, 0.95);
  border-right: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(186, 230, 253, 0.65);
  border-radius: 3px;
}

.card-plexi-edge.edge-right {
  top: 36px;
  bottom: 36px;
  right: 0;
  width: 14px;
  transform-origin: right center;
  transform: rotateY(90deg) translateX(7px);
  -webkit-transform: rotateY(90deg) translateX(7px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(186, 230, 253, 0.85) 50%, rgba(255, 255, 255, 0.95) 100%);
  border-left: 1.5px solid rgba(255, 255, 255, 0.95);
  border-right: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(186, 230, 253, 0.65);
  border-radius: 3px;
}

.card-plexi-edge.edge-top {
  left: 36px;
  right: 36px;
  top: 0;
  height: 14px;
  transform-origin: center top;
  transform: rotateX(90deg) translateY(-7px);
  -webkit-transform: rotateX(90deg) translateY(-7px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(186, 230, 253, 0.85) 50%, rgba(255, 255, 255, 0.95) 100%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.95);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(186, 230, 253, 0.65);
  border-radius: 3px;
}

.card-plexi-edge.edge-bottom {
  left: 36px;
  right: 36px;
  bottom: 0;
  height: 14px;
  transform-origin: center bottom;
  transform: rotateX(-90deg) translateY(7px);
  -webkit-transform: rotateX(-90deg) translateY(7px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(186, 230, 253, 0.85) 50%, rgba(255, 255, 255, 0.95) 100%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.95);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(186, 230, 253, 0.65);
  border-radius: 3px;
}

.tilt-stand-card-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.16));
  transition: filter 0.35s ease;
  user-select: none;
  pointer-events: none;
}

.tilt-stand-container:hover .tilt-stand-card-img {
  filter: drop-shadow(0 20px 32px rgba(15, 23, 42, 0.24));
}

/* Stand Ambient Floor Shadow */
.stand-ambient-shadow {
  width: 210px;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.04) 60%, transparent 85%);
  border-radius: 50%;
  margin: 4px auto 0;
  pointer-events: none;
}

/* Card Side Toggle Bar (Segmented Control with 360° Spin Button) */
.card-side-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  padding: 3.5px;
  margin-top: 12px;
  z-index: 5;
  box-shadow: inset 0 1.5px 3px rgba(15, 23, 42, 0.05);
}

.btn-side-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  color: #64748b;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-side-toggle:hover {
  color: #0f172a;
}

.btn-side-toggle.active {
  background: #ffffff;
  color: #1e3a8a;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.09), 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* 360-Degree Quick Spin Button */
.btn-spin-360 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #1e3a8a;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px rgba(30, 58, 138, 0.06);
}

.btn-spin-360:hover {
  background: #1e3a8a;
  color: #ffffff;
  border-color: #1e3a8a;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.25);
  transform: translateY(-1px);
}

.btn-spin-360 i {
  font-size: 11px;
  transition: transform 0.6s ease;
}

.btn-spin-360:hover i {
  transform: rotate(180deg);
}

/* ==========================================================
   MODERN HIGH-CONVERSION SATIN AL (PURCHASE) BUTTON SYSTEM
   ========================================================== */

.btn-satinal-lux {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1.5px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  gap: 10px;
  box-shadow: 0 10px 24px -4px rgba(15, 23, 42, 0.22), 0 3px 8px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}

.btn-satinal-lux:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -4px rgba(30, 58, 138, 0.38), 0 0 24px rgba(56, 189, 248, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-satinal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 12px;
  border-radius: 11px;
  flex-shrink: 0;
}

.btn-satinal-price {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.btn-satinal-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  text-align: left;
  line-height: 1.25;
}

.btn-satinal-title {
  font-size: 14.5px;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.btn-satinal-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-satinal-lux:hover .btn-satinal-subtitle {
  color: #bae6fd;
}

.btn-satinal-arrow {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.btn-satinal-lux:hover .btn-satinal-arrow {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #0f172a;
  transform: translateX(3px);
}

/* Special QR Menu Purchase Button with Emerald Highlight */
.btn-satinal-qrmenu {
  background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
  border: 1.5px solid rgba(52, 211, 153, 0.45);
}

.btn-satinal-qrmenu:hover {
  background: linear-gradient(135deg, #047857 0%, #064e3b 100%);
  border-color: #34d399;
  box-shadow: 0 16px 36px -4px rgba(5, 150, 105, 0.38), 0 0 24px rgba(52, 211, 153, 0.25);
}

.btn-satinal-qrmenu:hover .btn-satinal-subtitle {
  color: #a7f3d0;
}

.btn-satinal-qrmenu .btn-satinal-arrow {
  background: rgba(52, 211, 153, 0.2);
  border-color: rgba(52, 211, 153, 0.35);
  color: #a7f3d0;
}

.btn-satinal-qrmenu:hover .btn-satinal-arrow {
  background: #34d399;
  border-color: #34d399;
  color: #064e3b;
}

/* Acrylic Table Base Stand */
.stand-acrylic-holder {
  width: 150px;
  height: 12px;
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: 6px 6px 10px 10px;
  margin: -6px auto 0;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
}

/* Status Pill Badges */
.pill-badge-lux {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}

.pill-popular {
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.pill-bestseller {
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.pill-price-tag {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #0f172a;
  border: 1.5px solid #e2e8f0;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 5px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.05);
}

/* Feature Spec Grid in Cards */
.spec-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0 10px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.spec-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 7px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
  transition: all 0.2s ease;
}

.spec-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  transform: translateY(-1px);
}

.spec-item i {
  color: #1e3a8a;
  font-size: 13px;
}

/* Feature Box in "Nasıl Çalışır" & "Avantajlar" */
.feature-box-lux {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-elevation-1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.feature-box-lux:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-elevation-2);
  transform: translateY(-4px);
}

.number-badge-lux {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
  margin-bottom: 20px;
}

/* ==========================================================
   ORDER MODAL & INPUT DESIGN INFRASTRUCTURE
   ========================================================== */

.modal-backdrop-lux {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-backdrop-lux.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card-lux {
  background: #ffffff;
  border-radius: 28px;
  max-width: 580px;
  width: 100%;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}

.modal-backdrop-lux.active .modal-card-lux {
  transform: scale(1);
}

/* Modal Live Item Preview Card */
.modal-preview-bar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.modal-thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Input Fields */
.input-lux-group {
  position: relative;
}

.input-lux {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 13px 16px 13px 42px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: all 0.25s ease;
}

.input-lux:focus {
  background: #ffffff;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.12);
}

.input-icon-adornment {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
  pointer-events: none;
  transition: color 0.2s;
}

.input-lux:focus ~ .input-icon-adornment {
  color: #1e3a8a;
}

/* FAQ Box */
.faq-box-lux {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-box-lux:hover {
  border-color: #cbd5e1;
}

.faq-btn-lux {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
}

.faq-content-lux {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #475569;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

/* ==========================================================
   PREMIUM JEWEL ICON SYSTEM (LÜKS İKON YUVALARI)
   ========================================================== */

.icon-jewel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1.5px 1px rgba(255, 255, 255, 0.9), 0 6px 16px -2px rgba(15, 23, 42, 0.08);
}

.icon-jewel:hover {
  transform: translateY(-2px) scale(1.05);
}

/* Jewel Themes */
.icon-jewel-blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
}
.icon-jewel-blue:hover {
  box-shadow: 0 10px 22px rgba(30, 58, 138, 0.2), inset 0 1.5px 1px rgba(255, 255, 255, 0.95);
}

.icon-jewel-emerald {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  color: #059669;
}
.icon-jewel-emerald:hover {
  box-shadow: 0 10px 22px rgba(5, 150, 105, 0.22), inset 0 1.5px 1px rgba(255, 255, 255, 0.95);
}

.icon-jewel-amber {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  color: #d97706;
}
.icon-jewel-amber:hover {
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.24), inset 0 1.5px 1px rgba(255, 255, 255, 0.95);
}

.icon-jewel-pink {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border: 1px solid #fbcfe8;
  color: #db2777;
}
.icon-jewel-pink:hover {
  box-shadow: 0 10px 22px rgba(219, 39, 119, 0.22), inset 0 1.5px 1px rgba(255, 255, 255, 0.95);
}

.icon-jewel-orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  color: #ea580c;
}
.icon-jewel-orange:hover {
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.22), inset 0 1.5px 1px rgba(255, 255, 255, 0.95);
}

.icon-jewel-teal {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border: 1px solid #99f6e4;
  color: #0d9488;
}
.icon-jewel-teal:hover {
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.22), inset 0 1.5px 1px rgba(255, 255, 255, 0.95);
}

.icon-jewel-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #334155;
  color: #f8fafc;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25), inset 0 1.5px 1px rgba(255, 255, 255, 0.25);
}

/* Micro Spec Icon Capsule */
.spec-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 4px rgba(15, 23, 42, 0.05);
}

/* Trust Pill Capsule */
.trust-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  transition: all 0.25s ease;
}

.trust-capsule:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* ==========================================================
   DYNAMIC CLOUD SHORT URL & REGISTRATION (SİCİL NO) STYLES
   ========================================================== */

.cloud-url-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cloud-url-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.09);
  transform: translateY(-3px);
}

.cloud-url-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #0d9488, #3b82f6);
}

.sicil-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #0f172a;
  color: #38bdf8;
  padding: 3px 9px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.url-shortlink-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, monospace;
}

/* Modal Flip Toggle Pill */
.modal-side-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 2px 4px;
  margin-top: 4px;
}

.btn-modal-toggle {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-toggle.active {
  background: #ffffff;
  color: #1e3a8a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

