:root {
 --theme-primary: #e94f43;  --theme-primary-rgb: 233, 79, 67;

  --theme-secondary: #224b8b;
  --theme-secondary-rgb: 34, 75, 139;

  --theme-third: #0082f8;

  --bs-list-group-border-color: rgba(var(--theme-secondary-rgb), 0.15);
  --border-color-soft: rgba(0, 0, 0, 0.65);

  --text-color: #212529;

  --shadow-sm: 0 0.125rem 0.25rem rgba(var(--theme-secondary-rgb), 0.075);
  --shadow-md: 0 0.25rem 0.65rem rgba(var(--theme-secondary-rgb), 0.125);
  --shadow-lg: 0 1rem 3rem rgba(var(--theme-secondary-rgb), 0.175);

  --transition-default: 0.3s ease-in-out;

  --btn-floating-bottom: 35px;

  --period-selector-bg: rgba(var(--theme-primary-rgb), 0.08);
  --period-option-active-bg: #e94f43;
  --period-option-active-text: #224b8b;
  --period-option-inactive-bg: transparent;
  --period-option-inactive-text: #000000;
  --period-option-hover-bg: rgba(var(--theme-primary-rgb), 0.1);
  --period-selector-border: rgba(var(--theme-primary-rgb), 0.2);
  --period-transition-duration: 300ms;
}


:root,
[data-bs-theme="light"] {
  --bs-box-shadow: 0 0.5rem 1rem rgba(var(--theme-secondary-rgb), 0.15);
  --bs-box-shadow-sm: var(--shadow-sm);
  --bs-box-shadow-md: var(--shadow-md);
  --bs-box-shadow-lg: var(--shadow-lg);
}



section#main-body>.container {
  max-width: 1400px !important;
}

/* Hosting packages section container width consistency */
.hosting-packages-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Ensure hosting packages section respects container boundaries */
.hosting-packages-section {
  overflow-x: hidden;
  width: 100%;
}

.hosting-section-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.hosting-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #224b8b;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.hosting-section-subtitle {
  color: #666;
  margin: 0;
}


.hosting-category-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hosting-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #224b8b;
  background: #224b8b;
  color: #fff;
}

.hosting-category-btn i {
  font-size: 1rem;
}

.hosting-category-btn.active {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
}

.hosting-category-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hosting-category-btn.active:hover {
  box-shadow: 0 4px 12px rgba(var(--theme-primary-rgb), 0.3);
}

.hosting-category-btn:focus {
  outline: 3px solid #4a90e2;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hosting-category-btn {
    transition: none;
  }
}

@media (max-width: 768px) {
  .hosting-category-filters {
    flex-direction: column;
    gap: 10px;
  }

  .hosting-category-btn {
    width: 100%;
    max-width: 320px;
  }
}


.hosting-period-selector-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.hosting-period-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid var(--period-selector-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.hosting-period-selector__option {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--period-option-inactive-bg);
  color: var(--period-option-inactive-text);
  transition: all var(--period-transition-duration) ease;
  white-space: nowrap;
}

.hosting-period-selector__option.active {
  background: var(--period-option-active-bg);
  color: #fef1f1;
  box-shadow: 0 2px 6px rgba(var(--theme-primary-rgb), 0.25);
}

.hosting-period-selector__option:not(.active):hover {
  background: var(--period-option-hover-bg);
}

.hosting-period-selector__option:focus,
.hosting-period-selector__option:focus-visible {
  outline: 3px solid #4a90e2;
  outline-offset: 2px;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hosting-period-selector__option {
    transition: none;
  }
}

@media (min-width: 992px) {
  .hosting-period-selector {
    flex-wrap: nowrap;
    padding: 6px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hosting-period-selector {
    flex-wrap: nowrap;
    padding: 5px;
  }

  .hosting-period-selector__option {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .hosting-period-selector {
    flex-wrap: wrap;
    padding: 5px;
    max-width: 100%;
    justify-content: center;
  }

  .hosting-period-selector__option {
    padding: 12px 18px;
    font-size: 0.75rem;
    flex: 0 1 auto;
  }
}

@media (max-width: 479px) {
  .hosting-period-selector {
    padding: 4px;
  }

  .hosting-period-selector__option {
    padding: 12px 14px;
    font-size: 0.7rem;
  }
}


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

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

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

/* Slider aktifken */
.hosting-card-grid.swiper-wrapper {
  display: flex;
  grid-template-columns: none;
  gap: 0;
}

.hosting-card-grid .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 300px !important;
    cursor: default;

}

.hosting-card-grid .swiper-slide>.hosting-card {
  width: 100%;
}

.hosting-packages-slider-wrapper {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}

.hosting-packages-slider {
  padding-bottom: 20px !important;
  overflow: hidden !important;
}

.hosting-packages-pagination {
  bottom: 0 !important;
}

.hosting-packages-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  border-radius: 999px;
  background: rgba(11, 47, 128, 0.2);
  transition: width 0.3s ease, background 0.3s ease;
}

.hosting-packages-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--theme-primary);
}

/* No-slider mode: keep 4 cards in one row when possible */
.hosting-packages-slider-wrapper.no-slider .hosting-packages-pagination,
.hosting-packages-slider-wrapper.no-slider .hosting-packages-nav {
  display: none !important;
}

.hosting-packages-slider-wrapper.no-slider .hosting-packages-slider {
  overflow: visible !important;
}

.hosting-packages-slider-wrapper.no-slider .hosting-card-grid.swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  transform: none !important;
}

.hosting-packages-slider-wrapper.no-slider .swiper-slide {
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
}

/* Measuring mode: force grid to detect overflow */
.hosting-packages-slider-wrapper.is-measuring .hosting-card-grid.swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  transform: none !important;
}

.hosting-packages-slider-wrapper.is-measuring .swiper-slide {
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
}


@media (max-width: 575.98px) {


  .hosting-packages-nav {
    display: none;
  }
}

.hosting-packages-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  font-size: 20px;
  border-radius: 50%;
  border: none;
  background: #224b8b;
  color: #2e519f;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(20, 20, 43, 0.25);

}

.hosting-packages-nav:focus {
  outline: none;
}

.hosting-packages-nav:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 26px rgba(31, 123, 255, 0.3);
}

.hosting-packages-nav-prev {
  left: -25px;
}

.hosting-packages-nav-next {
  right: -25px;
}



@media (max-width: 1430px) {
  .hosting-packages-section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}



@media (max-width: 992px) {
  .hosting-packages-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hosting-packages-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}



.hosting-packages-slider .swiper-slide {
  overflow: visible !important;
      padding-top: 0 !important;

}



.hosting-card {
  --main-dark: #224b8b;
  --feature-icon-color: var(--theme-primary);
  border-radius: 26px;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* Tema varyasyonları */
.hosting-card--starter,
.hosting-card--business {
  --header-main: var(--theme-primary);
  --accent-color: #224b8b;
}

.hosting-card--professional,
.hosting-card--enterprise,
.hosting-card--default {
  --header-main: #224b8b;
  --accent-color: #224b8b;
}

/* Üst ikon alanı */
.hosting-card__icon {
  order: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

.hosting-card__icon i {
  font-size: 1.1rem;
  color: #224b8b;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hosting-card__icon-text {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Eski başlık alanı */
.hosting-card__header {
  display: none !important;
}

/* Yeni Paket Adı */
.hosting-card__name-new {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.1;
  color: #224b8b;
  position: relative;
  z-index: 2;
}


.hosting-card__pricing {
  padding: 28px 32px 20px;
  background: linear-gradient(135deg, var(--header-main, #032871), #0a3a9e);
  color: #224b8b;
  border-radius: 26px 26px 46px 26px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.hosting-card__pricing::before,
.hosting-card__pricing::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50px 0 50px 0;
  transition: all 0.3s ease;
}

.hosting-card__pricing::before {
  background: rgba(255, 255, 255, 0.1);
  width: 120%;
  height: 140%;
  top: -20%;
  left: -10%;
  z-index: 0;
}

.hosting-card__pricing::after {
  background: radial-gradient(circle at 30% 30%, rgba(var(--theme-primary-rgb), 0.65), var(--theme-primary));
  width: 90px;
  height: 90px;
  bottom: -35px;
  right: -15px;
  z-index: 1;
  border-radius: 46% 54% 37% 63% / 38% 51% 49% 62%;
}

.hosting-card:hover .hosting-card__pricing::before {
  border-radius: 35px 50px 35px 50px;
}

.hosting-card:hover .hosting-card__pricing::after {
  transform: scale(1.2) translate(10px, 5px);
}

.hosting-card--professional .hosting-card__pricing::before {
  border-radius: 50px 0 50px 0;
}

.hosting-card__hosting-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.hosting-card .hosting {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: #224b8b;
  display: inline-flex;
  align-items: flex-start;
  order: 2;
  letter-spacing: -0.03em;
}

/* Fiyat parçaları */
.hosting__currency {
  font-size: 0.4em;
  font-weight: 700;
  margin-right: 0.1em;
  line-height: 1;
}

.hosting__main {
  font-size: 1em;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hosting__decimal {
  font-size: 0.4em;
  font-weight: 700;
  margin-left: 0.05em;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.hosting-card__cycle {
  order: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  display: block;
  position: relative;
  z-index: 2;
}

/* Popüler etiket */
.hosting-card__badge {
  --bs-ribbon-margin: 0.25rem;
  --bs-ribbon-border-radius: var(--bs-border-radius);
  --bs-ribbon-border-color: var(--theme-secondary);
  --bs-ribbon-bg-color: var(--theme-secondary); 
  --bs-ribbon-color: #fff;
  position: absolute;
  right: calc(-1 * var(--bs-ribbon-margin));
  z-index: 1;
  padding: .25rem .75rem;
  font-size: .625rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bs-ribbon-color);
  text-align: center;
  text-transform: uppercase;
  background: var(--bs-ribbon-bg-color);
  border-color: var(--bs-ribbon-border-color);
  border-radius: var(--bs-ribbon-border-radius) 0 var(--bs-ribbon-border-radius) var(--bs-ribbon-border-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  min-width: 2rem;
  top: 30px;
}

.hosting-card__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 16px solid var(--bs-ribbon-bg-color);
  ;
  border-bottom: 16px solid var(--bs-ribbon-bg-color);
  ;
  border-left: 16px solid transparent;

  transform: translateX(-15.5px);
}




.hosting-card__badge i {
  display: none;
}

.hosting-card--popular .hosting-card__badge {
  --bs-ribbon-margin: 0.25rem;
  --bs-ribbon-border-radius: var(--bs-border-radius);
  --bs-ribbon-border-color: var(--theme-secondary);
  --bs-ribbon-bg-color: var(--theme-secondary);
  --bs-ribbon-color: #fff;
  position: absolute;
  right: calc(-1 * var(--bs-ribbon-margin));
  z-index: 1;
  padding: .25rem .75rem;
  font-size: .625rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bs-ribbon-color);
  text-align: center;
  text-transform: uppercase;
  background: var(--bs-ribbon-bg-color);
  border-color: var(--bs-ribbon-border-color);
  border-radius: var(--bs-ribbon-border-radius) 0 var(--bs-ribbon-border-radius) var(--bs-ribbon-border-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  min-width: 2rem;
  top: 60px;
}

.hosting-card--popular .hosting-card__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 16px solid var(--bs-ribbon-bg-color);
  ;
  border-bottom: 16px solid var(--bs-ribbon-bg-color);
  ;
  border-left: 16px solid transparent;

  transform: translateX(-15.5px);
}

.hosting-card--popular .hosting-card__badge i {
  display: inline-block;
  font-size: 0.7rem;
}

.hosting-card:hover .hosting-card__badge,
.hosting-card:hover .hosting-card__badge::before,
.hosting-card:hover .hosting-card__badge::after {
  --bs-ribbon-border-color: #224b8b;
  --bs-ribbon-bg-color: #224b8b;
}



.hosting-card__body {
  padding: 24px 32px 28px;
  background: #224b8b;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 0 0 26px 26px;
}

/* Kupon */
.hosting-card__coupon {
  position: relative;
  padding: 9px 0;
  border-radius: 6px;
  color: #224b8b;
  font-weight: 600;
  font-size: 12px;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-8px);

  background-image:
    linear-gradient(90deg, rgb(253 233 232));
  background-size: auto, 20px 20px, 20px 20px, auto;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  background-position: left top, 0 0, 10px 10px, left top;
  position: relative;
  overflow: visible;
  --notch: 13px;
  z-index: 0;
}

.hosting-card__coupon::before,
.hosting-card__coupon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--notch);
  height: var(--notch);
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
  z-index: 1;
}

.hosting-card__coupon::before {
  left: calc(var(--notch) / -2);
}

.hosting-card__coupon::after {
  right: calc(var(--notch) / -2);
}

.hosting-card__coupon > * {
  position: relative;
  z-index: 2;
}



@media (max-width: 575.98px) {
  .hosting-card__coupon {
    padding: 12px 18px;
    font-size: 11px;
  }
}

i.hosting-icon {
  color: #ea5348;
}

/* Butonlar */
.btn-cart{
   width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 11px;
  margin-top: 8px;
}
.btn-cart2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 20px;
  border: 2px solid #224b8b;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 13px;
  margin-top: 16px;
}

.btn-cart {
  background: #fff;
  color: #224b8b;
}

.btn-cart:hover {
  color: #e94f43;
}

.btn-cart2 {
  background: #224b8b;
  color: #fff;
}

.btn-cart2:hover {
  background: #e94f43;
  color: #fff;
  border: 2px solid #e94f43;
}

.btn-cart i,
.btn-cart2 i {
  font-size: 15px;
}


.hosting-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: transparent;
}

.hosting-card__feature {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f6ff;
}

.hosting-card__feature:last-child {
  border-bottom: none;
}

.hosting-card__feature-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--feature-icon-color);
  font-size: 1rem;
  flex-shrink: 0;
  background: rgba(var(--theme-primary-rgb), 0.12);
}

.hosting-card__feature-check i {
  font-size: 0.9rem;
}

.hosting-card__feature-text {
  color: var(--main-dark);
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hosting-card__feature-label {
  font-weight: 600;
  color: #4b5f85;
}

.hosting-card__feature-value {
  font-weight: 700;
  font-size: 0.92rem;
  text-align: right;
  color: #224b8b;
}

.hosting-card__footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid #e4ecf7;
}

@media (max-width: 768px) {
  .hosting-card__footer {
    flex-direction: column;
  }
}

.hosting-card__cta,
.hosting-card__configure-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 16px 24px;
  min-height: 56px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hosting-card__configure-btn {
  display: none;
}

.hosting-card__cta {
  background: #224b8b;
  color: #062b7f;
  border: 2px solid #062b7f;
  flex: 0 0 100%;
}

.hosting-card__cta:hover {
  background: #062b7f;
  color: #224b8b;
  box-shadow: 0 12px 30px rgba(6, 43, 127, 0.25);
  transform: translateY(-1px);
}

.hosting-card__cta i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.hosting-card__cta:hover i {
  transform: translateX(4px);
}

.hosting-card__cta:focus,
.hosting-card__configure-btn:focus {
  outline: 3px solid #4a90e2;
  outline-offset: 2px;
}


@media (prefers-reduced-motion: reduce) {

  .hosting-card,
  .hosting-card__cta,
  .hosting-card__configure-btn,
  .hosting-card__cta i,
  .hosting-card__configure-btn i {
    transition: none;
  }
}

.hosting.hosting-new {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  gap: .15em;
}

.currency-symbol,
.currency-decimal {
  font-size: .55em;
  position: relative;
  top: -0.55em;
  line-height: 1;
}

.pricing-period {
  margin-left: .25em;
  font-weight: 700;
  white-space: nowrap;
}

.currency-decimal,
.currency-symbol {
  font-size: .6em;
}

.hosting-old .currency-decimal {
  min-width: auto;
}

.pricing-period {
  line-height: 1;
  font-size: 10px;
}

.hosting-new:has(.currency-decimal)+sub.pricing-period,
.hosting-new:has(.currency-decimal)>sub.pricing-period,
.hosting-old:has(.currency-decimal)+sub.pricing-period,
.hosting-old:has(.currency-decimal)>sub.pricing-period {
  margin-left: -1.5rem;
}

.pricing-table .hosting.hosting-new:empty:before {
  content: attr(data-free-text);
  color: var(--bs-success);
  font-weight: 700;
}

.pricing-table .hosting.hosting-new:empty+.pricing-period {
  display: none;
}


.pricing-table-container .pricing-table {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  text-align: center;
  box-shadow: var(--bs-box-shadow-md);
  transition: var(--transition-default);
  border: 2px solid #e5b9b7;
  max-width: 320px;
  width: 100%;
}

.pricing-table-container .pricing-table:hover {
  box-shadow: 0 2px 30px rgba(6, 43, 127, 0.18);
}

.pricing-table-container .pricing-table .pricing-header {
  position: relative;
  text-align: start;
  overflow: hidden;
  color: #224b8b;
}

.hosting-packages-section .pricing-table .pricing-header {
  background-image: linear-gradient(180deg, #e94f43 0%, #ffffff 100%);
  background-repeat: no-repeat;
  background-position: 40% top;
  background-size: cover;
  margin-left: -20px;
  margin-right: -20px;
    margin-top: -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  border-radius:8px 8px 0 0;
}

.upgrade-products .pricing-table-container .pricing-table .pricing-header {
  color: var(--text-color);
  transform: translateY(0);
  margin-bottom: 0;
}

.pricing-table-container .pricing-table .pricing-header>div {
  position: relative;
  z-index: 2;
}

.pricing-table-container .pricing-table.style-default .pricing-header:after,
.pricing-table-container .pricing-table.style-default .pricing-header:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50px 0 50px 0;
  transition: var(--transition-default);
}



.pricing-table-container .pricing-table.style-default:hover .pricing-header:before,
.pricing-table-container.popular .pricing-table.style-default .pricing-header:before {
  border-radius: 35px 50px 35px 50px;
}

.pricing-table-container.popular .pricing-table.style-default:hover .pricing-header:before {
  border-radius: 50px 0 50px 0;
}

.pricing-table-container .pricing-table.style-default:hover .pricing-header:after,
.pricing-table-container.popular .pricing-table.style-default .pricing-header:after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pricing-table-container.popular .pricing-table {
  border: 2px solid var(--theme-primary);
}

.pricing-table .pricing-title {
  font-size: 24px;
}

.pricing-table .pricing-slogan {
  font-size: 12px;
  color: #224b8b !important;
}

.pricing-table .hosting.hosting-special {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-table .hosting.hosting-old {
  text-decoration: line-through;
}

.pricing-table .hosting.special-rate {
  padding: 5px 10px;
  font-size: 12px;
  margin-left: 5px;
}

.pricing-table .hosting.hosting-new {
  font-size: 30px;
}

.pricing-table .pricing-footer a {
  text-decoration: none;
}

.pricing-table .list-group .list-group-item {
  font-size: 14px;
  font-weight: 500;
}

.pricing-table-container .pricing-table.style-1 .pricing-slogan {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto;
}

.pricing-table-container.popular .pricing-table.style-1 {
  box-shadow: var(--bs-box-shadow-lg);
}

.pricing-table-container .pricing-table.style-1 .pricing-header:after,
.pricing-table-container .pricing-table.style-1 .pricing-header:before {
  display: none;
}

.pricing-table-container .pricing-table.style-1 .pricing-header {
  color: var(--theme-secondary);
  transform: translateY(0);
  margin-bottom: 0;
  padding-bottom: 0;
}

.pricing-table.style-1 .pricing-title {
  font-size: 20px;
  line-height: 1;
}


.pricing-table-container {
  min-width: 0 !important;
  max-width: none !important;
}

.hosting-packages-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-view-all {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #e94f43;
  text-decoration: none;
  
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}


.btn-view-all,
.btn-view-all i {
  position: relative;
  z-index: 1;
}

.btn-view-all i {
  transition: transform 0.2s ease;
}

.btn-view-all:hover {
  transform: translateY(-2px);
  color: #224b8b;
}

.btn-view-all:hover::before {
  opacity: 1;
}

.btn-view-all:hover i {
  transform: translateX(4px);
}

.btn-view-all:focus-visible {
  outline: 3px solid rgba(0, 130, 248, 0.35);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .btn-view-all,
  .btn-view-all i,
  .btn-view-all::before {
    transition: none;
  }
}