/* ==========================================================================
   PROTECH VEHICLE STICKERS MAIN CSS DESIGN SYSTEM
   Matches Reference Layout: Red, Dark Graphite & White Premium Aesthetics
   ========================================================================== */

:root {
  --pt-red: #2563eb;
  --pt-red-hover: #1d4ed8;
  --pt-blue-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --pt-blue-gradient-hover: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --pt-bg-dark: #f8fafc;
  --pt-bg-header: #ffffff;
  --pt-bg-card: #ffffff;
  --pt-bg-card-hover: #ffffff;

  --pt-text-main: #0f172a;
  --pt-text-muted: #64748b;
  --pt-border: #e2e8f0;

  --pt-font-heading: 'Rajdhani', 'Orbitron', -apple-system, BlinkMacSystemFont, sans-serif;
  --pt-font-subheading: 'Barlow Semi Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
  --pt-font-body: 'Barlow', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body,
body.protech-light-mode,
body.protech-theme {
  background-color: var(--pt-bg-dark);
  color: var(--pt-text-main);
  font-family: var(--pt-font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Full Width Page Layout Resets (Overrides Parent Theme Constraints) */
html,
body,
body.protech-light-mode,
#page,
#page.site,
#content,
#content.site-content,
#primary,
#primary.site-main,
main.site-main {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  box-sizing: border-box !important;
}

/* Container */
.protech-container {
  width: 92% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

/* Full Width Home & Theme Sections */
.protech-topbar,
.protech-header,
.protech-hero-section,
.protech-bestsellers-section,
.protech-passion-section,
.protech-features-section,
.protech-promo-section,
.protech-blog-section,
.protech-newsletter-bar,
.protech-trust-banner,
.protech-footer {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Typography Base & Helpers */
h1,
h2 {
  font-family: var(--pt-font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h3,
h4,
h5,
h6 {
  font-family: var(--pt-font-subheading);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.sub-heading,
.section-subtitle {
  font-family: var(--pt-font-subheading);
}

.text-red {
  color: var(--pt-red);
}

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

.block {
  display: block;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR (BRIGHT RED)
   ========================================================================== */
.protech-topbar {
  background: var(--pt-blue-gradient);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-left .divider {
  opacity: 0.5;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.topbar-right a:hover {
  opacity: 0.8;
}

.topbar-selectors {
  display: flex;
  gap: 12px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.2);
  padding: 3px 8px;
  border-radius: 3px;
}

.topbar-socials {
  display: flex;
  gap: 10px;
}

.topbar-socials a {
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
}

/* ==========================================================================
   2. MAIN HEADER NAVIGATION
   ========================================================================== */
.protech-header {
  background: var(--pt-bg-header);
  border-bottom: 1px solid var(--pt-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.protech-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

/* Site Branding & Custom Logo */
.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.site-branding .custom-logo-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.site-branding .custom-logo {
  max-height: 50px;
  width: auto;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Left Brand Logo Image & Badge (Fallback) */
.brand-logo-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brand-logo-link:hover .logo-icon-svg {
  transform: scale(1.05) rotate(-3deg);
}

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

.brand-title {
  font-family: var(--pt-font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--pt-text-main);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-dot {
  color: var(--pt-red);
}

.brand-tagline {
  font-size: 9px;
  font-weight: 800;
  color: var(--pt-red);
  letter-spacing: 2.5px;
  margin-top: 1px;
}

/* Centered Navigation Menu (Middle) */
.middle-navigation {
  display: flex;
  justify-content: center;
  flex: 1;
  background: var(--pt-bg-header);
}

.main-navigation .nav-menu-centered {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
}

.main-navigation .nav-menu-centered a {
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.main-navigation .nav-menu-centered a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pt-red);
  transition: width 0.25s ease;
}

.main-navigation .nav-menu-centered a:hover,
.main-navigation .nav-menu-centered .current-menu-item a {
  color: var(--pt-red);
}

.main-navigation .nav-menu-centered a:hover::after,
.main-navigation .nav-menu-centered .current-menu-item a::after {
  width: 100%;
}

/* Right Side Actions (Search, Cart, User) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  background: #f1f5f9;
  border: 1px solid var(--pt-border);
  border-radius: 50%;
  color: #0f172a;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  transition: all 0.25s ease;
}

.action-btn svg {
  stroke: currentColor;
}

.action-btn:hover {
  background: var(--pt-blue-gradient);
  border-color: var(--pt-red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.inquiry-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pt-blue-gradient);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pt-bg-header);
  transition: transform .2s ease;
}

.inquiry-count-badge.pulse-badge {
  animation: badgePulse .5s ease;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.5);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}



/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.pt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 3px;
  font-family: var(--pt-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 10px 20px;
}

.pt-btn-red {
  background: var(--pt-blue-gradient);
  color: #ffffff;
}

.pt-btn-red:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4);
}

.pt-btn-hero-red {
  background: var(--pt-blue-gradient);
  color: #ffffff;
  padding: 16px 32px;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.pt-btn-hero-red:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.45);
}

.pt-btn-hero-outline {
  background: #ffffff;
  border: 1px solid var(--pt-border);
  color: var(--pt-text-main);
  padding: 16px 32px;
  font-size: 14px;
}

.pt-btn-hero-outline:hover {
  border-color: var(--pt-red);
  color: var(--pt-red);
}

.pt-btn-dark-full {
  background: #0f172a;
  color: #ffffff;
  width: 100%;
  justify-content: center;
  padding: 12px;
  border: 1px solid #0f172a;
}

.pt-btn-dark-full:hover {
  background: var(--pt-red);
  border-color: var(--pt-red);
}

.pt-btn-white-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 11px;
}

.pt-btn-white-outline:hover {
  background: #ffffff;
  color: var(--pt-red);
}

.pt-btn-dark-submit {
  background: #0f172a;
  color: #ffffff;
  padding: 14px 28px;
}

.pt-btn-dark-submit:hover {
  background: var(--pt-red);
}

.pt-btn.sm {
  padding: 8px 16px;
  font-size: 11px;
}

.pt-btn.xs {
  padding: 6px 12px;
  font-size: 10px;
}

/* ==========================================================================
   3. HERO FULL-WIDTH BACKGROUND IMAGE SLIDER WITH TEXT OVERLAY
   ========================================================================== */
.hero-bg-slider-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  max-height: 680px;
  height: 72vh;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
}

.hero-bg-slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-bg-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background Image Container */
.hero-slide-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-bg-slide.active .hero-slide-bg-img {
  transform: scale(1);
}

/* Dark Cinematic Gradient Overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 45%, rgba(15, 23, 42, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Foreground Content */
.hero-slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 50px;
}

.hero-slide-text-box {
  max-width: 650px;
}

/* Badge / Tagline */
.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  font-family: var(--pt-font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-bg-slide.active .hero-slide-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Main Heading */
.hero-slide-title {
  font-family: var(--pt-font-heading);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.hero-bg-slide.active .hero-slide-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-accent-text {
  background: var(--pt-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Description */
.hero-slide-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0 0 28px 0;
  max-width: 560px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-bg-slide.active .hero-slide-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Action Buttons */
.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.hero-bg-slide.active .hero-slide-actions {
  opacity: 1;
  transform: translateY(0);
}

.hero-primary-btn {
  background: var(--pt-blue-gradient);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.25s ease;
}

.hero-primary-btn:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.5);
}

.hero-secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  transition: all 0.25s ease;
}

.hero-secondary-btn:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Navigation Arrows */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-nav-arrow:hover {
  background: var(--pt-blue-gradient);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.hero-nav-prev {
  left: 24px;
}

.hero-nav-next {
  right: 24px;
}

/* Pagination Indicators (Lines only, no numbers) */
.hero-slider-pagination {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.hero-line-bullet {
  background: transparent;
  border: none;
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.hero-line-bullet:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-line-bullet.active {
  width: 65px;
  background: var(--pt-blue-gradient);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.7);
}

/* Mobile & Tablet Responsive */
@media (max-width: 900px) {
  .hero-bg-slider-section {
    min-height: 500px;
    height: auto;
    padding: 60px 0 70px;
  }

  .hero-slide-title {
    font-size: 40px;
  }

  .hero-nav-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-nav-prev {
    left: 12px;
  }

  .hero-nav-next {
    right: 12px;
  }
}

@media (max-width: 576px) {
  .hero-bg-slider-section {
    min-height: 440px;
    padding: 40px 0 60px;
  }

  .hero-slide-title {
    font-size: 30px;
  }

  .hero-slide-desc {
    font-size: 13px;
  }

  .hero-slide-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   4. CATEGORY CARDS (ROUNDED POST-HERO ROW)
   ========================================================================== */
.protech-category-cards-section {
  padding: 24px 0 12px;
  background: var(--pt-bg-dark);
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
}

.category-card-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-box {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  background: #f1f5f9;
  border: 1px solid var(--pt-border);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-name {
  font-family: var(--pt-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
}

.category-card-item:hover {
  transform: translateY(-4px);
}

.category-card-item:hover .category-card-box {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.category-card-item:hover .category-card-img {
  transform: scale(1.06);
}

.category-card-item:hover .category-card-name {
  color: var(--pt-red, #2563eb);
}

@media (max-width: 1024px) {
  .category-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card-box {
    border-radius: 0;
  }

  .category-card-name {
    font-size: 12px;
    margin-top: 6px;
  }
}

/* ==========================================================================
   4. CATEGORY PROMO BANNERS
   ========================================================================== */
.protech-category-banners {
  padding: 40px 0;
  background: var(--pt-bg-dark);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.promo-card {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  padding: 30px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--pt-red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.promo-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--pt-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.promo-card h3 {
  font-family: var(--pt-font-heading);
  font-size: 18px;
  margin: 0 0 15px 0;
  color: var(--pt-text-main);
  line-height: 1.3;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 12px;
  color: var(--pt-text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.center-media-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.06) 0%, #f1f5f9 80%);
}

.bike-thumb-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--pt-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 2px;
}

/* ==========================================================================
   5. RED CATEGORY FILTER SUB-BAR
   ========================================================================== */
.protech-red-filter-bar {
  background: var(--pt-red);
  padding: 12px 0;
}

.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-arrow {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

.filter-tabs-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  flex-grow: 1;
}

.filter-tabs-list::-webkit-scrollbar {
  display: none;
}

.filter-tabs-list .tab-item a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--pt-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  padding: 6px 12px;
  border-radius: 3px;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.filter-tabs-list .tab-item.active a,
.filter-tabs-list .tab-item a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   6. BESTSELLERS SECTION (RED BACKGROUND WITH GRAPHITE CARDS)
   ========================================================================== */
.protech-bestsellers-section {
  padding: 50px 0 60px 0;
}

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

.section-title {
  font-family: var(--pt-font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #000;
  margin: 0;
  text-transform: uppercase;
}

.sub-nav-tabs {
  display: flex;
  gap: 15px;
}

.sub-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-family: var(--pt-font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sub-tab.active,
.sub-tab:hover {
  background: var(--pt-blue-gradient);
  color: #ffffff;
  border-color: transparent;
}

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

@media (max-width: 1024px) {
  .bestsellers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .bestsellers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .bestsellers-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


.bestseller-card {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 0 !important;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bestseller-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Image Stage & Hover Action Overlay (Full Grid Fit & Zero Padding) */
.card-image-stage {
  position: relative;
  border-radius: 0 !important;
  overflow: hidden;
  background: #ebebeb;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  height: 250px;
  width: 100%;
  display: block;
}

.card-image-stage .card-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  font-family: var(--pt-font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 !important;
  color: #fff;
  background: var(--pt-blue-gradient);
  letter-spacing: 0.5px;
}

.card-image-stage .card-badge.hot {
  background: var(--pt-blue-gradient);
}

.card-image-stage .card-badge.sale,
.card-badge.sale,
.badge-sale,
span.onsale {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
}

.card-img-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
  text-decoration: none;
  overflow: hidden;
}

.bestseller-img-stage-wrap {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #ebebeb;
}

.bestseller-img-stage-wrap img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.bestseller-card:hover .bestseller-img-stage-wrap img {
  transform: scale(1.04);
}

.sticker-mockup-graphic {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sticker-mockup-graphic svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bestseller-card:hover .sticker-mockup-graphic svg {
  transform: scale(1.04);
}

/* Hover Action Overlay with 3 Circular White Buttons */
.hover-action-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.card-image-stage:hover .hover-action-overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.overlay-icon-btn:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.4);
}

.overlay-icon-btn.wishlist-btn.active svg {
  fill: var(--pt-red);
  stroke: var(--pt-red);
}

/* Top-Right Floating Actions Column (Wishlist & Quick View support) */
.shop-card-floating-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.shop-card:hover .shop-card-floating-actions,
.bestseller-card:hover .shop-card-floating-actions,
.card-image-stage:hover .shop-card-floating-actions,
.passion-product-card:hover .shop-card-floating-actions,
.passion-card:hover .shop-card-floating-actions {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

@media (hover: none),
(max-width: 768px) {

  .shop-card-floating-actions,
  .bestseller-card .shop-card-floating-actions,
  .card-image-stage .shop-card-floating-actions {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}

.shop-action-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0;
  color: #1e293b;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
  box-sizing: border-box;
}

.shop-action-btn svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  stroke: #1e293b !important;
  stroke-width: 2 !important;
  fill: none !important;
  color: #1e293b !important;
  transition: all 0.2s ease;
  pointer-events: none;
}

.shop-action-btn:hover {
  background: #0f172a !important;
  border-color: #0f172a !important;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.shop-action-btn:hover svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

.shop-action-btn.active,
.shop-action-btn.active:hover {
  background: #ffffff !important;
  border-color: #fee2e2 !important;
}

.shop-action-btn.active svg,
.shop-action-btn.active .heart-icon,
.shop-action-btn.active:hover svg,
.shop-action-btn.active:hover .heart-icon {
  stroke: #ef4444 !important;
  fill: #ef4444 !important;
  color: #ef4444 !important;
}

/* Card Body & Details */
.card-body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  justify-content: space-between;
}

.card-subheading {
  font-size: 10.5px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
}

.card-title {
  font-family: var(--pt-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--pt-text-main);
  margin: 0;
  line-height: 1.3;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.card-title a:hover {
  color: var(--pt-red);
}

/* Star Rating (After Title) */
.card-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: #d1d5db;
  line-height: 1;
  margin: 2px 0;
}

.card-rating .star.filled {
  color: #f59e0b;
}

/* Pricing Display - Sale Price First (Bold & Larger), Regular/Real Price Second (Bold & Strikethrough) */
.card-pricing-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 4px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.price-current,
.price-box .price-current,
.woocommerce-Price-amount {
  font-family: var(--pt-font-heading);
  font-size: 18.5px;
  font-weight: 800;
  color: var(--pt-red);
  letter-spacing: -0.2px;
}

.price-current,
.shop-card-price,
.price {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}

/* 1. Sale Price (ins) Displays First with Prominent Large Bold Color */
.price-current ins,
.price-box ins,
.shop-card-price ins,
.price ins,
.woocommerce-Price-amount ins {
  order: 1 !important;
  text-decoration: none !important;
  font-family: var(--pt-font-heading) !important;
  font-size: 19.5px !important;
  font-weight: 800 !important;
  color: var(--pt-red, #2563eb) !important;
  display: inline-flex !important;
  letter-spacing: -0.2px !important;
}

.price-current ins .woocommerce-Price-amount,
.price-box ins .woocommerce-Price-amount,
.shop-card-price ins .woocommerce-Price-amount,
.price ins .woocommerce-Price-amount {
  color: var(--pt-red, #2563eb) !important;
  font-weight: 800 !important;
}

/* 2. Real/Regular Price (del) Displays Second with Clean Muted Color & Strikethrough (Not Bold) */
.price-current del,
.price-box del,
.shop-card-price del,
.price del,
.woocommerce-Price-amount del {
  order: 2 !important;
  font-family: var(--pt-font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #64748b !important;
  text-decoration: line-through !important;
  text-decoration-color: #94a3b8 !important;
  text-decoration-thickness: 1.2px !important;
  opacity: 1 !important;
  display: inline-flex !important;
  margin-left: 4px !important;
}

.price-current del .woocommerce-Price-amount,
.price-box del .woocommerce-Price-amount,
.shop-card-price del .woocommerce-Price-amount,
.price del .woocommerce-Price-amount {
  color: #64748b !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.price-old {
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  text-decoration: line-through;
  text-decoration-color: #94a3b8;
  text-decoration-thickness: 1.2px;
  opacity: 1;
  margin-left: 6px;
}

.card-shop-action {
  margin-top: 10px;
}

/* Shop Now Button: White Background + Theme Blue Border by Default, Theme Gradient on Hover */
.shop-now-btn,
.pt-btn.shop-now-btn,
.pt-btn-red.shop-now-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  font-family: var(--pt-font-heading, sans-serif) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  background: #ffffff !important;
  color: var(--pt-red, #2563eb) !important;
  border: 1.5px solid var(--pt-red, #2563eb) !important;
  border-radius: 4px !important;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.08) !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.shop-now-btn svg,
.pt-btn.shop-now-btn svg,
.pt-btn-red.shop-now-btn svg {
  stroke: var(--pt-red, #2563eb) !important;
  transition: transform 0.25s ease, stroke 0.25s ease !important;
}

.shop-now-btn:hover,
.pt-btn.shop-now-btn:hover,
.pt-btn-red.shop-now-btn:hover {
  background: var(--pt-blue-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%)) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
  transform: translateY(-2px) !important;
}

.shop-now-btn:hover svg,
.pt-btn.shop-now-btn:hover svg,
.pt-btn-red.shop-now-btn:hover svg {
  stroke: #ffffff !important;
  transform: translateX(3px) !important;
}

.shop-now-btn:active,
.pt-btn.shop-now-btn:active,
.pt-btn-red.shop-now-btn:active {
  transform: scale(0.98) !important;
}


/* ==========================================================================
   7. SPLIT PROMO SECTION ("Why Choose Us" / Commitment to Excellence)
   ========================================================================== */
.protech-split-promo-section {
  padding: 70px 0 65px;
  background: #ffffff;
  border-top: 1px solid var(--pt-border);
  border-bottom: 1px solid var(--pt-border);
}

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

.split-media-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-media-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-badge-wreath {
  position: absolute;
  top: -10px;
  right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.quality-badge-wreath .wreath-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quality-badge-text {
  position: relative;
  text-align: center;
  color: #64748b;
  font-family: var(--pt-font-heading);
  line-height: 1;
  z-index: 3;
  margin-top: 4px;
}

.quality-badge-text span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
}

.quality-badge-text strong {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: block;
  color: #475569;
}

.quality-stars {
  font-size: 7px;
  color: #94a3b8;
  letter-spacing: 1px;
  margin-top: 1px;
}

.split-showcase-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-media-wrapper:hover .split-showcase-img {
  transform: scale(1.03);
}

.promo-eyebrow {
  display: inline-block;
  font-family: var(--pt-font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promo-main-heading {
  font-family: var(--pt-font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 14px 0;
  letter-spacing: -0.3px;
}

.promo-description {
  font-family: var(--pt-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 28px 0;
}

.promo-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 32px;
}

.promo-feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
}

.promo-feature-row:hover {
  transform: translateX(4px);
}

.feature-bullet-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.promo-feature-row:hover .feature-bullet-icon {
  background: var(--pt-blue-gradient);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.feature-bullet-label {
  font-family: var(--pt-font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.promo-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-avatar-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.avatar-circle:first-child {
  margin-left: 0;
}

.avatar-headline {
  display: block;
  font-family: var(--pt-font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #475569;
  text-transform: uppercase;
}

.avatar-sub {
  display: block;
  font-family: var(--pt-font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-support-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.support-headset-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: var(--pt-red, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-24-badge {
  position: absolute;
  font-size: 9px;
  font-weight: 800;
  color: var(--pt-red, #2563eb);
  top: 13px;
  left: 15px;
}

.support-phone {
  display: block;
  font-family: var(--pt-font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.support-phone:hover {
  color: var(--pt-red, #2563eb);
}

.support-email {
  display: block;
  font-family: var(--pt-font-body);
  font-size: 12px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.support-email:hover {
  color: var(--pt-red, #2563eb);
}

@media (max-width: 992px) {
  .split-promo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-showcase-img {
    max-width: 420px;
  }

  .promo-main-heading {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .promo-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .promo-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================================================
   7b. TRUSTED PARTNERS MARQUEE SECTION
   ========================================================================== */
.protech-partners-section {
  padding: 55px 0 65px;
  background: var(--pt-bg-dark);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--pt-border);
}

.partners-header {
  margin-bottom: 30px;
}

.partners-eyebrow {
  display: block;
  font-family: var(--pt-font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.partners-title {
  font-family: var(--pt-font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

.partners-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: protechMarquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  align-items: center;
}

.partner-card {
  width: 220px;
  height: 105px;
  background: #ffffff;
  border: 1px solid var(--pt-border);
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  text-decoration: none;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.partner-logo-img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-card:hover .partner-logo-img {
  filter: grayscale(0%) opacity(1);
}

.partner-logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.partner-brand-svg {
  color: #475569;
  margin-bottom: 6px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.partner-card:hover .partner-brand-svg {
  transform: scale(1.12);
  color: var(--pt-red, #2563eb);
}

.partner-card.partner-honda:hover .partner-brand-svg,
.partner-card.partner-honda:hover .partner-brand-label {
  color: #dc2626;
}

.partner-card.partner-yamaha:hover .partner-brand-svg,
.partner-card.partner-yamaha:hover .partner-brand-label {
  color: #2563eb;
}

.partner-card.partner-kawasaki:hover .partner-brand-svg,
.partner-card.partner-kawasaki:hover .partner-brand-label {
  color: #16a34a;
}

.partner-card.partner-suzuki:hover .partner-brand-svg,
.partner-card.partner-suzuki:hover .partner-brand-label {
  color: #0284c7;
}

.partner-card.partner-ktm:hover .partner-brand-svg,
.partner-card.partner-ktm:hover .partner-brand-label {
  color: #ea580c;
}

.partner-card.partner-ducati:hover .partner-brand-svg,
.partner-card.partner-ducati:hover .partner-brand-label {
  color: #e11d48;
}

.partner-card.partner-bmw:hover .partner-brand-svg,
.partner-card.partner-bmw:hover .partner-brand-label {
  color: #0284c7;
}

.partner-card.partner-royalenfield:hover .partner-brand-svg,
.partner-card.partner-royalenfield:hover .partner-brand-label {
  color: #d97706;
}

.partner-brand-label {
  font-family: var(--pt-font-heading);
  font-size: 17px;
  font-weight: 900;
  color: #334155;
  letter-spacing: 1.5px;
  line-height: 1.1;
  transition: color 0.25s ease;
}

.partner-card:hover .partner-brand-label {
  color: var(--pt-red, #2563eb);
}

.partner-brand-sub {
  font-family: var(--pt-font-body);
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1.8px;
  margin-top: 3px;
  text-transform: uppercase;
}

@keyframes protechMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

@media (max-width: 768px) {
  .partner-card {
    width: 170px;
    height: 90px;
    padding: 12px 16px;
  }

  .partner-brand-label {
    font-size: 14px;
  }

  .partner-brand-sub {
    font-size: 8px;
  }

  .partners-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   8. THE PASSION OF MOTORCYCLES GRID
   ========================================================================== */
.protech-passion-section {
  padding: 60px 0 70px;
  background: #ffffff;
  border-top: 1px solid var(--pt-border);
}

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

.passion-filter-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.passion-tab {
  background: #ffffff;
  border: 1px solid var(--pt-border);
  color: var(--pt-text-muted);
  font-family: var(--pt-font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.passion-tab.active,
.passion-tab:hover {
  background: var(--pt-blue-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

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

@media (max-width: 1280px) {
  .passion-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .passion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .passion-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.passion-product-card {
  border-radius: 4px;
  overflow: hidden;
}

/* ==========================================================================
   9. THE FASCINATING OF MOTORCYCLES (RED PILLARS & TESTIMONIALS)
   ========================================================================== */
.protech-fascinating-section {
  width: 100%;
}

.fascinating-pillars-bg {
  background: var(--pt-red);
  padding: 60px 0;
}

.fascinating-pillars-bg .section-title,
.fascinating-pillars-bg .white-title,
.white-title {
  color: #ffffff !important;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pillar-card {
  text-align: center;
  padding: 0 15px;
}

.pillar-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.pillar-card h3 {
  font-family: var(--pt-font-heading);
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 20px;
}

.fascinating-reviews-bg {
  background: var(--pt-bg-dark);
  padding: 60px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.star-rating {
  color: #ffaa00;
  margin-bottom: 10px;
}

.review-card h4 {
  font-family: var(--pt-font-heading);
  font-size: 16px;
  color: var(--pt-text-main);
  margin: 0 0 10px 0;
}

.review-card p {
  font-size: 13px;
  color: var(--pt-text-muted);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}

.author-info strong {
  display: block;
  color: var(--pt-text-main);
  font-size: 13px;
}

.author-info span {
  font-size: 11px;
  color: var(--pt-red);
}

/* ==========================================================================
   10. MOTOR CYCLING LIST & SHOWCASE
   ========================================================================== */
.protech-motorcycling-section {
  padding: 70px 0;
  background: var(--pt-bg-dark);
  border-top: 1px solid var(--pt-border);
}

.motorcycling-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.motor-list-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.motor-list-card {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  padding: 15px;
  border-radius: 6px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.list-stars {
  color: #ffaa00;
  font-size: 11px;
}

.list-details h4 {
  font-family: var(--pt-font-heading);
  font-size: 14px;
  color: var(--pt-text-main);
  margin: 3px 0 8px 0;
}

.list-price {
  font-family: var(--pt-font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--pt-text-main);
  margin-right: 15px;
}

.showcase-bike-card {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 6px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   11. BLOG & ARTICLES SECTION
   ========================================================================== */
.protech-blog-section {
  padding: 70px 0;
  background: var(--pt-bg-dark);
}

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

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

.blog-card {
  background: #ffffff;
  border: 1px solid var(--pt-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.blog-thumb {
  position: relative;
  width: 100%;
  height: 185px;
  background: #e2e8f0;
  overflow: hidden;
  display: block;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pt-blue-gradient);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 8px;
}

.blog-title {
  font-family: var(--pt-font-heading);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.blog-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: var(--pt-red, #2563eb);
}

.blog-excerpt {
  font-family: var(--pt-font-body);
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-read-btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-thumb {
    height: 190px;
  }
}

/* ==========================================================================
   12. NEWSLETTER BAR & FOOTER
   ========================================================================== */
.protech-newsletter-section {
  background: var(--pt-red);
  padding: 40px 0;
}

.newsletter-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.newsletter-text h2 {
  font-family: var(--pt-font-heading);
  font-size: 24px;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.newsletter-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 18px;
  border: none;
  border-radius: 3px;
  width: 280px;
  font-size: 13px;
  outline: none;
}

.site-footer-ref {
  background: #ffffff;
  border-top: 1px solid var(--pt-border);
  width: 100%;
}

.footer-main-wrap {
  padding: 60px 0 50px 0;
  background: #ffffff;
}

.footer-container-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-custom-logo-wrap {
  margin-bottom: 20px;
}

.footer-custom-logo-wrap .custom-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-custom-logo-wrap .custom-logo {
  max-height: 48px;
  width: auto;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-title {
  font-family: var(--pt-font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.3px;
  margin: 0 0 3px 0;
  line-height: 1.1;
}

.footer-brand-slogan {
  display: block;
  font-family: var(--pt-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--pt-red, #2563eb);
  margin-bottom: 22px;
}

.footer-heading-sm {
  font-family: var(--pt-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.footer-about-desc {
  font-family: var(--pt-font-body);
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.footer-col-title {
  font-family: var(--pt-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-dot-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-dot-links li {
  position: relative;
  font-family: var(--pt-font-body);
  font-size: 13.5px;
  color: #475569;
}

.footer-dot-links a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-dot-links a:hover {
  color: var(--pt-red, #2563eb);
  transform: translateX(3px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
}

.contact-entry {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-family: var(--pt-font-heading);
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-family: var(--pt-font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-value:hover {
  color: var(--pt-red, #2563eb);
}

.contact-red-bar {
  width: 32px;
  height: 5px;
  background: var(--pt-red, #2563eb);
  border-radius: 2px;
  margin-top: 18px;
}

/* Footer Quick Newsletter Box (With 'Subscribe' Text Button) */
.footer-subscribe-block {
  margin-top: 18px;
  max-width: 280px;
  width: 100%;
}

.footer-quick-newsletter {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  padding: 3px 3px 3px 12px;
  margin-bottom: 0;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 280px;
  min-height: 40px;
  box-sizing: border-box;
}

.footer-quick-newsletter:focus-within {
  border-color: var(--pt-red, #2563eb);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.footer-quick-newsletter input {
  border: none !important;
  background: transparent !important;
  padding: 7px 6px !important;
  font-size: 12.5px !important;
  font-family: var(--pt-font-body, sans-serif) !important;
  color: #0f172a !important;
  outline: none !important;
  box-shadow: none !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.footer-quick-newsletter input::placeholder {
  color: #94a3b8;
  font-size: 12.5px;
}

.footer-quick-newsletter button,
.footer-quick-newsletter .newsletter-submit-btn {
  background: var(--pt-blue-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%));
  border: none;
  padding: 7px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
  line-height: 1.2;
}

.footer-quick-newsletter button:hover,
.footer-quick-newsletter .newsletter-submit-btn:hover {
  background: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.3);
}

.footer-quick-newsletter button:active,
.footer-quick-newsletter .newsletter-submit-btn:active {
  transform: scale(0.98);
}




/* Footer Social Icons (Under About Us) */
.footer-social-block {
  margin-top: 16px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.social-btn svg {
  display: block;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.social-btn:hover {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.social-btn:hover svg {
  transform: scale(1.08);
}


.footer-follow-title {
  font-family: var(--pt-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.footer-dark-bottom-bar {
  background: #ffffff;
  padding: 0 0 24px 0;
  color: #64748b;
  font-size: 13px;
}

.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background: var(--pt-border, #e2e8f0);
  margin-bottom: 22px;
}

.bottom-bar-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.subfooter-copyright-text {
  font-family: var(--pt-font-body);
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  text-align: right;
}

@media (max-width: 1024px) {
  .footer-container-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-container-inner {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .bottom-bar-flex {
    justify-content: center;
  }

  .subfooter-copyright-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container-inner {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. TEMPLATE HELPER & UTILITY CLASSES
   ========================================================================== */
.neon-lime {
  color: #39ff14;
}

.neon-cyan {
  color: #00f3ff;
}

.card-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
}

.models-brand-section .brand-block {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
}

.models-brand-section .brand-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pt-text-main);
}

.model-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.model-pill {
  display: block;
  background: #ffffff;
  border: 1px solid var(--pt-border);
  color: var(--pt-text-main);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--pt-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.model-pill:hover {
  background: var(--pt-red);
  border-color: var(--pt-red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--pt-border);
}

.faq-item h4 {
  font-family: var(--pt-font-heading);
  color: var(--pt-text-main);
  font-size: 14px;
  margin: 0 0 8px 0;
}

.faq-item p {
  color: var(--pt-text-muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   14. MOBILE MENU TOGGLE BUTTON (ANIMATED HAMBURGER)
   ========================================================================== */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  background: #f1f5f9;
  border: 1px solid var(--pt-border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.mobile-toggle-btn:hover,
.mobile-toggle-btn.active {
  background: var(--pt-red);
  border-color: var(--pt-red);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.mobile-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0f172a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-toggle-btn:hover span,
.mobile-toggle-btn.active span {
  background-color: #ffffff;
}

.mobile-toggle-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   15. COMPREHENSIVE MULTI-SCREEN RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* A. Ultra-Wide & Desktop (1200px and up) */
@media (min-width: 1200px) {
  .protech-container {
    width: 92%;
    max-width: 1280px;
  }
}

/* B. Laptops & Standard Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero-title {
    font-size: 44px;
  }

  .bestsellers-grid {
    gap: 15px;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    gap: 25px;
  }
}

/* C. Tablet Landscape & Small Laptops (769px to 991px) */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-media {
    order: -1;
  }

  .bike-stage {
    max-width: 480px;
  }

  .red-ring-glow {
    width: 260px;
    height: 260px;
  }

  .bestsellers-grid,
  .promo-grid,
  .passion-grid,
  .pillars-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .split-promo-grid,
  .motorcycling-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

/* D. Tablets Portrait & Mobile Devices (Up to 768px) */
@media (max-width: 768px) {

  /* Show Hamburger Toggle Button */
  .mobile-toggle-btn {
    display: flex;
  }

  /* Navigation Drawer */
  .main-navigation {
    display: none;
  }

  .main-navigation.open {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 24px 28px 24px;
    border-bottom: 2px solid var(--pt-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    box-sizing: border-box;
    animation: ptNavSlideDown 0.3s ease forwards;
  }

  @keyframes ptNavSlideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .main-navigation.open .nav-menu-centered {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
  }

  .main-navigation.open .nav-menu-centered li {
    width: 100%;
  }

  .main-navigation.open .nav-menu-centered a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    color: var(--pt-text-main);
    border-radius: 4px;
    border-left: 3px solid transparent;
    box-sizing: border-box;
  }

  .main-navigation.open .nav-menu-centered a:hover,
  .main-navigation.open .nav-menu-centered .current-menu-item a {
    border-left-color: var(--pt-red);
    background: rgba(37, 99, 235, 0.08);
    color: var(--pt-red);
  }

  /* Header Spacing */
  .header-inner {
    height: 70px;
  }

  .site-branding .custom-logo {
    max-height: 40px;
    max-width: 160px;
  }

  .brand-title {
    font-size: 19px;
  }

  .brand-tagline {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .header-actions {
    gap: 10px;
  }

  .action-btn {
    width: 38px;
    height: 38px;
  }

  /* Top Bar Adjustments */
  .topbar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .topbar-right {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hero Section Mobile */
  .hero-title {
    font-size: 32px;
  }

  .hero-price-tag {
    font-size: 24px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .pt-btn-hero-red,
  .pt-btn-hero-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stats-group {
    gap: 25px;
  }

  /* Section Header Flex Stacks */
  .bestseller-header,
  .passion-header,
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .sub-nav-tabs,
  .passion-filter-nav {
    flex-wrap: wrap;
  }

  /* Split & Newsletter */
  .promo-title {
    font-size: 32px;
  }

  .newsletter-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }

  /* Grids Switch to 1 Column */
  .bestsellers-grid,
  .promo-grid,
  .passion-grid,
  .pillars-grid,
  .reviews-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  /* Footer Bottom */
  .bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .payment-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* E. Small Mobile Phones (Up to 576px) */
@media (max-width: 576px) {
  .protech-container {
    width: 94%;
  }

  .protech-hero-section {
    padding: 35px 0 20px 0;
  }

  .hero-title {
    font-size: 26px;
  }

  .brand-subheading {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .bike-stage {
    max-width: 320px;
  }

  .red-ring-glow {
    width: 200px;
    height: 200px;
  }

  .section-title {
    font-size: 24px;
  }

  .promo-card,
  .review-card,
  .blog-card {
    padding: 16px;
  }

  .card-pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .model-pills-grid {
    grid-template-columns: 1fr;
  }

  .topbar-left .divider,
  .topbar-left span:nth-child(3) {
    display: none;
  }
}

/* ==========================================================================
   TRUST & GUARANTEE SERVICE BANNER (Theme Dark Mode Palette)
   ========================================================================== */
.protech-trust-features-section {
  background: var(--pt-bg-header);
  padding: 30px 0;
}

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

.trust-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.trust-feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
  background: var(--pt-bg-card-hover);
}

.feature-icon {
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border-radius: 50%;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.trust-feature-item:hover .feature-icon {
  transform: scale(1.08);
  color: #ffffff;
  background: var(--pt-blue-gradient);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.trust-feature-item:hover .feature-title {
  color: var(--pt-red);
}

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

.feature-title {
  font-family: var(--pt-font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--pt-text-main);
  margin: 0 0 3px 0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.2;
}

.feature-desc {
  font-family: var(--pt-font-body);
  font-size: 12px;
  color: var(--pt-text-muted);
  margin: 0;
  line-height: 1.3;
}


@media (max-width: 1024px) {
  .trust-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ==========================================================================
   PROTECH SHOPPING CART PAGE STYLES
   ========================================================================== */
.protech-cart-main {
  background: var(--pt-bg-dark);
  padding-bottom: 70px;
  min-height: 80vh;
}

.cart-layout-container {
  padding-top: 30px;
}

/* Free Shipping Box */
.cart-free-shipping-box {
  background: #f1f5f9;
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  padding: 16px 22px;
  margin-bottom: 30px;
}

.shipping-box-text {
  font-size: 13.5px;
  color: #334155;
  margin-bottom: 10px;
}

.shipping-box-text span {
  color: var(--pt-red);
  font-weight: 700;
}

.shipping-progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pt-red) 0%, #338bff 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* Cart Grid */
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

/* Cart Table */
.cart-table-wrap {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.protech-cart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.protech-cart-table th {
  background: #f8fafc;
  color: #64748b;
  font-family: var(--pt-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 18px;
  border-bottom: 1px solid var(--pt-border);
}

.protech-cart-table td {
  padding: 18px;
  border-bottom: 1px solid var(--pt-border);
  vertical-align: middle;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-thumb {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid var(--pt-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-thumb-emoji {
  font-size: 28px;
}

.cart-item-title {
  font-family: var(--pt-font-heading);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.cart-item-title a {
  color: var(--pt-text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-item-title a:hover {
  color: var(--pt-red);
}

.cart-item-finish {
  display: inline-block;
  font-size: 11px;
  color: var(--pt-red);
  font-weight: 600;
  margin-right: 8px;
}

.cart-item-sku {
  display: block;
  font-size: 11px;
  color: var(--pt-text-muted);
}

.cart-unit-price,
.cart-item-subtotal {
  font-family: var(--pt-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--pt-text-main);
}

.cart-item-subtotal {
  color: var(--pt-red);
}

/* Stepper */
.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--pt-border, #e2e8f0);
  border-radius: 4px;
  height: 36px;
  box-sizing: border-box;
  overflow: hidden;
  vertical-align: middle;
}

.cart-qty-btn {
  background: transparent;
  border: none;
  color: #475569;
  width: 32px;
  height: 34px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.cart-qty-btn svg {
  width: 12px;
  height: 12px;
  display: block;
  stroke: currentColor;
}

.cart-qty-btn:hover {
  background: #eff6ff;
  color: #2563eb;
}

.cart-qty-btn:active {
  background: #dbeafe;
  transform: scale(0.92);
}

.cart-item-row.qty-updating {
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.cart-qty-input {
  width: 38px;
  height: 34px;
  background: #f8fafc;
  border: none;
  border-left: 1px solid var(--pt-border, #e2e8f0);
  border-right: 1px solid var(--pt-border, #e2e8f0);
  color: #0f172a;
  text-align: center;
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
  -moz-appearance: textfield;
}

.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-remove-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 16px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.cart-remove-btn:hover {
  background: #fef2f2;
  color: #ef4444;
}

.cart-table-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

/* Order Summary Column */
.cart-summary-card {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 90px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.summary-card-title {
  font-family: var(--pt-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--pt-text-main);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pt-border);
}

/* Coupon Code */
.coupon-code-wrap {
  margin-bottom: 22px;
}

.coupon-label {
  display: block;
  font-size: 12px;
  color: var(--pt-text-muted);
  margin-bottom: 8px;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  background: #f8fafc;
  border: 1px solid var(--pt-border);
  border-radius: 4px;
  padding: 10px 12px;
  color: #0f172a;
  font-size: 12px;
  outline: none;
}

.coupon-input:focus {
  border-color: var(--pt-red);
}

.coupon-apply-btn {
  background: #f1f5f9;
  border: 1px solid var(--pt-border);
  color: #0f172a;
  font-family: var(--pt-font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 0 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.coupon-apply-btn:hover {
  background: var(--pt-red);
  border-color: var(--pt-red);
  color: #ffffff;
}

/* Line Items */
.summary-line-items {
  margin-bottom: 24px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--pt-text-muted);
  margin-bottom: 12px;
}

.summary-val {
  color: var(--pt-text-main);
  font-weight: 600;
}

.summary-val.text-green {
  color: #00cc66;
}

.summary-divider {
  height: 1px;
  background: var(--pt-border);
  margin: 16px 0;
}

.summary-line.total-line {
  font-family: var(--pt-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--pt-text-main);
}

.summary-line.total-line .total-val {
  font-size: 20px;
  color: var(--pt-red);
}

.checkout-btn {
  margin-bottom: 20px;
  text-align: center;
  display: block;
}

.cart-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--pt-border);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--pt-text-muted);
}

.trust-badge-item svg {
  color: var(--pt-red);
  flex-shrink: 0;
}

/* Empty State */
.cart-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
}

.empty-cart-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.cart-empty-state h2 {
  font-family: var(--pt-font-heading);
  font-size: 24px;
  color: var(--pt-text-main);
  margin-bottom: 10px;
}

.cart-empty-state p {
  color: var(--pt-text-muted);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 580px) {
  .trust-features-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   SLIDE-OUT CART DRAWER OVERLAY & PANEL
   ========================================================================== */
.protech-cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.protech-cart-drawer-overlay.active {
  visibility: visible;
  opacity: 1;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: #ffffff;
  border-left: 1px solid var(--pt-border);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.protech-cart-drawer-overlay.active .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 18px 22px;
  background: #ffffff;
  border-bottom: 1px solid var(--pt-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-title {
  font-family: var(--pt-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--pt-text-main);
  margin: 0;
  text-transform: uppercase;
}

.drawer-badge {
  font-size: 12px;
  color: var(--pt-text-muted);
}

.cart-drawer-close {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.cart-drawer-close:hover {
  color: var(--pt-red);
  background: #f1f5f9;
}

.drawer-shipping-notice {
  background: rgba(37, 99, 235, 0.08);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
  padding: 10px 22px;
  font-size: 12px;
  color: var(--pt-red);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.cart-drawer-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--pt-border);
  border-radius: 6px;
  position: relative;
}

.cart-drawer-item .item-img {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid var(--pt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-drawer-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer-item .item-emoji {
  font-size: 24px;
}

.cart-drawer-item .item-details {
  flex: 1;
}

.cart-drawer-item .item-name {
  font-family: var(--pt-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.25;
}

.cart-drawer-item .item-name a {
  color: var(--pt-text-main);
  text-decoration: none;
}

.cart-drawer-item .item-name a:hover {
  color: var(--pt-red);
}

.cart-drawer-item .item-finish {
  display: block;
  font-size: 10.5px;
  color: var(--pt-red);
  margin-bottom: 4px;
}

.cart-drawer-item .item-price-qty {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--pt-text-muted);
}

.cart-drawer-item .item-subtotal {
  font-family: var(--pt-font-heading);
  font-weight: 700;
  color: var(--pt-text-main);
}

.cart-drawer-item .item-remove-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  border-radius: 3px;
  transition: color 0.2s;
}

.cart-drawer-item .item-remove-btn:hover {
  color: #ff3344;
}

.cart-drawer-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-drawer-empty .empty-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.cart-drawer-empty p {
  color: var(--pt-text-muted);
  margin-bottom: 20px;
}

.cart-drawer-footer {
  padding: 18px 22px 22px;
  background: #ffffff;
  border-top: 1px solid var(--pt-border);
}

.drawer-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--pt-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--pt-text-main);
  margin-bottom: 16px;
}

.drawer-subtotal-val {
  color: var(--pt-red);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-actions .pt-btn {
  text-align: center;
}

/* ==========================================================================
   16. WOOCOMMERCE COMPLETE PLUGIN COMPATIBILITY & LIGHT THEME STYLES
   ========================================================================== */

/* ── Global WooCommerce Container & Typography ── */
.woocommerce,
.woocommerce-page {
  color: var(--pt-text-main);
}

.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce h4,
.woocommerce-page h1,
.woocommerce-page h2,
.woocommerce-page h3 {
  color: var(--pt-text-main);
  font-family: var(--pt-font-heading);
}

/* ── WooCommerce Standard Notices (Message, Info, Error) ── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews {
  border-radius: 6px !important;
  font-size: 13.5px !important;
  padding: 14px 20px 14px 46px !important;
  margin-bottom: 24px !important;
  line-height: 1.5 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-message {
  background-color: #ecfdf5 !important;
  color: #065f46 !important;
  border: 1px solid #a7f3d0 !important;
  border-top: 3px solid #10b981 !important;
}

.woocommerce-message::before {
  color: #10b981 !important;
}

.woocommerce-info {
  background-color: #eff6ff !important;
  color: #1e40af !important;
  border: 1px solid #bfdbfe !important;
  border-top: 3px solid #3b82f6 !important;
}

.woocommerce-info::before {
  color: #3b82f6 !important;
}

.woocommerce-error {
  background-color: #fef2f2 !important;
  color: #991b1b !important;
  border: 1px solid #fecaca !important;
  border-top: 3px solid #ef4444 !important;
  list-style: none !important;
}

.woocommerce-error::before {
  color: #ef4444 !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: var(--pt-red) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  background: var(--pt-red) !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  padding: 6px 14px !important;
  font-size: 12px !important;
  font-family: var(--pt-font-heading) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  float: right !important;
  text-decoration: none !important;
}

/* ── Standard WooCommerce Form Fields & Controls ── */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row select,
.woocommerce .select2-container--default .select2-selection--single {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid var(--pt-border) !important;
  border-radius: 4px !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--pt-red) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}

.woocommerce form .form-row label {
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.woocommerce form .form-row label .required {
  color: var(--pt-red) !important;
}

/* ── WooCommerce Buttons ── */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: var(--pt-red) !important;
  color: #ffffff !important;
  font-family: var(--pt-font-heading) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: var(--pt-red-hover) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

/* ── Standard WooCommerce Tables (Cart, Checkout, Account, Order) ── */
.woocommerce table.shop_table,
.woocommerce table.shop_table_responsive {
  background: var(--pt-bg-card) !important;
  border: 1px solid var(--pt-border) !important;
  border-radius: 8px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

.woocommerce table.shop_table th {
  background: #f8fafc !important;
  color: #475569 !important;
  font-family: var(--pt-font-heading) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 14px 18px !important;
  border-bottom: 1px solid var(--pt-border) !important;
}

.woocommerce table.shop_table td {
  padding: 16px 18px !important;
  border-bottom: 1px solid var(--pt-border) !important;
  color: var(--pt-text-main) !important;
  vertical-align: middle !important;
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
  background: #f8fafc !important;
  border-top: 1px solid var(--pt-border) !important;
  font-weight: 700 !important;
}

/* ── WooCommerce Checkout Layout ── */
.woocommerce-checkout {
  padding: 20px 0 60px;
}

.woocommerce-checkout #customer_details {
  margin-bottom: 30px;
}

.woocommerce-checkout h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--pt-text-main);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pt-red);
}

.woocommerce-checkout-review-order {
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.woocommerce-checkout-payment {
  background: #f8fafc !important;
  border: 1px solid var(--pt-border) !important;
  border-radius: 6px !important;
  padding: 18px !important;
  margin-top: 20px !important;
}

.woocommerce-checkout-payment ul.payment_methods {
  border-bottom: 1px solid var(--pt-border) !important;
  padding-bottom: 14px !important;
  margin-bottom: 14px !important;
  list-style: none !important;
}

.woocommerce-checkout-payment ul.payment_methods li {
  color: var(--pt-text-main) !important;
  font-size: 13.5px !important;
  margin-bottom: 10px !important;
}

.woocommerce-checkout-payment div.payment_box {
  background: #ffffff !important;
  border: 1px solid var(--pt-border) !important;
  border-radius: 4px !important;
  color: var(--pt-text-muted) !important;
  font-size: 12.5px !important;
  padding: 12px 16px !important;
  margin: 10px 0 !important;
}

/* ── WooCommerce My Account Navigation & Content ── */
.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left;
  width: 25%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--pt-border);
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 14px 18px;
  color: var(--pt-text-main);
  font-family: var(--pt-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: rgba(37, 99, 235, 0.08) !important;
  color: var(--pt-red, #2563eb) !important;
  border-left: 3px solid var(--pt-red, #2563eb) !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: 70%;
  background: var(--pt-bg-card);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

/* ── My Account Content Typography & Greeting ── */
.woocommerce-MyAccount-content p {
  font-size: 14px;
  color: #334155;
  line-height: 1.65;
  margin: 0 0 16px 0;
}

.woocommerce-MyAccount-content p:first-of-type {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--pt-red, #2563eb);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #0f172a;
  font-size: 14.5px;
}

.woocommerce-MyAccount-content strong {
  color: #0f172a;
  font-weight: 700;
}

.woocommerce-MyAccount-content a {
  color: var(--pt-red, #2563eb);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.woocommerce-MyAccount-content p a {
  border-bottom: 1.5px solid rgba(37, 99, 235, 0.3);
  padding-bottom: 1px;
}

.woocommerce-MyAccount-content p a:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

/* ── My Account Orders Table ── */
.woocommerce-MyAccount-content .woocommerce-orders-table,
.woocommerce-MyAccount-content .shop_table_responsive,
.woocommerce-MyAccount-content .my_account_orders {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0 24px;
}

.woocommerce-MyAccount-content .woocommerce-orders-table th,
.woocommerce-MyAccount-content .shop_table_responsive th {
  background: #f8fafc;
  color: #475569;
  font-family: var(--pt-font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--pt-border);
  text-align: left;
}

.woocommerce-MyAccount-content .woocommerce-orders-table td,
.woocommerce-MyAccount-content .shop_table_responsive td {
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: 13.5px;
  vertical-align: middle;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tr:last-child td,
.woocommerce-MyAccount-content .shop_table_responsive tr:last-child td {
  border-bottom: none;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tr:hover td {
  background: #f8fafc;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number a {
  font-weight: 700;
  color: var(--pt-red, #2563eb);
}

/* Action button in orders table */
.woocommerce-MyAccount-content .woocommerce-orders-table .button,
.woocommerce-MyAccount-content .woocommerce-button.view,
.woocommerce-MyAccount-content .shop_table .button {
  background: var(--pt-blue-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%)) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--pt-font-heading) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  padding: 8px 18px !important;
  display: inline-block !important;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25) !important;
  transition: all 0.2s ease !important;
}

.woocommerce-MyAccount-content .woocommerce-orders-table .button:hover,
.woocommerce-MyAccount-content .woocommerce-button.view:hover,
.woocommerce-MyAccount-content .shop_table .button:hover {
  background: #0f172a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3) !important;
}

/* ── My Account Addresses (Billing & Shipping Cards) ── */
.woocommerce-MyAccount-content .woocommerce-Addresses,
.woocommerce-MyAccount-content .u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.woocommerce-MyAccount-content .woocommerce-Address,
.woocommerce-MyAccount-content .u-column1,
.woocommerce-MyAccount-content .u-column2 {
  background: #ffffff;
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  float: none !important;
  width: 100% !important;
  box-sizing: border-box;
}

.woocommerce-MyAccount-content .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.woocommerce-MyAccount-content .woocommerce-Address-title h3,
.woocommerce-MyAccount-content .woocommerce-Address-title .title h3 {
  font-family: var(--pt-font-heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin: 0;
}

.woocommerce-MyAccount-content .woocommerce-Address-title .edit,
.woocommerce-MyAccount-content .woocommerce-Address .edit {
  background: #f1f5f9;
  color: #0f172a !important;
  font-family: var(--pt-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: all 0.2s ease;
}

.woocommerce-MyAccount-content .woocommerce-Address-title .edit:hover,
.woocommerce-MyAccount-content .woocommerce-Address .edit:hover {
  background: var(--pt-red, #2563eb);
  color: #ffffff !important;
}

.woocommerce-MyAccount-content address {
  font-style: normal;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ── My Account Form Controls (Edit Account, Edit Address) ── */
.woocommerce-MyAccount-content form .form-row {
  margin-bottom: 14px;
}

.woocommerce-MyAccount-content form .form-row label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.woocommerce-MyAccount-content form .form-row input.input-text,
.woocommerce-MyAccount-content form .form-row select {
  width: 100%;
  background: #f8fafc !important;
  border: 1.5px solid var(--pt-border) !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  color: #0f172a !important;
  transition: all 0.2s ease !important;
}

.woocommerce-MyAccount-content form .form-row input.input-text:focus,
.woocommerce-MyAccount-content form .form-row select:focus {
  background: #ffffff !important;
  border-color: var(--pt-red, #2563eb) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}

.woocommerce-MyAccount-content fieldset {
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 20px 0;
  background: #fafafa;
}

.woocommerce-MyAccount-content fieldset legend {
  font-family: var(--pt-font-heading);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0f172a;
  padding: 0 8px;
}

.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-MyAccount-content .woocommerce-form-register__submit {
  background: var(--pt-blue-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%)) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--pt-font-heading) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  padding: 13px 30px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
  margin-top: 10px;
}

.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover {
  background: #0f172a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35) !important;
}

@media (max-width: 768px) {

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
    margin-bottom: 25px;
  }

  .woocommerce-MyAccount-content {
    padding: 20px 16px;
  }

  .woocommerce-MyAccount-content .woocommerce-Addresses,
  .woocommerce-MyAccount-content .u-columns {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CART TOAST NOTIFICATION (Light Theme - Shop & Product Details Page)
   ========================================================================== */
#pt-cart-toast {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-left: 4px solid var(--pt-red, #2563eb);
  color: #0f172a;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999999;
  transition: top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  pointer-events: none;
}

#pt-cart-toast.visible {
  top: 24px;
}

#pt-cart-toast .toast-icon {
  color: var(--pt-red, #2563eb);
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
}

/* Hide un-styled default WooCommerce inline notice box */
.woocommerce-message:not(.styled-visible),
.woocommerce-notices-wrapper>.woocommerce-message:not(.styled-visible) {
  display: none !important;
}

/* ==========================================================================
   ABOUT US EDITORIAL PAGE STYLES (Matching Reference Mockup)
   ========================================================================== */
.protech-about-main {
  background-color: #f8fafc;
  min-height: 100vh;
}

.about-hero-section {
  padding: 50px 0 35px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.about-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-breadcrumb a:hover {
  color: var(--pt-shop-blue, #2563eb);
}

.about-breadcrumb .bc-sep {
  color: #cbd5e1;
}

.about-breadcrumb .bc-current {
  color: #0f172a;
  font-weight: 600;
}

.about-hero-header {
  max-width: 750px;
}

.about-main-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  text-transform: capitalize;
  margin: 0 0 10px 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.about-main-subtitle {
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  font-size: 15.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Alternating 2-Column Story Blocks */
.about-content-section {
  padding: 40px 0 70px;
  background: #ffffff;
}

.about-story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 85px;
}

.about-story-row:last-child {
  margin-bottom: 20px;
}

.about-story-text {
  padding: 0 10px;
}

.about-story-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  text-transform: capitalize;
  margin: 0 0 20px 0;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.about-story-body p {
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  font-size: 14.5px;
  line-height: 1.8;
  color: #64748b;
  margin: 0 0 16px 0;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

.about-story-image-wrap {
  position: relative;
  width: 100%;
}

.about-image-card {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #f1f5f9;
  border-radius: 4px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-card:hover img {
  transform: scale(1.04);
}

/* Stats / Milestones Grid */
.about-stats-section {
  padding: 50px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.about-stat-item {
  padding: 10px 16px;
}

.about-stat-item .stat-number {
  display: block;
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 34px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1.2;
  margin-bottom: 4px;
}

.about-stat-item .stat-label {
  display: block;
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Pre-Footer Discount Newsletter Banner (Dark Bar) */
.about-discount-banner {
  background: #111827;
  padding: 45px 0;
  color: #ffffff;
}

.discount-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.discount-banner-text {
  max-width: 500px;
}

.discount-banner-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: 0.2px;
}

.discount-banner-desc {
  font-size: 13.5px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

.discount-banner-form {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  max-width: 480px;
}

.discount-email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 12px 18px;
  font-size: 13.5px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.discount-email-input::placeholder {
  color: #64748b;
}

.discount-email-input:focus {
  border-color: #2563eb;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.discount-submit-btn {
  background: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
  border-radius: 0 4px 4px 0;
  padding: 12px 26px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.discount-submit-btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

/* Responsive Media Queries for About Page */
@media (max-width: 991px) {
  .about-story-row {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 60px;
  }

  .about-story-row.row-image-left .about-story-image-wrap {
    order: 2;
  }

  .about-story-row.row-image-left .about-story-text {
    order: 1;
  }

  .about-image-card {
    height: 320px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .discount-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .discount-banner-form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-main-title {
    font-size: 32px;
  }

  .about-story-title {
    font-size: 24px;
  }

  .about-image-card {
    height: 240px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .discount-banner-form {
    flex-direction: column;
    gap: 10px;
  }

  .discount-email-input {
    border-radius: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
  }

  .discount-submit-btn {
    border-radius: 4px;
    width: 100%;
    padding: 12px 20px;
  }
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */
.protech-contact-main {
  background-color: #f8fafc;
  min-height: 100vh;
  padding-bottom: 80px;
}

.contact-hero-section {
  padding: 50px 0 35px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.contact-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-breadcrumb a:hover {
  color: var(--pt-shop-blue, #2563eb);
}

.contact-breadcrumb .bc-sep {
  color: #cbd5e1;
}

.contact-breadcrumb .bc-current {
  color: #0f172a;
  font-weight: 600;
}

.contact-hero-header {
  max-width: 750px;
}

.contact-main-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  text-transform: capitalize;
  margin: 0 0 10px 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.contact-main-subtitle {
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  font-size: 15.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Contact Info Cards Row */
.contact-cards-section {
  padding: 40px 0 10px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 99, 235, 0.35);
}

.contact-info-card.featured-card {
  border-top: 4px solid var(--pt-shop-blue, #2563eb);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-info-card .card-heading {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.contact-info-card .card-desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.contact-info-card .card-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  flex: 1;
}

.contact-card-link {
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card-link:hover {
  color: var(--pt-shop-blue, #2563eb);
}

.contact-location-text {
  font-size: 14.5px;
  font-weight: 600;
  color: #0f172a;
}

.card-badge-hours {
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

/* Contact Layout Split (Form + Sidebar) */
.contact-form-section {
  padding: 30px 0 10px;
}

.contact-layout-split {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 36px;
  align-items: start;
}

/* Form Card */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.form-card-header {
  margin-bottom: 26px;
}

.form-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.form-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.protech-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  color: #0f172a;
  font-family: var(--pt-font-body, sans-serif);
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

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

.form-submit-row {
  margin-top: 6px;
}

.pt-btn-submit-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pt-blue-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%));
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
}

.pt-btn-submit-contact:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.contact-success-msg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 4px;
  color: #065f46;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

/* Sidebar Column */
.contact-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-promo-card {
  background: #0f172a;
  color: #ffffff;
  border-radius: 6px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.sidebar-promo-card .promo-badge {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.sidebar-promo-card .promo-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.sidebar-promo-card .promo-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 18px 0;
}

.pt-btn-customizer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pt-btn-customizer-link:hover {
  background: #f97316;
  color: #ffffff;
  transform: translateY(-2px);
}

.sidebar-faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 26px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sidebar-faq-card .faq-heading {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px 0;
}

.faq-item {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-item .faq-q {
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
}

.faq-item .faq-a {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for Contact page */
@media (max-width: 991px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-layout-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-card {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .contact-main-title {
    font-size: 30px;
  }

  .form-row.form-row-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pt-btn-submit-contact {
    width: 100%;
  }
}

/* ==========================================================================
   FAQ & KNOWLEDGE BASE PAGE STYLES
   ========================================================================== */
.protech-faq-main {
  background-color: #f8fafc;
  min-height: 100vh;
}

.faq-hero-section {
  padding: 50px 0 40px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 20px;
}

.faq-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-breadcrumb a:hover {
  color: var(--pt-shop-blue, #2563eb);
}

.faq-breadcrumb .bc-sep {
  color: #cbd5e1;
}

.faq-breadcrumb .bc-current {
  color: #0f172a;
  font-weight: 600;
}

.faq-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #2563eb;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq-main-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.faq-main-subtitle {
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  font-size: 15.5px;
  color: #64748b;
  margin: 0 0 28px 0;
  line-height: 1.6;
  max-width: 760px;
}

/* FAQ Live Search Box */
.faq-search-box-wrap {
  max-width: 680px;
}

.faq-search-box {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 4px 16px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-search-box:focus-within {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-search-icon {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.faq-search-box:focus-within .faq-search-icon {
  color: #2563eb;
}

.faq-search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  color: #0f172a;
  font-family: var(--pt-font-body, sans-serif);
}

.faq-search-box input::placeholder {
  color: #94a3b8;
}

.faq-search-clear {
  background: #e2e8f0;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-search-clear:hover {
  background: #cbd5e1;
  color: #0f172a;
}

.faq-search-count {
  font-size: 13px;
  color: #2563eb;
  font-weight: 600;
  margin-top: 10px;
}

/* FAQ Body & Filter Pills */
.faq-body-section {
  padding: 40px 0 60px;
}

.faq-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.faq-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 9px 18px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.faq-pill-btn:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  transform: translateY(-1px);
}

.faq-pill-btn .pill-count {
  background: #f1f5f9;
  color: #64748b;
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-pill-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.faq-pill-btn.active .pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* FAQ Accordion Items */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: #ffffff;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-accordion-header:hover {
  background: #fafafa;
}

.faq-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-cat-tag {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.faq-question-text {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 17.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.faq-accordion-header:hover .faq-question-text,
.faq-accordion-header[aria-expanded="true"] .faq-question-text {
  color: #2563eb;
}

.faq-chevron-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, color 0.2s ease;
}

.faq-accordion-header[aria-expanded="true"] .faq-chevron-icon {
  transform: rotate(180deg);
  background: #eff6ff;
  color: #2563eb;
}

.faq-accordion-collapse {
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-accordion-body {
  padding: 4px 24px 24px 24px;
  border-top: 1px dashed #f1f5f9;
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  font-size: 14.5px;
  color: #475569;
  line-height: 1.75;
}

.faq-accordion-body p {
  margin: 0 0 14px 0;
}

.faq-accordion-body p:last-child {
  margin-bottom: 0;
}

.faq-accordion-body ul,
.faq-accordion-body ol {
  margin: 10px 0 14px 20px;
  padding: 0;
}

.faq-accordion-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq-accordion-body a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
}

.faq-accordion-body strong {
  color: #0f172a;
}

/* FAQ No Results State */
.faq-no-results {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  padding: 50px 30px;
  text-align: center;
  margin-top: 20px;
}

.no-results-icon {
  color: #94a3b8;
  margin-bottom: 16px;
}

.no-results-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.no-results-desc {
  font-size: 14px;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto 20px auto;
  line-height: 1.5;
}

.pt-btn-reset-faq {
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pt-btn-reset-faq:hover {
  background: #1d4ed8;
}

/* FAQ Still Have Questions Section */
.faq-cta-section {
  padding: 60px 0 70px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.faq-cta-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.faq-cta-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.faq-cta-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.faq-cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faq-support-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
}

.faq-support-card.featured {
  border-top: 4px solid #2563eb;
}

.support-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.support-card-icon.whatsapp-icon {
  background: #ecfdf5;
  color: #10b981;
}

.support-card-icon.email-icon {
  background: #eff6ff;
  color: #2563eb;
}

.support-card-icon.customizer-icon {
  background: #fff7ed;
  color: #f97316;
}

.support-card-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.support-card-desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0 0 20px 0;
  line-height: 1.5;
  flex: 1;
}

.pt-btn-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
}

.pt-btn-support-link.whatsapp-btn {
  background: #10b981;
  color: #ffffff;
}

.pt-btn-support-link.whatsapp-btn:hover {
  background: #059669;
}

.pt-btn-support-link.primary-btn {
  background: #2563eb;
  color: #ffffff;
}

.pt-btn-support-link.primary-btn:hover {
  background: #1d4ed8;
}

.pt-btn-support-link.outline-btn {
  background: transparent;
  border: 1.5px solid #0f172a;
  color: #0f172a;
}

.pt-btn-support-link.outline-btn:hover {
  background: #0f172a;
  color: #ffffff;
}

/* ==========================================================================
   PRIVACY POLICY PAGE STYLES
   ========================================================================== */
.protech-privacy-main {
  background-color: #ffffff;
  min-height: 100vh;
}

.privacy-hero-section {
  padding: 50px 0 35px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.privacy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.privacy-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-breadcrumb a:hover {
  color: var(--pt-shop-blue, #2563eb);
}

.privacy-breadcrumb .bc-sep {
  color: #cbd5e1;
}

.privacy-breadcrumb .bc-current {
  color: #0f172a;
  font-weight: 600;
}

.privacy-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #2563eb;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.privacy-main-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -0.4px;
}

.privacy-main-subtitle {
  font-size: 15.5px;
  color: #64748b;
  margin: 0 0 20px 0;
  line-height: 1.6;
  max-width: 780px;
}

.privacy-meta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.privacy-meta-row .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.privacy-meta-row .meta-item svg {
  color: #2563eb;
}

/* Privacy Highlights Grid */
.privacy-highlights-section {
  padding: 35px 0;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.privacy-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 22px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.highlight-icon.shield-icon {
  background: #eff6ff;
  color: #2563eb;
}

.highlight-icon.lock-icon {
  background: #ecfdf5;
  color: #059669;
}

.highlight-icon.custom-icon {
  background: #fff7ed;
  color: #ea580c;
}

.highlight-icon.user-icon {
  background: #f5f3ff;
  color: #7c3aed;
}

.highlight-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.highlight-desc {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Privacy Content Layout Split */
.privacy-content-section {
  padding: 45px 0 80px;
  background: #ffffff;
}

.privacy-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

/* Sticky Sidebar Table of Contents */
.privacy-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-toc-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 22px;
}

.toc-header-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  letter-spacing: 0.2px;
}

.toc-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-nav-link {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  border-left: 2.5px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.35;
}

.toc-nav-link:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.03);
}

.toc-nav-link.active {
  color: #2563eb;
  font-weight: 700;
  border-left-color: #2563eb;
  background: #eff6ff;
}

.privacy-sidebar-help {
  background: #0f172a;
  color: #ffffff;
  border-radius: 6px;
  padding: 20px;
}

.help-box-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.help-box-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0 0 14px 0;
}

.pt-btn-privacy-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s ease;
  width: 100%;
  justify-content: center;
}

.pt-btn-privacy-contact:hover {
  background: #1d4ed8;
}

/* Privacy Article Text */
.privacy-article-body {
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  color: #475569;
  line-height: 1.8;
  font-size: 14.5px;
}

.policy-block {
  margin-bottom: 44px;
  padding-bottom: 34px;
  border-bottom: 1px solid #f1f5f9;
  scroll-margin-top: 100px;
}

.policy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-heading {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.policy-subheading {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin: 20px 0 10px 0;
}

.policy-block p {
  margin: 0 0 14px 0;
}

.policy-block a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 600;
}

.policy-list {
  margin: 10px 0 16px 20px;
  padding: 0;
}

.policy-list li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.policy-list strong {
  color: #0f172a;
}

.policy-callout-box {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin: 20px 0;
}

.policy-callout-box p {
  margin: 0;
  color: #1e3a8a;
  font-size: 14px;
  line-height: 1.6;
}

.policy-contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  border-radius: 0 6px 6px 0;
  padding: 24px;
  margin-top: 20px;
}

.contact-card-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.contact-card-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.contact-card-badge {
  font-size: 11px;
  font-weight: 700;
  background: #e2e8f0;
  color: #475569;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-row {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.detail-label {
  font-weight: 700;
  color: #0f172a;
  min-width: 140px;
}

.detail-value {
  color: #475569;
}

.detail-value a {
  color: #2563eb;
  text-decoration: none;
}

.detail-value a:hover {
  text-decoration: underline;
}

.detail-value.text-green {
  color: #059669;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR FAQ & PRIVACY PAGES
   ========================================================================== */
@media (max-width: 991px) {
  .faq-cta-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .privacy-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .privacy-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {

  .faq-main-title,
  .privacy-main-title {
    font-size: 30px;
  }

  .faq-pill-btn {
    padding: 7px 14px;
    font-size: 12.5px;
  }

  .faq-accordion-header {
    padding: 16px 18px;
  }

  .faq-question-text {
    font-size: 15.5px;
  }

  .faq-accordion-body {
    padding: 4px 18px 18px 18px;
  }

  .privacy-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BLOG & ARTICLES MAGAZINE STYLES
   ========================================================================== */
.protech-blog-main {
  background-color: #f8fafc;
  min-height: 100vh;
}

/* 1. Blog Hero Header */
.blog-hero-section {
  padding: 50px 0 35px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.blog-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
  color: var(--pt-shop-blue, #2563eb);
}

.blog-breadcrumb .bc-sep {
  color: #cbd5e1;
}

.blog-breadcrumb .bc-current {
  color: #0f172a;
  font-weight: 600;
}

.blog-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #2563eb;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-main-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.blog-main-subtitle {
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  font-size: 15.5px;
  color: #64748b;
  margin: 0 0 24px 0;
  line-height: 1.6;
  max-width: 780px;
}

.blog-search-bar-wrap {
  max-width: 620px;
}

.blog-search-box {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 3px 6px 3px 14px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.blog-search-box:focus-within {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.blog-search-icon {
  color: #94a3b8;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.blog-search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 0;
  font-size: 14.5px;
  color: #0f172a;
  font-family: var(--pt-font-body, sans-serif);
}

.blog-search-box input::placeholder {
  color: #94a3b8;
}

.blog-search-clear {
  color: #94a3b8;
  text-decoration: none;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 700;
  margin-right: 6px;
}

.blog-search-clear:hover {
  color: #ef4444;
}

.pt-btn-search-submit {
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pt-btn-search-submit:hover {
  background: #1d4ed8;
}

/* 2. Category Filter Pills */
.blog-filter-section {
  padding: 24px 0 10px;
  background: #f8fafc;
}

.blog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-pill-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.blog-pill-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-1px);
}

.blog-pill-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* 3. Featured Story Card */
.blog-featured-section {
  padding: 25px 0 10px;
}

.featured-story-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.featured-image-wrap {
  position: relative;
  overflow: hidden;
  height: 380px;
  background: #0f172a;
}

.featured-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-story-card:hover .featured-cover-img {
  transform: scale(1.05);
}

.featured-story-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #f97316;
  color: #ffffff;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.featured-content-wrap {
  padding: 36px 36px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.featured-cat-tag {
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.featured-read-time {
  font-size: 12.5px;
  color: #64748b;
}

.featured-story-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 27px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.featured-story-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-story-title a:hover {
  color: #2563eb;
}

.featured-story-excerpt {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 24px 0;
}

.featured-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.featured-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 15px;
  border: 1px solid #dbeafe;
}

.author-text-meta {
  display: flex;
  flex-direction: column;
}

.author-text-meta .author-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

.author-text-meta .publish-date {
  font-size: 12px;
  color: #94a3b8;
}

.pt-btn-read-featured {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pt-blue-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%));
  color: #ffffff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.pt-btn-read-featured:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* 4. Main Blog Feed & Sidebar Layout */
.blog-main-section {
  padding: 35px 0 70px;
}

.blog-layout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.blog-search-results-banner {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 12px 18px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 24px;
  font-size: 14px;
  color: #1e3a8a;
}

.blog-search-results-banner a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.blog-post-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.post-card-thumb-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.post-card-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.post-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.blog-post-card:hover .post-card-img {
  transform: scale(1.06);
}

.post-card-category-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.post-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-meta-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.meta-dot {
  color: #cbd5e1;
}

.post-card-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.post-card-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card-title a:hover {
  color: #2563eb;
}

.post-card-excerpt {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 18px 0;
  flex: 1;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.post-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.post-card-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 12.5px;
  font-weight: 800;
  color: #2563eb;
  text-decoration: none;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}

.post-card-read-link:hover {
  gap: 9px;
  color: #1d4ed8;
}

/* Blog Pagination */
.blog-pagination-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.blog-pagination-wrap ul.page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.blog-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-pagination-wrap .page-numbers:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.blog-pagination-wrap .page-numbers.current {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Empty State */
.blog-empty-state {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  padding: 50px 30px;
  text-align: center;
}

.empty-icon {
  color: #94a3b8;
  margin-bottom: 16px;
}

.empty-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.empty-desc {
  font-size: 14px;
  color: #64748b;
  max-width: 460px;
  margin: 0 auto 20px auto;
  line-height: 1.5;
}

.pt-btn-reset-blog {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* 5. Sidebar Widgets */
.blog-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 90px;
}

.blog-sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.widget-heading {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  letter-spacing: 0.2px;
}

.widget-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.widget-categories-list .cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 4px;
  color: #475569;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.widget-categories-list .cat-link:hover {
  background: #f8fafc;
  color: #0f172a;
}

.widget-categories-list .cat-link.active {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
}

.cat-badge {
  font-size: 11px;
  font-weight: 700;
  background: #f1f5f9;
  color: #64748b;
  padding: 2px 8px;
  border-radius: 50px;
}

.widget-categories-list .cat-link.active .cat-badge {
  background: #dbeafe;
  color: #2563eb;
}

/* Customizer Promo Widget */
.widget-customizer-promo {
  background: #0f172a;
  color: #ffffff;
}

.widget-customizer-promo .promo-pill {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.widget-customizer-promo .promo-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.widget-customizer-promo .promo-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 18px 0;
}

.pt-btn-launch-customizer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
}

.pt-btn-launch-customizer:hover {
  background: #f97316;
  color: #ffffff;
}

/* Popular Articles List */
.widget-popular-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popular-article-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pop-thumb {
  width: 64px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0f172a;
}

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

.popular-article-item:hover .pop-thumb img {
  transform: scale(1.08);
}

.pop-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pop-date {
  font-size: 11px;
  color: #94a3b8;
}

.pop-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.pop-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pop-title a:hover {
  color: #2563eb;
}

/* WhatsApp Box */
.widget-whatsapp-box {
  background: #ecfdf5;
  border-color: #a7f3d0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wa-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.wa-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 17px;
  font-weight: 800;
  color: #065f46;
  margin: 0 0 6px 0;
}

.wa-desc {
  font-size: 12.5px;
  color: #047857;
  line-height: 1.45;
  margin: 0 0 14px 0;
}

.wa-btn-link {
  display: inline-block;
  background: #10b981;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s ease;
  width: 100%;
}

.wa-btn-link:hover {
  background: #059669;
}

/* ==========================================================================
   SINGLE BLOG POST READING STYLES
   ========================================================================== */
.protech-single-post-main {
  background: #ffffff;
  min-height: 100vh;
}

.single-post-hero {
  padding: 45px 0 25px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.post-breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.post-breadcrumb a:hover {
  color: #2563eb;
}

.post-breadcrumb .bc-sep {
  color: #cbd5e1;
}

.post-breadcrumb .bc-current {
  color: #0f172a;
  font-weight: 600;
}

.single-post-header-content {
  max-width: 860px;
}

.post-cat-badge {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid #dbeafe;
}

.single-post-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px 0;
  line-height: 1.25;
}

.post-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.meta-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-author .author-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.meta-author .author-role {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.meta-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
}

/* Cover Section */
.single-post-cover-section {
  padding: 30px 0 10px;
}

.post-cover-image-card {
  width: 100%;
  max-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.post-cover-image-card img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Single Post Body */
.single-post-body-section {
  padding: 40px 0 70px;
}

.single-post-layout {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 50px;
  max-width: 860px;
  margin: 0 auto;
}

.post-share-sidebar {
  position: relative;
}

.share-box-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.share-label {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.share-btn.wa {
  background: #10b981;
}

.share-btn.fb {
  background: #1877f2;
}

.share-btn.tw {
  background: #0f172a;
}

.share-btn.cp {
  background: #64748b;
}

/* Single Article Body Typography */
.single-article-content {
  font-family: var(--pt-font-body, -apple-system, sans-serif);
  font-size: 16px;
  line-height: 1.85;
  color: #334155;
}

.entry-content-body p {
  margin: 0 0 20px 0;
}

.entry-content-body h2 {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin: 36px 0 16px 0;
}

.entry-content-body h3 {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 28px 0 12px 0;
}

.entry-content-body ul,
.entry-content-body ol {
  margin: 14px 0 24px 24px;
}

.entry-content-body li {
  margin-bottom: 10px;
}

.entry-content-body blockquote {
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #1e3a8a;
}

.entry-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 20px 0;
}

.post-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.tags-label {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.tag-pill {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag-pill:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Author Bio Card */
.author-bio-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 24px;
  margin: 36px 0;
}

.author-bio-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}

.author-bio-name {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.author-bio-title {
  display: block;
  font-size: 12px;
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.author-bio-desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Single Post Navigation */
.single-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.nav-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease;
}

.nav-box:hover {
  border-color: #2563eb;
}

.nav-direction {
  font-size: 11px;
  font-weight: 800;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.35;
}

.nav-title:hover {
  color: #2563eb;
}

/* Related Articles */
.single-related-section {
  padding: 50px 0 60px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

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

.related-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.related-view-all {
  font-family: var(--pt-font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  color: #2563eb;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-thumb-link {
  display: block;
  height: 170px;
  overflow: hidden;
  background: #0f172a;
}

.related-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.related-card-content {
  padding: 16px;
}

.related-date {
  font-size: 11.5px;
  color: #94a3b8;
  display: block;
  margin-bottom: 6px;
}

.related-card-title {
  font-family: var(--pt-font-heading, 'Rajdhani', sans-serif);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

.related-card-title a {
  color: #0f172a;
  text-decoration: none;
}

.related-card-title a:hover {
  color: #2563eb;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR BLOG PAGES
   ========================================================================== */
@media (max-width: 991px) {
  .featured-story-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-image-wrap {
    height: 280px;
  }

  .featured-content-wrap {
    padding: 24px;
  }

  .blog-layout-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-column {
    position: static;
  }

  .single-post-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .share-box-sticky {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
  }

  .related-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .blog-main-title,
  .single-post-title {
    font-size: 28px;
  }

  .blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .single-post-navigation {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   17. HIGH-PERFORMANCE SCROLL REVEAL ANIMATION ENGINE & SCROLL CONTROLS
   ========================================================================== */

/* ── Dynamic Top Scroll Progress Bar ── */
#pt-scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pt-red, #2563eb) 0%, #3b82f6 50%, #60a5fa 100%);
  z-index: 999999;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
  pointer-events: none;
  transition: width 0.08s ease-out;
  transform: translateZ(0);
}

/* ── Floating Back to Top Button ── */
#pt-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af 0%, var(--pt-red, #2563eb) 100%);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    box-shadow 0.25s ease;
  outline: none;
}

#pt-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#pt-back-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45), 0 4px 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--pt-red, #2563eb) 0%, #3b82f6 100%);
}

#pt-back-to-top:active {
  transform: translateY(-1px) scale(0.98);
}

#pt-back-to-top svg {
  transition: transform 0.25s ease;
}

#pt-back-to-top:hover svg {
  transform: translateY(-2px);
}

/* ── Core Scroll Reveal Engine Styles (Homepage Sections & Universal Footer) ── */
.protech-home-page .pt-reveal-item,
.protech-home-page [data-pt-reveal],
.front-page-main .pt-reveal-item,
.front-page-main [data-pt-reveal],
.protech-footer .pt-reveal-item,
.protech-footer [data-pt-reveal],
#colophon .pt-reveal-item,
#colophon [data-pt-reveal] {
  opacity: 0;
  transition-property: opacity, transform, filter;
  transition-duration: 0.85s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  transform: translateZ(0);
}

/* Non-homepage page contents (blog, contact, etc.) remain immediately visible without delay */
body:not(.protech-home-page):not(.home) #content .pt-reveal-item,
body:not(.protech-home-page):not(.home) #content [data-pt-reveal],
body:not(.protech-home-page):not(.home) .site-main:not(.front-page-main) .pt-reveal-item,
body:not(.protech-home-page):not(.home) .site-main:not(.front-page-main) [data-pt-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Reveal Variations */
.protech-home-page [data-pt-reveal="fade-up"],
.protech-home-page .pt-reveal-fade-up,
.protech-footer [data-pt-reveal="fade-up"],
.protech-footer .pt-reveal-fade-up,
#colophon [data-pt-reveal="fade-up"],
#colophon .pt-reveal-fade-up {
  transform: translate3d(0, 42px, 0);
}

.protech-home-page [data-pt-reveal="fade-down"],
.protech-home-page .pt-reveal-fade-down,
.protech-footer [data-pt-reveal="fade-down"],
.protech-footer .pt-reveal-fade-down {
  transform: translate3d(0, -42px, 0);
}

.protech-home-page [data-pt-reveal="fade-left"],
.protech-home-page .pt-reveal-fade-left {
  transform: translate3d(48px, 0, 0);
}

.protech-home-page [data-pt-reveal="fade-right"],
.protech-home-page .pt-reveal-fade-right {
  transform: translate3d(-48px, 0, 0);
}

.protech-home-page [data-pt-reveal="zoom-in"],
.protech-home-page .pt-reveal-zoom-in,
.protech-footer [data-pt-reveal="zoom-in"],
.protech-footer .pt-reveal-zoom-in {
  transform: scale3d(0.9, 0.9, 1);
}

.protech-home-page [data-pt-reveal="zoom-up"],
.protech-home-page .pt-reveal-zoom-up {
  transform: translate3d(0, 36px, 0) scale3d(0.92, 0.92, 1);
}

.protech-home-page [data-pt-reveal="flip-up"],
.protech-home-page .pt-reveal-flip-up {
  transform: perspective(800px) rotateX(22deg) translate3d(0, 36px, 0);
}

/* ── Active Revealed State ── */
.pt-reveal-item.pt-revealed,
[data-pt-reveal].pt-revealed {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) !important;
}


/* ── Stagger Delays (Declarative) ── */
[data-pt-delay="50"] {
  transition-delay: 0.05s;
}

[data-pt-delay="80"] {
  transition-delay: 0.08s;
}

[data-pt-delay="100"] {
  transition-delay: 0.10s;
}

[data-pt-delay="120"] {
  transition-delay: 0.12s;
}

[data-pt-delay="150"] {
  transition-delay: 0.15s;
}

[data-pt-delay="180"] {
  transition-delay: 0.18s;
}

[data-pt-delay="200"] {
  transition-delay: 0.20s;
}

[data-pt-delay="240"] {
  transition-delay: 0.24s;
}

[data-pt-delay="250"] {
  transition-delay: 0.25s;
}

[data-pt-delay="300"] {
  transition-delay: 0.30s;
}

[data-pt-delay="350"] {
  transition-delay: 0.35s;
}

[data-pt-delay="400"] {
  transition-delay: 0.40s;
}

[data-pt-delay="450"] {
  transition-delay: 0.45s;
}

[data-pt-delay="500"] {
  transition-delay: 0.50s;
}

[data-pt-delay="600"] {
  transition-delay: 0.60s;
}

[data-pt-delay="700"] {
  transition-delay: 0.70s;
}

/* ── Automatic Grid Cascade Stagger Classes ── */
.pt-stagger-group>*:nth-child(1) {
  transition-delay: 0.04s;
}

.pt-stagger-group>*:nth-child(2) {
  transition-delay: 0.10s;
}

.pt-stagger-group>*:nth-child(3) {
  transition-delay: 0.16s;
}

.pt-stagger-group>*:nth-child(4) {
  transition-delay: 0.22s;
}

.pt-stagger-group>*:nth-child(5) {
  transition-delay: 0.28s;
}

.pt-stagger-group>*:nth-child(6) {
  transition-delay: 0.34s;
}

.pt-stagger-group>*:nth-child(7) {
  transition-delay: 0.40s;
}

.pt-stagger-group>*:nth-child(8) {
  transition-delay: 0.46s;
}

.pt-stagger-group>*:nth-child(9) {
  transition-delay: 0.52s;
}

.pt-stagger-group>*:nth-child(10) {
  transition-delay: 0.58s;
}

.pt-stagger-group>*:nth-child(11) {
  transition-delay: 0.64s;
}

.pt-stagger-group>*:nth-child(12) {
  transition-delay: 0.70s;
}

/* ── Component-Specific Micro-Animation Choreography ── */

/* 1. Category Cards Hover Dynamics */
.category-card-item {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.category-card-item:hover {
  transform: translateY(-8px) scale(1.03);
}

/* 2. Trust Feature Icons Bounce Pop on Reveal */
@keyframes ptTrustIconPop {
  0% {
    transform: scale(0.65) rotate(-6deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.15) rotate(2deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.trust-feature-item.pt-revealed .feature-icon svg {
  animation: ptTrustIconPop 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.trust-feature-item {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* 3. Split Promo Left Image Floating Effect on Reveal */
@keyframes ptShowcaseFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.split-media-wrapper.pt-revealed .split-showcase-img {
  animation: ptShowcaseFloat 5.5s ease-in-out infinite 1s;
}

/* Wreath Badge Glow on Reveal */
.quality-badge-wreath {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.split-media-wrapper.pt-revealed .quality-badge-wreath {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* 4. Product Cards Enhanced Hover & Entrance */
.bestseller-card,
.shop-card,
.passion-product-card,
.bestseller-shop-card {
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-font-smoothing: antialiased;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}

.bestseller-card.pt-revealed,
.shop-card.pt-revealed,
.passion-product-card.pt-revealed,
.bestseller-shop-card.pt-revealed {
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}

.bestseller-card:hover,
.shop-card:hover,
.passion-product-card:hover,
.bestseller-shop-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
}

/* 5. Fascinating Pillars & Reviews */
.pillar-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.review-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

/* 6. Blog Card Lift on Hover */
.blog-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.09);
}

/* ── Fallbacks & Accessibility ── */
/* When JS is disabled or not initialized yet, ensure all elements remain fully visible */
.no-js .pt-reveal-item,
.no-js [data-pt-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {

  .pt-reveal-item,
  [data-pt-reveal],
  .pt-reveal-item.pt-revealed,
  [data-pt-reveal].pt-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}