:root {
  --primary: #1e73be;
  --primary-dark: #155a94;
  --accent: #ffb300;
  --bg: #f5f6f8;
  --text: #222;
  --muted: #666;
  --border: #ddd;
  --white: #fff;
  --danger: #d9534f;
  --success: #2e7d32;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.topbar {
  background: #007eff;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.brand {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 10px 50px;
}
.navbar-nav .nav-link {
  color: #333;
  font-weight: 300;
}
.dropdown-item:focus, .dropdown-item:hover {
	background-color: #007eff;
	color: #fff;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: #007eff;
	color: #fff;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); }
.btn-primary-custom {
  background: #000;
  color: var(--white);
  border: 0;
  padding: 7px 20px;
  font-size: 13px;
  border-radius: 0px;
}
.btn-primary-custom:hover { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }

.btn-primary-custom1 {
  background: #007eff;
  color: var(--white);
  border: 0;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 0px;
}
.btn-primary-custom1:hover { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }
.btn-primary-custom2:hover { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }
.btn-primary-custom2 {
  background: #007eff;
  color: var(--white);
  border: 0;
  border-radius: 0px;
}

.btn-outline-light {
	border-radius: 0;
}


.btn-outline-custom {
  background: var(--white);
  color: #007eff;
  border: 1px solid #007eff;
  border-radius: 0px;
  font-size: 13px;
  padding: 8px 15px;
}


.btn-outline-custom:hover { background: #007eff; color: var(--white); }
.hero {
  background-image: url('../img/main-bg-img-1.png');
  background-size: cover;
  border: 0px;
  padding: 35px 0;
  min-height: 450px;
  align-content: center;
}
.section-title { font-size: 32px; font-weight: 600; margin-bottom: 25px; }
.section-subtitle { font-size: 15px; color: #fff; margin-bottom: 25px; }
.card-simple {
  background: var(--white);
  border: 1px solid var(--border);
  height: 100%;
}


.badge-brand {
 /* display: inline-block; */
  font-size: 12px;
  padding: 4px 8px;
  border: 0px;
  background: #007eff;
  margin-bottom: 8px;
  color: #fff;
  display: none;
  
}

.numblink {
	font-size: 24px;
	color: #fff;
	background-color: #007eff;
	padding: 12px 19px;
	border-radius: 25px;
	margin-left: 350px;

	font-weight: 700;
}

.dropdown-menu {
	width: 225px;
	padding: 0px;
	border-radius: 0px;
}
.dropdown-item {
	font-size: 13px;
	height: 42px;
	align-content: center;
	border-bottom: 1px solid #dfdfdf;
}

.review-stars {
  color: #f4b400;
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}

.category-box {
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: .2s ease;
}
.category-box:hover, .product-card:hover { border-color: #007eff; transform: scale(1.01) }
.category-box h3 { font-size: 20px; font-weight: 600; margin: 12px 0 0; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  height: 100%;
  border-radius: 5px;
}
.product-card .product-image {
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  height: 245px;
  padding: 18px;
  display: flex;
  border-radius: 5px;

  justify-content: center;
}
.product-card .product-body { padding: 16px; }
.product-title { font-size: 18px; font-weight: 500; margin-bottom: 0px; }
.product-desc { color: var(--muted); font-size: 13px;  }
.price { font-size: 16px; font-weight: 700; color: #007eff; }
.old-price { font-size: 13px; color: #888; text-decoration: line-through; margin-left: 8px; }
.badge-cat {
 /* display: inline-block; */
  font-size: 12px;
  padding: 4px 8px;
  border: 0px;
  background: #007eff;
  margin-bottom: 8px;
  color: #fff;
  display: none;
}
.info-block, .policy-box, .cart-summary, .auth-box, .search-panel {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
}
.info-block h2, .policy-box h2, .auth-box h1 { font-size: 32px; font-weight: 600; }
.info-block h3, .policy-box h3 { font-size: 20px; font-weight: 600; margin-top: 20px; }
.page-banner {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-bottom: 24px;
}
.page-banner h1 { font-size: 35px; font-weight: 600; margin: 0 0 8px; }
.page-banner p { font-size: 15px; color: var(--muted); margin: 0; }
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.footer h4 { font-size: 20px; font-weight: 600; margin-bottom: 14px; }
.footer p, .footer a, .footer li { font-size: 14px; color: #555; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.cart-item {
  display: flex;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}
.cart-item img { width: 90px; height: 90px; object-fit: cover; border: 1px solid var(--border); }
.qty-box { width: 70px; }
.alert-inline {
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: #f8f8f8;
  font-size: 14px;
}
.form-label { font-weight: 500; }
.search-results-count { color: var(--muted); font-size: 14px; }
.empty-state {
  background: var(--white);
  border: 1px dashed #bbb;
  padding: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-title, .info-block h2, .policy-box h2, .auth-box h1 { font-size: 25px; }
  .page-banner h1 { font-size: 32px; }
  .brand { font-size: 20px; }
}

.input-group {
    width: 90%;
}

.header-search { flex: 1 1 420px; max-width: 760px; margin: 0px }
.header-search .form-control, .header-search .form-select { font-size: 13px; }
.cart-link { white-space: nowrap; }
.small-label { display:inline-block; font-size:13px; color: #ffff; margin-bottom: 10px; }
.hero-title { font-size: 40px; color: #fff; }
.hero-side-box, .trust-box, .cta-box, .testimonial-box { background: var(--white); border: 1px solid var(--border); }
.hero-side-box { padding: 20px; }
.simple-list { padding-left: 18px; }
.simple-list li { margin-bottom: 8px; }
.categories-section, #trustSection { background: #f8f8f8; }
.trust-box { padding: 20px 12px; height: 100%; display:flex; flex-direction:column; justify-content:center; gap:6px; }
.trust-box strong { font-size: 25px; color: #007eff; font-weight: 600; }
.trust-box span { font-size: 14px; color: #000; }
.testimonial-box p { font-size: 14px; color: #444; margin-bottom: 5px; }
.cta-box { padding: 30px 20px; }
.cta-box h2 { font-size: 32px; font-weight: 600; margin-bottom: 10px; }
.cta-box p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.footer { background: #f1f1f1; }
@media (max-width: 991px) {
  .header-search { max-width: 100%; margin: 15px 0; }
}


.cta-box1 { background:#007eff; border: 1px solid var(--border); padding: 50px 10px;}



.search-panel {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .search-panel {
    position: sticky;
    top: 20px;
  }
}

.filter-sidebar {
  position: sticky;
  top: 20px;
}

.category-checkbox-list {
  max-height: 400px;
  overflow-y: auto;
}








.content-box {
  background: #def3ff;
  border: 1px solid #e4e7ec;
  padding: 34px;
  height: 100%;
}

.content-box h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
  color: #101828;
}

.content-box p {
  font-size: 15px;
  line-height: 1.9;
  color: #475467;
  margin-bottom: 16px;
}

.feature-list {
  margin: 0 0 18px 0;
  padding-left: 18px;
}

.feature-list li {
  font-size: 15px;
  line-height: 1.9;
  color: #344054;
  margin-bottom: 10px;
}

.security-overview-section {
  background: #f8fafc;
}

.security-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  padding: 68px;
}

.security-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.security-main-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
}

.security-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #007eff;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
}

.security-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.security-title {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  color: #111827;
  margin-bottom: 18px;
}

.security-text {
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 16px;
}

.security-feature {
  margin-top: 22px;
}

.security-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 400;
  color: #111827;
}

.security-progress {
  height: 10px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.progress-blue {
  background: #007eff;
}

.progress-gold {
  background: #007eff;
}

.progress-red {
  background: #007eff;
}

.btn-security-primary {
  background: #111827;
  color: #fff;
  border: 1px solid #111827;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.btn-security-primary:hover {
  background: #000;
  color: #fff;
}

.btn-security-outline {
  background: transparent;
  color: #111827;
  border: 1px solid #d1d5db;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.btn-security-outline:hover {
  background: #f3f4f6;
  color: #111827;
}

@media (max-width: 991px) {
  .security-card {
    padding: 28px;
  }

  .security-title {
    font-size: 32px;
  }

  .security-main-image {
    height: 420px;
  }
}





.hero-slider-section {
  position: relative;
}

.hero-slide {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
  color: #fff;
}

.hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.92);
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-slider-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
  width: 6%;
}

@media (max-width: 991px) {
  .hero-slide {
    min-height: 540px;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .hero-slide {
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }
}










.sticky-call-box {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
 display: none;
}

.sticky-call-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #66ff00;
  color: #000;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  border: 1px solid #000;
  min-width: 240px;
}

.sticky-call-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: rotate(90deg);
}

.sticky-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-call-text strong {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}

.sticky-call-text small {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.form-control {
	font-size: 13px;
}

.sticky-call-link:hover {
  color: #000;
  text-decoration: none;
  transform: translateX(-4px);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .sticky-call-box {
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .sticky-call-link {
    min-width: auto;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .sticky-call-text strong {
    font-size: 16px;
  }

  .sticky-call-text small {
    font-size: 14px;
  }

  .sticky-call-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }
}






.blog-section {
  background: #f8f9fb;
}

.section-title .sub-title {
  display: inline-block;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
}

.blog-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 22px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.blog-content h4 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.blog-content h4 a {
  color: #111;
  text-decoration: none;
}

.blog-content h4 a:hover {
  color: #0d6efd;
}

.blog-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  text-decoration: none;
  border-radius: 0px;
  font-weight: 400;
  transition: 0.3s ease;
}

.blog-btn:hover {
  background: #0d6efd;
  color: #fff;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
  }

  .blog-img img {
    height: 220px;
  }
}








.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 900px;
  margin: 0 auto;
  background: #007eff;
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.cookie-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: #fff;
  color: #000;
}

.cookie-btn-light {
  background: #fff;
  color: #000;
}

.cookie-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-btn-outline:hover {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}



.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.cookie-modal-header,
.cookie-modal-footer {
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}

.cookie-modal-footer {
  border-top: 1px solid #eee;
  border-bottom: none;
  text-align: right;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h4 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.cookie-modal-header button {
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

.cookie-modal-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #111;
}

.cookie-modal-body label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }
}

.faq-section {
  background: #f8f9fb;
}

.section-title .sub-title {
  display: inline-block;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px !important;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 24px;
  line-height: 1;
  color: #0d6efd;
  margin-left: 15px;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.faq-item.active .faq-icon {
  content: "-";
}





/*
.brand-hero {
  padding: 40px 0 30px;
  background: #f8fbff;
}

.brand-hero-box {
  background: linear-gradient(135deg, #0b1f3a, #163b6d);
  border-radius: 20px;
  padding: 50px;
  color: #fff;
  overflow: hidden;
}

.brand-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}

.brand-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
  max-width: 540px;
}

.brand-hero-img {
  max-height: 320px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .brand-hero-box {
    padding: 30px;
  }

  .brand-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .brand-hero {
    padding: 25px 0 20px;
  }

  .brand-hero-box {
    padding: 22px;
    text-align: center;
  }

  .brand-hero h1 {
    font-size: 28px;
  }

  .brand-hero p {
    margin: 0 auto;
  }

  .brand-hero-img {
    max-height: 220px;
    margin-top: 10px;
  }
} */



.brand-hero {
  width: 100%;
  min-height: 430px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.brand-hero.default-hero {
  background-image: url("assets/images/brands/default-hero.jpg");
}

.brand-hero.norton-hero {
  background-image: url("../img/nrtn-main-bg.jpg");
}

.brand-hero.mcafee-hero {
  background-image: url("../img/mcf-main-bg.jpg");
}

.brand-hero.total-hero {
  background-image: url("../img/tot-main-bg.jpg");
}

.brand-hero.kaspersky-hero {
  background-image: url("../img/ksp-main-bg.jpg");
}

.brand-hero.avg-hero {
  background-image: url("../img/avg-main-bg.jpg");
}

.brand-hero.avast-hero {
  background-image: url("../img/avt-main-bg.jpg");
}

.brand-hero.webroot-hero {
  background-image: url("../img/wbt-main-bg.jpg");
}

































