/* ============================
   CSS VARIABLES & RESET
============================ */
:root {
  --primary:     #1a56db;
  --primary-dk:  #1240b0;
  --primary-lt:  #e8f0fe;
  --accent:      #f59e0b;
  --success:     #10b981;
  --danger:      #ef4444;
  --text-main:   #0f172a;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
  --bg-body:     #f1f5f9;
  --bg-card:     #ffffff;
  --bg-soft:     #f8fafc;
  --border:      #e2e8f0;
  --border-dk:   #cbd5e1;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --font-head:   'Sora', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --nav-h:       64px;
  --transition:  all .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 600; line-height: 1.3; }

a { color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dk); }

img { max-width: 100%; height: auto; }

/* ============================
   NAVBAR
============================ */
.navbar {
  background: #0f172a;
  height: var(--nav-h);
  padding: 0 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand .brand-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.nav-link {
  color: rgba(255,255,255,.75) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: .4rem .75rem !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.1);
}

/* Mobile collapse fix */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #0f172a;
    padding: 12px 16px 16px;
    margin: 0 -1rem;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  .navbar-collapse .navbar-nav { gap: 2px; }
  .navbar-collapse .search-form {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .navbar-collapse .search-form input { width: 100%; flex: 1; }
}

.navbar .search-form input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: .875rem;
  width: 220px;
  transition: var(--transition);
}
.navbar .search-form input::placeholder { color: rgba(255,255,255,.5); }
.navbar .search-form input:focus {
  background: rgba(255,255,255,.18);
  outline: none;
  border-color: rgba(255,255,255,.4);
  width: 260px;
}
.navbar .search-form button {
  background: var(--primary);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 7px 14px;
  cursor: pointer;
  transition: var(--transition);
}
.navbar .search-form button:hover { background: var(--primary-dk); }

/* ============================
   LAYOUT
============================ */
.page-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

/* ============================
   BREADCRUMB
============================ */
.breadcrumb-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.breadcrumb {
  margin: 0;
  font-size: .82rem;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
}
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }
.breadcrumb-item a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-main); font-weight: 500; overflow: hidden; text-overflow: ellipsis; }

/* ============================
   CARD BASE
============================ */
.card-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 22px;
  transition: var(--transition);
}
.card-block:hover { box-shadow: var(--shadow-md); }

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
}
.section-title .icon-badge {
  width: 32px; height: 32px;
  background: var(--primary-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: .85rem;
  flex-shrink: 0;
}

/* ============================
   PRODUCT HEADER
============================ */
.product-header-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px 20px;
  margin-bottom: 22px;
}

.product-title {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 10px;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.author-avatar-sm {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}
.author-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.author-link:hover { text-decoration: underline; }

/* Price Badge in Header */
.price-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1a56db, #1240b0);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(26,86,219,.35);
}

/* ============================
   PREVIEW IMAGE
============================ */
.preview-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f8fafc;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
}
.preview-wrap.transparent-bg {
  background: repeating-conic-gradient(#d4d4d4 0% 25%, #fff 0% 50%) 0 0 / 22px 22px;
}
.preview-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

/* ============================
   SHARE BUTTONS
============================ */
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  transform: translateY(0);
}
.share-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.share-fb   { background: #1877f2; }
.share-vk   { background: #0077ff; }
.share-pin  { background: #e60023; }
.share-li   { background: #0a66c2; }
.share-tg   { background: #26a5e4; }
.share-wa   { background: #25d366; }

/* ============================
   DETAIL TABLE
============================ */
.detail-table {
  width: 100%;
  border-collapse: collapse;
}
.detail-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border);
}
.detail-table td {
  padding: 10px 14px;
  font-size: .875rem;
  vertical-align: top;
}
.detail-table td:first-child {
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  width: 38%;
  background: var(--bg-soft);
  border-right: 1px solid var(--border);
}
.detail-table td:last-child { color: var(--text-muted); }
.detail-table a { color: var(--primary); text-decoration: none; }
.detail-table a:hover { text-decoration: underline; }

/* ============================
   COLOR PALETTE
============================ */
.palette-wrap { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.color-box {
  width: 64px; height: 64px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  transition: var(--transition);
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  user-select: none;
}
.color-box:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.22); }

/* ============================
   TAGS
============================ */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.tag-pill {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.tag-pill:hover {
  background: var(--primary-lt);
  border-color: var(--primary);
  color: var(--primary);
}
.tags-wrap.collapsed .tag-pill:nth-child(n+11) { display: none; }

/* ============================
   SCREENSHOTS
============================ */
.screenshot-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--border); cursor: pointer; }
.screenshot-item img { width: 100%; height: 200px; object-fit: cover; transition: transform .3s ease; display: block; }
.screenshot-item:hover img { transform: scale(1.04); }
.screenshot-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.screenshot-item:hover .screenshot-overlay { opacity: 1; }
.screenshot-overlay i { color: #fff; font-size: 1.6rem; }

/* ============================
   DEMO
============================ */
.demo-outer {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1e293b;
  padding: 10px 18px;
  gap: 12px;
}
.demo-bar .demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 12px; height: 12px; border-radius: 50%; }
.demo-dots .d1 { background: #ef4444; }
.demo-dots .d2 { background: #f59e0b; }
.demo-dots .d3 { background: #22c55e; }
.demo-timer {
  font-family: var(--font-head);
  color: #fff;
  font-size: .82rem;
  background: rgba(255,255,255,.1);
  padding: 4px 12px;
  border-radius: 6px;
}
.demo-fullscreen {
  background: var(--primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
}
.demo-fullscreen:hover { background: var(--primary-dk); color: #fff; }
.demo-iframe { width: 100%; height: 520px; border: none; display: block; background: #f0f0f0; }
.demo-ended {
  display: none;
  padding: 60px 20px;
  text-align: center;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: .95rem;
}

/* ============================
   FAQ
============================ */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-main);
  background: var(--bg-soft) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-lt) !important;
}
.accordion-button::after { filter: none; }
.accordion-body { font-size: .875rem; color: var(--text-muted); background: var(--bg-card); }

/* ============================
   REVIEWS
============================ */
.review-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  margin-bottom: 12px;
  transition: var(--transition);
}
.review-item:hover { border-color: var(--border-dk); box-shadow: var(--shadow-sm); }
.review-stars { color: #f59e0b; letter-spacing: 2px; font-size: 1rem; }
.review-author { font-weight: 700; font-size: .9rem; color: var(--text-main); }
.review-date { font-size: .78rem; color: var(--text-light); }
.review-text { font-size: .875rem; color: var(--text-muted); margin-top: 6px; }

.review-form .form-label { font-weight: 600; font-size: .85rem; margin-bottom: 4px; }
.review-form .form-control, .review-form .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  padding: 9px 13px;
  transition: var(--transition);
  background: var(--bg-soft);
}
.review-form .form-control:focus, .review-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
  background: #fff;
}
.star-rating { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-rating input { display: none; }
.star-rating label {
  font-size: 1.6rem;
  color: var(--border-dk);
  cursor: pointer;
  transition: color .15s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f59e0b;
}

/* ============================
   RIGHT SIDEBAR
============================ */
.sidebar-sticky { position: sticky; top: calc(var(--nav-h) + 16px); }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.pricing-head {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 22px 24px 18px;
  color: #fff;
}
.pricing-head .item-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  opacity: .85;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pricing-head .price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-head .price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
}
.pricing-head .price-label {
  font-size: .85rem;
  opacity: .7;
}
.pricing-body { padding: 22px 24px; }

.license-tabs {
  display: flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 18px;
  gap: 4px;
}
.license-tab {
  flex: 1;
  padding: 9px;
  border: none;
  background: transparent;
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  text-align: center;
}
.license-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,86,219,.3);
}

.currency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.currency-btn {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: default;
  transition: var(--transition);
}
.currency-btn .c-label { font-size: .7rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.currency-btn .c-value { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-main); }
.currency-btn:hover { border-color: var(--primary); background: var(--primary-lt); }

.divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.divider-text::before, .divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: .875rem;
  transition: var(--transition);
  margin-bottom: 8px;
  border: 1px solid transparent;
}
.contact-btn .btn-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-btn.wa  { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.contact-btn.wa  .btn-icon { background: #22c55e; color: #fff; }
.contact-btn.wa:hover  { background: #dcfce7; border-color: #86efac; transform: translateY(-1px); }
.contact-btn.em  { background: var(--bg-soft); color: var(--text-main); border-color: var(--border); }
.contact-btn.em  .btn-icon { background: var(--primary); color: #fff; }
.contact-btn.em:hover  { border-color: var(--primary); background: var(--primary-lt); }
.contact-btn.tg  { background: #f0f9ff; color: #0c4a6e; border-color: #bae6fd; }
.contact-btn.tg  .btn-icon { background: #0ea5e9; color: #fff; }
.contact-btn.tg:hover  { background: #e0f2fe; border-color: #7dd3fc; transform: translateY(-1px); }
.contact-btn.ms  { background: #f5f3ff; color: #3730a3; border-color: #c4b5fd; }
.contact-btn.ms  .btn-icon { background: #818cf8; color: #fff; }
.contact-btn.ms:hover  { background: #ede9fe; border-color: #a78bfa; transform: translateY(-1px); }

/* ============================
   PAYMENT FORM
============================ */
.payment-section {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 6px;
}
.payment-section h6 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-main);
}
.payment-section .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  padding: 10px 13px;
  background: var(--bg-card);
  transition: var(--transition);
}
.payment-section .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 14px 0;
}
.payment-logos img { height: 22px; opacity: .8; transition: var(--transition); }
.payment-logos img:hover { opacity: 1; }

.btn-buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1a56db, #1240b0);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,86,219,.35);
  transition: var(--transition);
  letter-spacing: .2px;
}
.btn-buy-now:hover {
  background: linear-gradient(135deg, #1240b0, #0e3484);
  box-shadow: 0 6px 24px rgba(26,86,219,.45);
  transform: translateY(-1px);
  color: #fff;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.trust-badge i { color: var(--success); }

/* ============================
   AUTHOR CARD
============================ */
.author-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info h5 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.author-info h5 a { color: var(--text-main); text-decoration: none; }
.author-info h5 a:hover { color: var(--primary); }
.author-info p { font-size: .8rem; color: var(--text-muted); margin: 0 0 8px; }
.btn-portfolio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-lt);
  border: 1px solid var(--primary);
  padding: 5px 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-portfolio:hover { background: var(--primary); color: #fff; }

/* ============================
   MORE ITEMS
============================ */
.more-items-list { list-style: none; padding: 0; margin: 0; }
.more-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--text-main);
  background: var(--bg-soft);
  transition: var(--transition);
  gap: 10px;
}
.more-item:hover { border-color: var(--primary); background: var(--primary-lt); color: var(--primary); box-shadow: var(--shadow-sm); }
.more-item .item-name-sm { font-size: .875rem; font-weight: 600; flex: 1; }
.more-item .item-price-sm {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  background: var(--primary-lt);
  padding: 3px 9px;
  border-radius: 6px;
}
.more-item:hover .item-price-sm { background: var(--primary); color: #fff; }

/* ============================
   GOOGLE TRANSLATE
============================ */
/* Google Translate Bar */
.translate-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-bottom: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
#goog-gt-tt, .goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* ============================
   FOOTER
============================ */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.7);
  padding: 40px 0 30px;
}
.footer h5 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.footer p { font-size: .875rem; line-height: 1.7; }
.footer a { color: rgba(255,255,255,.6); text-decoration: none; transition: var(--transition); }
.footer a:hover { color: #fff; }
.footer-social a {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  font-size: .9rem;
}
.footer-social a:hover { background: var(--primary); color: #fff; }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 991px) {
  .sidebar-sticky { position: relative; top: auto; }
  .page-container { padding: 16px 14px 50px; }
}
@media (max-width: 576px) {
  .card-block { padding: 18px; }
  .pricing-body { padding: 16px; }
  .currency-grid { grid-template-columns: 1fr; }
  .product-title { font-size: 1.2rem; }
}

/* ============================
   ANIMATIONS
============================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-in { animation: fadeSlideUp .45s ease both; }
.anim-in:nth-child(2) { animation-delay: .07s; }
.anim-in:nth-child(3) { animation-delay: .14s; }
.anim-in:nth-child(4) { animation-delay: .21s; }

/* ============================
   MISC UTILITIES
============================ */
.text-price { font-family: var(--font-head); font-weight: 700; color: var(--primary); }
.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-lt);
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition);
}
.btn-show-more:hover { background: var(--primary); color: #fff; }
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 12px;
}
.btn-view-all:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-lt); }
.submit-review-btn {
  background: linear-gradient(135deg, var(--success), #059669);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.submit-review-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(16,185,129,.35); }