/* ========================================================
   KEYSES.AZ / KEYSES.SHOP — CUSTOM DESIGN SYSTEM
   Inspired by the clean, fast structure of Lisenziyam.az
   Sleek OLED Dark Minimalist + Emerald Accent + Google Auth
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-main: #0a0a0d;
  --bg-card: #131318;
  --bg-elevated: #1a1a22;
  --bg-input: #15151c;
  --border-subtle: #24242e;
  --border-active: #10b981;
  --brand-primary: #10b981;
  --brand-primary-hover: #34d399;
  --brand-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --brand-whatsapp: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --text-main: #f4f4f6;
  --text-muted: #9494a0;
  --text-dim: #646473;
  --font-main: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

/* ========================================================
   1. ANNOUNCEMENT BAR
   ======================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #064e3b 0%, #047857 50%, #064e3b 100%);
  color: #ecfdf5;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

/* ========================================================
   2. HEADER & NAVIGATION
   ======================================================== */
.header {
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  user-select: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-gradient);
  color: #052e16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.1;
}

.brand-name span {
  color: var(--brand-primary);
}

.brand-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.search-box {
  flex: 1;
  max-width: 380px;
  position: relative;
}

@media (max-width: 640px) {
  .search-box {
    display: none;
  }
}

.search-input {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 9px 14px 9px 36px;
  color: var(--text-main);
  font-size: 12.5px;
  outline: none;
  transition: all 0.2s ease;
}

.search-input:focus {
  border-color: var(--border-active);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
  background-color: #1a1a24;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 12px;
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 9px;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  padding: 4px 7px;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-btn.active {
  background: var(--brand-primary);
  color: #052e16;
}

/* Google Sign-in Button & Profile */
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1f1f1f;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-google:hover {
  background: #f1f1f1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.user-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px 4px 4px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.user-profile-pill:hover {
  border-color: var(--brand-primary);
}

.user-avatar-img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.user-pill-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-main);
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========================================================
   3. BANNER SLIDESHOW CAROUSEL
   ======================================================== */
.banner-slider-container {
  margin: 18px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 200px;
}

@media (min-width: 640px) {
  .banner-slider {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .banner-slider {
    height: 330px;
  }
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background-size: cover;
  background-position: center;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  position: relative;
  cursor: pointer;
}

.slide-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 13, 0.95) 0%, rgba(10, 10, 13, 0.75) 50%, rgba(10, 10, 13, 0.4) 100%);
}

.slide-body {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .slide-title {
    font-size: 30px;
  }
}

.slide-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: transform 0.15s ease;
}

.slide-btn:hover {
  transform: translateY(-2px);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(19, 19, 24, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  font-size: 14px;
}

.slider-arrow:hover {
  background: var(--brand-primary);
  color: #052e16;
  border-color: var(--brand-primary);
}

.slider-arrow-left {
  left: 12px;
}

.slider-arrow-right {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dot.active {
  width: 24px;
  background: var(--brand-primary);
}

/* ========================================================
   4. CATEGORIES SCROLL FILTER
   ======================================================== */
.categories-nav-section {
  margin: 14px 0 20px 0;
}

.categories-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  user-select: none;
}

.cat-pill:hover {
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--text-main);
  background: var(--bg-elevated);
}

.cat-pill.active {
  background: var(--brand-gradient);
  border-color: var(--brand-primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

/* ========================================================
   5. PRODUCTS GRID & CARDS
   ======================================================== */
.products-section {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title i {
  color: var(--brand-primary);
}

.products-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
}

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

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(16, 185, 129, 0.1);
}

.product-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0f0f14;
  overflow: hidden;
}

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

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

/* Top-Right Price Badge */
.badge-price-top {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.product-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color 0.15s ease;
}

.product-card:hover .product-title {
  color: var(--brand-primary);
}

.product-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
}

.no-products i {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--border-subtle);
}

.no-products h3 {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 4px;
}

/* ========================================================
   6. PRODUCT DETAILS MODAL
   ======================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.based-modal-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 24px rgba(16, 185, 129, 0.1);
  animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleIn {
  from {
    transform: scale(0.94);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.15s ease;
}

.modal-close:hover {
  background: #272734;
  color: #ffffff;
}

.based-modal-single {
  padding: 20px;
}

@media (min-width: 640px) {
  .based-modal-single {
    padding: 28px;
  }
}

.based-product-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 500px) {
  .based-product-top {
    flex-direction: row;
    align-items: flex-start;
  }
}

.based-img-box {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  background: #0f0f14;
  flex-shrink: 0;
  margin: 0 auto;
}

.based-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.based-stock-tag {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(16, 185, 129, 0.9);
  color: #052e16;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
}

.based-details-box {
  flex: 1;
}

.based-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.based-real-price-line {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.based-old-price {
  text-decoration: line-through;
  color: var(--text-dim);
  font-weight: 700;
}

.based-features-line {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.based-sales-count {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.based-sales-count strong {
  color: #ffffff;
}

/* Duration / Variant Selector */
.based-variants-section {
  margin-top: 14px;
}

.based-variants-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.based-variants-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.based-variant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.based-variant-row:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.based-variant-row.active {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--brand-primary);
}

.based-var-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.based-var-left input[type="radio"] {
  accent-color: var(--brand-primary);
}

.based-var-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.based-var-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.based-var-old {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.based-var-price {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-primary);
}

/* Payment Card Box in Modal */
.based-payment-card-box {
  background: #0e0e13;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 16px;
  font-size: 12px;
}

.payment-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.payment-card-num {
  font-family: monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-primary);
}

.btn-copy-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-copy-card:hover {
  color: #ffffff;
  border-color: var(--text-muted);
}

/* Bottom Action Buttons */
.based-action-row {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.based-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-whatsapp);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.based-btn-primary:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* ========================================================
   7. USER PROFILE MODAL
   ======================================================== */
.profile-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 24px;
  position: relative;
  animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-header-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.profile-avatar-large {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--brand-primary);
  object-fit: cover;
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.profile-email {
  font-size: 12px;
  color: var(--text-muted);
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.profile-stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-primary);
  margin-top: 2px;
}

.profile-keys-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.profile-key-item {
  background: #0f0f14;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.profile-key-code {
  font-family: monospace;
  color: var(--brand-primary);
  font-weight: 700;
}

.btn-logout {
  width: 100%;
  margin-top: 14px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* ========================================================
   8. FOOTER
   ======================================================== */
.footer {
  margin-top: auto;
  background: #08080a;
  border-top: 1px solid var(--border-subtle);
  padding: 36px 0 20px 0;
  color: var(--text-muted);
  font-size: 12.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-dim);
}

/* ========================================================
   9. FLOATING WHATSAPP BUTTON
   ======================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-whatsapp);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  padding: 11px 18px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
  font-size: 18px;
}
