
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --brand-color: #0d6efd; /* d6efd #142736 */
    --brand-dark:  #0b5ed7; /* 0b5ed7 */
    --bs-body-first-bg: #E4EDFA; /* E3EBF9 */
    --bs-body-second-bg: #A2CCF7; /* A0CAF5*/
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 { font-size: 2.25rem; } /* ~40px */
h2 { font-size: 1.75rem; }   /* ~32px */
h3 { font-size: 1.75rem; }/* ~28px */
h4 { font-size: 1.5rem; } /* ~24px */
h5 { font-size: 1.25rem; }/* ~20px */
h6 { font-size: 1rem; }   /* ~16px */

@media (max-width: 768px) {
  h1 { font-size: 1.75rem !important; }
  h3 { font-size: 2rem !important; }
  h4 { font-size: 1.75rem !important; }
  h5 { font-size: 1.5rem !important; }
  h6 { font-size: 1.25rem !important; }
}

@media (max-width: 768px) {
  .badge-uptime {
    right: 30px !important;
    transform: translate(0, -50%) !important;
  }
}
@media (max-width: 767.98px) {
  .cart-bar-responsive {
    top: 80px !important;
  }
}

.page-content.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--bs-body-color);
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .page-content.prose {
    font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .page-content.prose {
    font-size: 1.2rem;
  }
}

.page-content.prose h1,
.page-content.prose h2,
.page-content.prose h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.page-content.prose p,
.page-content.prose li {
  margin-bottom: 1.25rem;
  font-size: inherit;
}

.page-content.prose ul,
.page-content.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  display: block;
}

.page-content.prose a {
  color: var(--bs-primary);
  text-decoration: underline;
  transition: color 0.2s;
}

.page-content.prose a:hover {
  color: var(--bs-primary-dark);
}

.custom-font {
  font-size: 1.75rem;
}
    a { text-decoration: none; }
    .fw-semibold { font-weight: 600; }
    .fw-bold      { font-weight: 700; }
    .promobars { background-color: var(--brand-dark); }
    .promobars__link { display: block; text-decoration: none; }
    .promobars__link__text { font-weight: 700; margin: 0; padding: .5rem 1rem; text-align: center; color: #fff; }
    .promobars__link__text span:first-child { font-weight: 700; margin-right: .5rem; }
    .promobars__link__text__graphic img { vertical-align: middle; height: 1.2rem; }
    .no-display--767 { display: none; }
.card.hover-lift .card-body {
  padding: 2rem; /* по-голям вътрешен отстъп */
}

.bg--color-white-to-salem-lightest-to-white {
  background:
linear-gradient(180deg,rgba(255,255,255,.9) 12.5%,rgb(225, 237, 255) 50%,rgba(255,255,255,.9) 92.5%);
}

.code-input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
  gap: 6px;
}

.code-input-grid input {
  text-align: center;
  font-size: 1.2rem;
  padding: 6px 0;
}
  
#showCartSidebarSecondary {
  color: #000 !important;
  font-weight: 600;
}
 
.dropdown-menu {
  position: absolute !important;
  z-index: 1080 !important;
}
.domain-list > .d-flex {
  transition: all 0.2s ease;
  background-color: #fff;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid #dee2e6;
}

.domain-list > .d-flex:hover {
  background-color: #e4edfa; /* Мек син тон при hover */
  border-color: var(--brand-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.domain-loading {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem 0;
  color: var(--brand-dark);
}

.dot-anim::after {
  content: '';
  display: inline-block;
  animation: dots 1.2s steps(4, end) infinite;
  width: 1em;
  text-align: left;
}

@keyframes dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

.card.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  will-change: transform;
  border: 2px solid #e0ecff; /* светлосин бордър */
  border-radius: 1rem;        /* по-обли ъгли */
  text-align: left;           /* ляво подравняване */
}

.card.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-color); /* променя цвета при hover */
}

.card.hover-lift h5 {
  font-weight: 700;
}


    @media (min-width: 768px) {
      .no-display--767 { display: inline-block; }
    }
@media (max-width: 1400px) {
  .navbar .navbar-nav.ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .navbar .navbar-nav.ms-auto .nav-item {
    width: 100%;
  }

  .navbar .navbar-nav.ms-auto .nav-link {
    width: 100%;
    padding-left: 0;
  }
  .domain-promotions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .domain-promotions > .domain-promo {
    flex: 1 1 100%;
    max-width: 100%;
    justify-content: center;
  }
  .dropdown-menu.dropdown-menu-end {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
  
  .navbar .dropdown-menu {
    width: 100% !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    margin-top: 0.5rem;
  }
.custom-font {
  font-size: 1.25rem;
}
}

body.cart-open {
  overflow: hidden;
  touch-action: none; /* предотвратява скрол на мобилни устройства */
}

.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 666px;
  z-index: 1050;
  overflow-y: auto;
  border-left: 1px solid #ccc;
  background: white;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  box-shadow: -2px 0 10px rgba(0,0,0,0.15);
}

.cart-sidebar.open {
  transform: translateX(0%);
}
@media (max-width: 576px) {
  .cart-sidebar {
    width: 100%;
    max-width: none;
    border-left: none;
    border-top: 1px solid #ccc;
  }
}
.cart-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  transition: opacity 0.3s ease;
}

    .trust-rating { font-size: .9rem; }
    .feature-icon { font-size: 2rem; color: var(--brand-color); }
    .stat-box { border-radius: .5rem; padding: 1.5rem; background-color: #fef7f0; }
    .highlight { background-color: #fff4eb; }
    .footer-dark { background: #F8F8F8; color: #333; display: grid; grid-template-columns: 1fr; padding-top: 2rem; padding-bottom: 2rem; }
    .footer-dark a { color: #333; text-decoration: none; }
    ul[data-icon] svg { width: 2rem; height: auto; }
    .text-brand { color: var(--brand-color) !important; }
    /*.text-brand {
    color: var(--brand-color) !important; 
    background-repeat: repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczpldj0iaHR0cDovL3d3dy53My5vcmcvMjAwMS94bWwtZXZlbnRzIiBpZD0ic3F1aWdnbGUtbGluayIgdmlld0JveD0iMCAwIDEwIDE4Ij48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zcXVpZ2dsZXthbmltYXRpb246c2hpZnQgMXMgbGluZWFyIGluZmluaXRlO31Aa2V5ZnJhbWVzIHNoaWZ0IHtmcm9tIHt0cmFuc2Zvcm06dHJhbnNsYXRlWCgtMTBweCk7fXRvIHt0cmFuc2Zvcm06dHJhbnNsYXRlWCgwKTt9fTwvc3R5bGU+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJibHVlIiBzdHJva2Utd2lkdGg9IjEiIGNsYXNzPSJzcXVpZ2dsZSIgZD0iTTAsMTcuNSBjIDIuNSwwLDIuNSwtMS41LDUsLTEuNSBzIDIuNSwxLjUsNSwxLjUgYyAyLjUsMCwyLjUsLTEuNSw1LC0xLjUgcyAyLjUsMS41LDUsMS41Ii8+PC9zdmc+);
    padding-bottom: 3px;
    }*/
    .btn-primary { background-color: var(--brand-color); border-color: var(--brand-color); }
    .btn-primary:hover { background-color: var(--brand-dark); border-color: var(--brand-dark); }
    .navbar .nav-link {
      font-weight: 600;
    }
    .navbar-nav > .nav-item > .nav-link {
      font-weight: 700;
    }
    .btn-start {
      border-radius: 100px;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }

.badge-float {
  position: absolute;
  background: #fff;
  padding: 0.5rem;
  border-radius: .5rem;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
  line-height: 1;
  font-size: 0.875rem;
  white-space: nowrap;
}
.domain-promotions > div {
  min-width: 80px;
  background: #F6F6F6;
  border-radius: .5rem;
}
.domain-promotions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow: visible;
}

.domain-promo {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: .5rem;
  padding: .75rem 1rem;
  min-width: 120px;
  gap: .75rem;
}

.promo-tld {
  font-weight: 700;
  font-size: 1.65rem;
  margin: 0;
  height: 100%;
}

.promo-pricing {
  text-align: right;
  line-height: 1.1;
}
.promo-pricing .new-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1;
}
.promo-pricing .old-price {
  font-size: .9rem;
  color: #666;
  line-height: 1;
}

.highlight-eu {
  position: relative;
  background: #f8f9fa;
  z-index: 0;
}

.highlight-eu::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--brand-color);
  border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
  top: -20px;
  right: -20px;
  z-index: -1;
}

.highlight-eu .promo-tld,
.highlight-eu .promo-pricing .new-price {
  color: #fff;
}
.highlight-eu .old-price del {
  color: rgba(255,255,255,0.7);
}

.highlight-eu {
  position: relative;
  z-index: 1;
}
.highlight-eu .promo-tld,
.highlight-eu .promo-pricing .new-price {
  color: #000;
}
.highlight-eu .old-price del {
  color: rgba(255,255,255,0.7);
}
.highlight-eu::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--brand-color);
  border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
  top: -20px;
  right: -20px;
  z-index: 0;
}

.speed-section h4 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.speed-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.speed-section ul li {
  display: flex;
  align-items: start;
  font-size: 1rem;
  margin-bottom: .75rem;
}

.speed-section ul li i {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.explore-link {
  color: var(--brand-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all .3s ease;
}

.explore-link::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  bottom: -2px;
  left: 0;
  background: var(--brand-color);
  transition: width .3s ease;
}

.explore-link:hover {
  transform: translateX(4px);
}

.explore-link:hover::after {
  width: 100%;
}

.stat-box {
  border-radius: .5rem;
  padding: 1rem;
  background-color: #fef7f0;
  font-size: 1rem;
}
.domain-search {
  height: 60px;
}

.domain-search .form-control,
.domain-search .btn,
.domain-search .input-group-text {
  height: 100%;
  border-radius: 0;
}
.domain-search .input-group-text i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}


@media (max-width: 992px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar .dropdown-menu,
  .navbar .dropdown-menu.dropdown-menu-end {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    z-index: 9999;
    width: auto !important;
    transform: translateY(0) !important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.15) !important;
    margin-top: 0.5rem !important;
  }
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 360px;
  background-color: #fff;
  padding: 2rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  overflow-y: auto;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.mobile-sidebar .navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-color, #0d6efd);
  text-decoration: none;
  margin-bottom: 2rem;
  display: block;
}

.mobile-sidebar .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: #333;
}

/* Navigation Styles */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav > li {
  /* 
  margin-bottom: 1rem; 
  margin-bottom: 0;
  border-bottom: 1px solid #eaeaea;
  */
  margin-bottom: 1rem;
  border-bottom: 1px solid #0d6efd;
  border-radius:10px;
  border-top: 1px solid #0d6efd;
}

.mobile-nav > li:last-child {
  border-bottom: none;
}

.mobile-nav > li > a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: #212529;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.25s ease-in-out;
}

.mobile-nav > li > a i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  color: #0d6efd;
}

.mobile-nav > li > a:hover {
  background-color: #f1f5ff;
  color: #0d6efd;
  border-radius:10px;
}

.mobile-nav > li > ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--brand-color, #0d6efd);
  border-radius: 0 0 0 6px;
}

.mobile-nav > li > ul li a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav > li > ul li a:hover {
  color: #0d6efd;
}

/* Overlay for background when menu is open */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1500;
}

/* Hamburger toggle button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
}

.cta-modern {
  background-color: #04163d; /* тъмнозелено, подобно на снимката */
}

.badge-box {
  font-size: 0.9rem;
}

.hosting-card {
  padding: 20px 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  color: #000;
  width: 100%;
  transition: transform 0.2s;
}

.hosting-card:hover {
  transform: translateY(-2px);
}

.hosting-icon {
  font-size: 2.5rem; /* или 40px */
  color: #000;
}

.hosting-arrow {
  color: #5f3eff;
  font-weight: bold;
  font-size: 24px;
}


.alerts {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #fff;
  font-size: 16px;
  max-width: 400px;
  animation: fadeIn 0.4s ease-in-out;
}

.alerts-success { background-color: #198754; }
.alerts-error { background-color: #dc3545; }
.alerts-warning { background-color: #ffc107; color: #000; }
.alerts-info { background-color: #0dcaf0; color: #000; }

.alerts .close-btn {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 20px;
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  line-height: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

