:root {
  --theme-primary: #00c9b7;
  --theme-primary-rgb: 0, 201, 183;

  --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(207, 221, 244, 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: #f2faf8;
  --period-option-active-bg: #00d4aa;
  --period-option-active-text: #ffffff;
  --period-option-inactive-bg: transparent;
  --period-option-inactive-text: #666666;
  --period-option-hover-bg: rgba(0, 212, 170, 0.1);
  --period-selector-border: #d5f5ed;
  --period-transition-duration: 300ms;
}


:root,
[data-bs-theme="light"] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;

  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;

  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;

  --bs-success: #8BC34A;
  --bs-success-rgb: 139, 195, 74;

  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;

  --bs-light: #f8f9fa;
  --bs-dark: #212529;

  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;

  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;

  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;

  --bs-body-color: var(--text-color);

  --bs-link-primary: var(--theme-primary);
  --bs-link-secondary: var(--theme-secondary);

  --bs-theme-light: #f0f6ff;
  --bs-theme-light-rgb: 240, 246, 255;
  --bs-theme-light-100: #cfddf4;
  --bs-theme-light-100-rgb: 207, 221, 244;
  --bs-theme-light-200: #b1c0d7;
  --bs-theme-light-200-rgb: 177, 192, 215;

  --bs-border-color: var(--border-color-soft);

  --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;
  padding-left: 20px !important;
  padding-right: 20px !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: #ffffff;
  color: #224b8b;
}

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

.hosting-category-btn.active {
  background: #00c9b3;
  color: #ffffff;
  border-color: #00c9b3;
}

.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(0, 201, 179, 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;
  background: var(--period-selector-bg);
  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: var(--period-option-active-text);
  box-shadow: 0 2px 6px rgba(0, 212, 170, 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: calc((100% - 72px) / 4) !important;
}

.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: #00c9b3;
}

@media (max-width: 991.98px) {
  .hosting-packages-slider-wrapper {
    padding: 0 54px !important;
  }
}

@media (max-width: 575.98px) {
  .hosting-packages-slider-wrapper {
    padding: 0 12px !important;
  }

  .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: #ffffff;
  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: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2));
  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: 0;
}

.hosting-packages-nav-next {
  right: 0;
}

@media (max-width: 1400px) {
  .hosting-card-grid .swiper-slide {
    width: calc((100% - 48px) / 3) !important;
    /* 3 kart */
  }
}

@media (max-width: 1024px) {
  .hosting-card-grid .swiper-slide {
    width: calc((100% - 40px) / 2.5) !important;
    /* 2.5 kart */
  }
}

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

  .hosting-card-grid .swiper-slide {
    width: calc((100% - 20px) / 2) !important;
    /* 2 kart */
  }
}

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

  .hosting-card-grid .swiper-slide {
    width: 340px !important;
  }
}

@media (max-width: 446px) {
  .hosting-packages-nav {
    display: none;
  }

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

/* Swiper slide padding (tek) */
.hosting-packages-slider .swiper-slide {
  overflow: visible !important;
}

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

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


.hosting-card {
  --main-dark: #224b8b;
  --feature-icon-color: #05bfc6;

  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: #00c9b3;
  --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: #ffffff;
  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: #ffffff;
  position: relative;
  z-index: 2;
}


.hosting-card__pricing {
  padding: 28px 32px 20px;
  background: linear-gradient(135deg, var(--header-main, #032871), #0a3a9e);
  color: #ffffff;
  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%, #33dfbe, #00b49f);
  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: #ffffff;
  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 {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffaa00;
  box-shadow: 0 2px 8px rgba(255, 170, 0, 0.3);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 12px;
  z-index: 20;
  display: none;
}

.hosting-card--professional .hosting-card__badge {
  display: block;
}



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

.hosting-card__coupon {
  padding: 8px 18px;
  border: 1px dashed #ffc14f;
  color: #ffc107;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 12px;
  gap: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-10px);
  box-shadow: 0 0 0 5px #fff3cd;
}

.hosting-card__coupon-label {
  font-weight: 600;
}

.hosting-card__coupon-code {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
}

i.hosting-icon {
  color: #00c9b7;
}

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

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

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

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

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

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


.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(5, 191, 198, 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: #ffffff;
  color: #062b7f;
  border: 2px solid #062b7f;
  flex: 0 0 100%;
}

.hosting-card__cta:hover {
  background: #062b7f;
  color: #ffffff;
  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;
}

.hosting-card:focus-within {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15),
    0 0 0 3px rgba(74, 144, 226, 0.3);
}

@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);
}

.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;
  padding: 20px;
  padding-top: 20px;
  text-align: start;
  overflow: hidden;
  color: #fff;
  transform: translateY(-50px);
  margin-bottom: -20px;
}

.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 .pricing-header:before,
.pricing-table-container.popular .pricing-table.style-default:hover .pricing-header:before {
  background: var(--theme-secondary);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.pricing-table-container .pricing-table.style-default .pricing-header:after,
.pricing-table-container.popular .pricing-table.style-default:hover .pricing-header:after {
  background: var(--theme-primary);
  width: 20px;
  height: 20px;
  right: 5px;
  bottom: 5px;
  z-index: 1;
}

.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;
}

.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 - center "Tüm Paketleri Görüntüle" button */
.hosting-packages-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #224b8b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #224b8b;
}

.btn-view-all:hover {
  background: #ffffff;
  color: #224b8b;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 75, 139, 0.2);
}

.btn-view-all i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .hosting-packages-footer {
    margin-top: 30px;
    padding-top: 15px;
  }
  
  .btn-view-all {
    padding: 10px 20px;
    font-size: 13px;
  }
}