/* ============================================================
   assets/css/style.css — WebKar Frontend Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #dc2626;
  --primary-rgb: 220, 38, 38;
  --primary-light: #ef4444;
  --primary-dark: #991b1b;
  --secondary: #111827;
  --accent: #dc2626;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --dark: #111827;
  --dark-2: #1f2937;
  --dark-3: #374151;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, .05);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, .08);
  --shadow-xl: 0 25px 60px rgba(220, 38, 38, .12);
  --gradient: linear-gradient(135deg, var(--primary) 0%, #991b1b 100%);
  --gradient-dark: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
  font-weight: 800;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 17px;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, .08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  border: 1px solid rgba(220, 38, 38, .15);
  margin-bottom: 16px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section {
  padding: 50px 0;
}

.section-sm {
  padding: 64px 0;
}

/* Spacer for Fixed Navbar */
.breadcrumb-bar {
  margin-top: 72px;
}
@media (max-width: 991px) {
  .breadcrumb-bar { margin-top: 72px; }
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 0;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-dark-section {
  background: var(--dark);
}

.bg-gradient-section {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.highlight {
  color: var(--primary);
}

.fw-900 {
  font-weight: 900;
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: .2px;
  text-decoration: none;
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-light);
  --bs-btn-hover-border-color: var(--primary-light);
  --bs-btn-focus-shadow-rgb: 220, 38, 38;
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(220, 38, 38, .2);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, .4);
  color: #fff;
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-focus-shadow-rgb: 220, 38, 38;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, .3);
}

.btn-outline-secondary {
  --bs-btn-color: var(--dark);
  --bs-btn-border-color: rgba(0, 0, 0, 0.1);
  --bs-btn-hover-color: var(--primary);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-focus-shadow-rgb: 100, 100, 100;
  --bs-btn-active-color: var(--primary);
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: var(--primary);
  background: #f8f9fa;
  color: var(--dark);
  border-color: #e5e7eb;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: var(--primary);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
}

.btn-light:hover, .btn-light:focus, .btn-light:active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 8px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 8px;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  border-radius: 12px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.wk-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.wk-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0;
  height: 72px;
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  font-weight: 900;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
}

.nav-logo-text span {
  color: var(--primary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(220, 38, 38, 0.07);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: all var(--transition);
  z-index: 2100;
  /* Above navbar */
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #fff;
  border-top: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
  background: rgba(220, 38, 38, .06);
  color: var(--primary);
}

.nav-dropdown-menu a .icon {
  width: 30px;
  height: 30px;
  background: rgba(220, 38, 38, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.nav-dropdown.mega {
  position: static;
}

.nav-mega-menu {
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2100;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.nav-dropdown.mega:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mega-col-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: block;
}

.mega-col-border {
  border-left: 1px solid var(--border);
  padding-left: 30px;
}

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mega-item:hover {
  background: rgba(220, 38, 38, 0.05);
  transform: translateX(5px);
}

.mega-item .icon {
  width: 42px;
  height: 42px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mega-item:hover .icon {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.1);
}

.mega-info {
  display: flex;
  flex-direction: column;
}

.mega-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.mega-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.mega-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-footer-text {
  font-size: 13.5px;
  color: var(--text-muted);
}

.mega-footer-link {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.mega-footer-link:hover {
  gap: 8px;
}


/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cart-btn {
  position: relative;
  color: #4b5563;
  font-size: 20px;
  padding: 8px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-cart-btn:hover {
  color: var(--primary);
  background: rgba(220, 38, 38, 0.07);
}

.star-rating {
  color: #fbbf24;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ============================================================
   WHY US / PROCESS SECTIONS
   ============================================================ */
.process-step {
  text-align: center;
  padding: 24px;
  position: relative;
}

.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
}

.process-connector {
  position: absolute;
  top: 56px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  z-index: 0;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--dark);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 1);
  padding: 24px 28px;
  z-index: 2100;
  transform: translateX(100%);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu a {
  display: block;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu a.sub {
  color: var(--text-muted);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: none;
  font-weight: 500;
}

.mob-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
  font-weight: 600;
}
.mob-accordion summary::-webkit-details-marker {
  display: none;
}
.mob-accordion[open] summary .drop-icon {
  transform: rotate(180deg);
}

.mobile-menu a:hover, .mob-accordion summary:hover {
  color: var(--primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(220, 38, 38, .18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 70%, rgba(162, 155, 254, .1) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, .12);
  border: 1px solid rgba(220, 38, 38, .25);
  color: var(--primary-light);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

.hero-title {
  color: #fff;
  margin-bottom: 20px;
}

.hero-title .line2 {
  color: var(--primary-light);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, .55);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
  margin-top: 4px;
}

/* Hero right — floating cards */
.hero-visual {
  position: relative;
  height: 520px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  padding: 18px 22px;
  animation: float 4s ease-in-out infinite;
}

.hero-card:nth-child(2) {
  animation-delay: 1.5s;
}

.hero-card:nth-child(3) {
  animation-delay: .8s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ============================================================
   CARDS
   ============================================================ */
.wk-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.wk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(220, 38, 38, .2);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(220, 38, 38, .12);
  border-color: rgba(220, 38, 38, .2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, .08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient);
  color: #fff;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f0f0f8;
  position: relative;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.product-badge.free {
  background: var(--secondary);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-price .current {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.product-price .original {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-price .free-tag {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f0f0f8;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.04);
}

.blog-content {
  padding: 22px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-title a {
  color: var(--text);
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ============================================================
   PRICING CARDS (Frontend)
   ============================================================ */
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .08);
}

.pricing-card.popular::before {
  content: '⭐ Most Popular';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: .5px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.pricing-price small {
  font-size: 18px;
  color: var(--text-light);
}

.pricing-duration {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-features li i {
  color: var(--secondary);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.testimonial-quote {
  font-size: 48px;
  color: var(--primary);
  opacity: .12;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
  font-family: serif;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #f0f0f8;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, .9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  color: #fff;
  margin-bottom: 4px;
}

.portfolio-overlay .tag {
  font-size: 12px;
  color: var(--primary-light);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.wk-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .65);
  padding-top: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-about {
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 16px;
  font-family: var(--font);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-size: 13.5px;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
}

.footer-contact-item i {
  color: var(--primary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .3);
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

/* --- Navigation Spacing Fix --- */
.navbar-spacer {
  height: 72px;
  /* Fixed Navbar height */
  width: 100%;
  display: block;
}

/* Ensure all pages have a baseline top padding if no hero is present */
main.content-wrapper {
  padding-top: 72px;
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: #ffffff;
  background-image:
      linear-gradient(rgba(220,38,38,0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(220,38,38,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  padding: 120px 0 80px;
  text-align: center; /* Generally centering content as requested */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #f5f3f3);
  pointer-events: none;
  z-index: 1;
}

.page-hero h1,
.page-hero .h1 {
  color: var(--dark);
  font-weight: 900;
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 18px;
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.breadcrumb-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-nav a:hover {
  color: var(--primary);
}

.breadcrumb-nav .sep {
  color: rgba(0, 0, 0, 0.25);
}

/* ============================================================
   PROFESSIONAL UTILITIES (Premium Design)
   ============================================================ */
.bg-mesh {
  background-color: #0a0e1c;
  background-image:
    radial-gradient(at 0% 0%, rgba(220, 38, 38, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 0%, rgba(162, 155, 254, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(253, 121, 168, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(9, 132, 227, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(220, 38, 38, 0.1) 0px, transparent 50%);
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.shadow-premium {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 10px 20px -10px rgba(0, 0, 0, 0.05);
}

.text-balance {
  text-wrap: balance;
}

/* Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============================================================
   PREMIUM PRODUCT CARDS (Refined Design)
   ============================================================ */
.product-card-premium {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: #14b8a6;
}

.card-thumb-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: transparent;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.card-thumb-area .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-mockup-frame {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 170px;
  background: #000;
  border: 4px solid #2d3748;
  border-radius: 12px;
  overflow: hidden;
  margin-left: 60px;
  box-shadow: 15px 15px 30px rgba(0,0,0,0.2);
}

.card-mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-logo-box {
  position: absolute;
  left: 20px;
  top: 40px;
  z-index: 1;
}

.card-logo-box .brand {
  font-size: 28px;
  font-weight: 900;
  color: #dc2626;
  margin: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.card-logo-box .sub {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.card-price-overlay {
  position: absolute;
  left: 30px;
  bottom: 25px;
  background: #111827;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

.card-price-overlay .o {
  display: block;
  font-size: 10px;
  text-decoration: line-through;
  opacity: 0.5;
}

.card-price-overlay .n {
  font-size: 16px;
  font-weight: 800;
}

.card-badge-top {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #3b82f6;
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-badge-top.popular {
  background: #10b981;
}

.product-body-premium {
  padding: 24px;
  flex: 1;
}

.premium-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.premium-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.premium-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.premium-price-display {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.premium-price-display .c {
  font-size: 20px;
  font-weight: 900;
  color: #0d9488;
}

.premium-price-display .o {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-light);
}

.premium-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.btn-p {
  background: rgba(220, 38, 38, 0.08);
  color: var(--primary);
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
  text-align: center;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all var(--transition);
}

.btn-p:hover { background: rgba(220, 38, 38, 0.15); color: var(--primary-dark); }

.btn-s {
  background: transparent;
  color: var(--dark);
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
}

.btn-s:hover { background: rgba(0, 0, 0, 0.05); }

.btn-buy-premium {
  background: var(--gradient);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
}

.btn-buy-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
  color: #fff;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

border-radius: 10px;
font-size: 14px;
font-family: var(--font);
background: #fff;
color: var(--text);
transition: all var(--transition);
}

.wk-form .form-control:focus,
.wk-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
  outline: none;
}

.wk-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: all var(--transition);
  animation: bounce 2.5s infinite 3s;
}

.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.1);
  color: #fff;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   CONTAINERS & GRID
   ============================================================ */
.container {
  max-width: 1260px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1 0 0;
  padding: 0 12px;
}

[class*="col-"] {
  padding: 0 12px;
}

.col-1 {
  width: 8.333%;
}

.col-2 {
  width: 16.666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333%;
}

.col-5 {
  width: 41.666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333%;
}

.col-8 {
  width: 66.666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333%;
}

.col-11 {
  width: 91.666%;
}

.col-12 {
  width: 100%;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] {
  transition-delay: .1s;
}

[data-delay="2"] {
  transition-delay: .2s;
}

[data-delay="3"] {
  transition-delay: .3s;
}

[data-delay="4"] {
  transition-delay: .4s;
}

[data-delay="5"] {
  transition-delay: .5s;
}

/* ============================================================
   ALERT & FLASH MESSAGES
   ============================================================ */
.flash-success {
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .25);
  color: #00897b;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}

.flash-error {
  background: rgba(225, 112, 85, .08);
  border: 1px solid rgba(225, 112, 85, .25);
  color: #c0392b;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}

.flash-warning {
  background: rgba(253, 203, 110, .12);
  border: 1px solid rgba(253, 203, 110, .3);
  color: #a07000;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}

/* ============================================================
   ACCOUNT PAGES
   ============================================================ */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 100px 0 40px;
}

.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .08);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
.cart-table {
  width: 100%;
}

.cart-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  padding: 12px;
}

.cart-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-table .product-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.order-summary {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.order-summary-row.total {
  font-weight: 800;
  font-size: 18px;
  border-top: 2px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
}

/* ============================================================
   PREMIUM RESPONSIVE OVERRIDES (Final)
   ============================================================ */
@media (max-width: 1024px) {
    .page-hero { padding: 80px 0 40px; }
    .page-hero h1 { font-size: 36px; }
}

@media (max-width: 991px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-actions { gap: 12px; }
    [class*="col-"] { width: 100% !important; margin-bottom: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px; text-align: left; }
}

@media (max-width: 768px) {
    .section-title { font-size: 32px; }
    .section { padding: 40px 0; }
    .product-card-premium { margin-bottom: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr 1fr !important; column-gap: 20px; row-gap: 35px; }
    .footer-grid > div:first-child { grid-column: span 2; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 25px; }
    .footer-grid > div:first-child .footer-logo, 
    .footer-grid > div:first-child .footer-social { justify-content: flex-start; }
    .footer-grid > div:first-child .footer-about { margin: 0; }
    
    /* Contact column full width at bottom */
    .footer-grid > div:last-child { grid-column: span 2; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; }
    .footer-grid > div:last-child .footer-contact-item { justify-content: center; text-align: left; }
    
    .footer-heading { font-size: 14px; margin-bottom: 20px; }
    .footer-links a { padding: 8px 0; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 28px; }
    .nav-logo-text { font-size: 18px; }
    .nav-actions .btn { display: none; }
}

/* ============================================================
   PWA INSTALL BANNER
   ============================================================ */
.pwa-install-banner {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 580px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 99999;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.pwa-install-banner.show {
    bottom: 24px;
}

.pwa-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.pwa-banner-content {
    flex: 1;
}

.pwa-banner-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.pwa-banner-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 2px 0 0;
    line-height: 1.3;
}

.pwa-install-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pwa-install-btn img {
    width: 20px;
    height: 20px;
}

.pwa-install-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.pwa-close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--text-muted);
    cursor: pointer;
    border: 1px solid #f1f5f9;
    z-index: 100;
}

.pwa-close-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .pwa-install-banner {
        width: calc(100% - 32px);
        padding: 12px 14px;
        gap: 12px;
    }
    .pwa-banner-icon { width: 44px; height: 44px; border-radius: 10px; }
    .pwa-banner-title { font-size: 14px; }
    .pwa-banner-desc { font-size: 11px; }
    .pwa-install-btn { padding: 8px 12px; font-size: 12px; }
}
