/**
 * Advanced Pricing Tables - All Themes
 * Author: Shahid Malla
 * URL: https://shahidmalla.com
 */

/* Error Messages */
.apt-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Mobile Swiper Styles */
@media (max-width: 767px) {
  .apt__pricing-row {
    display: none; /* Hide regular grid on mobile */
  }
  
  .apt-pricing-swiper {
    display: block !important;
    padding: 20px 0;
  }
  
  .apt-pricing-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
  }
  
  .apt-pricing-swiper .pricing-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 10px;
  }
  
  .apt-pricing-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
  }
  
  .apt-pricing-swiper .swiper-pagination-bullet {
    background: #8b5cf6;
    opacity: 0.3;
  }
  
  .apt-pricing-swiper .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .apt-pricing-swiper {
    display: none !important; /* Hide swiper on tablet+ */
  }
  
  .apt__pricing-row {
    display: flex !important; /* Show regular grid on tablet+ */
  }
}

/* Global Responsive Grid System */
.apt__pricing-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.apt__pricing-row > *,
.pricing-card-wrapper {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    margin: 16px 0;
    padding-left: 12px;
}

/* Dynamic Responsive Design - Auto-adjusts based on number of packages */

/* 1 Package - Full width */
.apt__pricing-row:has(.pricing-card-wrapper:only-child) > *,
.apt__pricing-row:has(.pricing-card-wrapper:only-child) .pricing-card-wrapper {
        width: 100%;
  max-width: 100%;
}

/* 2 Packages - 50% each */
.apt__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) > *,
.apt__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) .pricing-card-wrapper {
        width: 50%;
  max-width: 50%;
}

/* 3 Packages - 33.33% each */
.apt__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) > *,
.apt__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) .pricing-card-wrapper {
  width: 33.333333%;
  max-width: 33.333333%;
}

/* 4 Packages - 25% each */
.apt__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) > *,
.apt__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) .pricing-card-wrapper {
  width: 25%;
  max-width: 25%;
}

/* 5+ Packages - 20% each */
.apt__pricing-row:has(.pricing-card-wrapper:nth-child(5)) > *,
.apt__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
  width: 20%;
  max-width: 20%;
}

/* Responsive breakpoints for smaller screens */
@media (max-width: 767px) {
  .apt__pricing-row > *,
  .pricing-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* 4+ packages: 2 columns on tablet */
  .apt__pricing-row:has(.pricing-card-wrapper:nth-child(4)) > *,
  .apt__pricing-row:has(.pricing-card-wrapper:nth-child(4)) .pricing-card-wrapper,
  .apt__pricing-row:has(.pricing-card-wrapper:nth-child(5)) > *,
  .apt__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
        width: 50%;
    max-width: 50%;
    }
}

/* Animation */
@keyframes colorchange {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

[data-animation="on"] .ap__price-card {
    animation: 20s linear infinite colorchange;
}

[data-animation="off"] .ap__price-card {
    animation: none;
}

/* Mobile touch hover */
.ap__price-card.touch-hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Animated Background Styles */
.apt-pricing-bg-hosting {
    position: relative;
  overflow: hidden;
}

.apt-pricing-bg-hosting::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: -1;
}

.apt-pricing-bg-cloud {
  position: relative;
  overflow: hidden;
}

.apt-pricing-bg-cloud::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  z-index: -1;
}

.apt-pricing-bg-gradient {
  position: relative;
  overflow: hidden;
}

.apt-pricing-bg-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  z-index: -1;
}

.apt-pricing-bg-light-blue {
  position: relative;
  overflow: hidden;
}

.apt-pricing-bg-light-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f4f8fc;
  z-index: -1;
}

/* Animated Icons */
.apt-animated-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.apt-animated-icons .floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  animation: float 6s ease-in-out infinite;
}

.apt-animated-icons .floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.apt-animated-icons .floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.apt-animated-icons .floating-icon:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.apt-animated-icons .floating-icon:nth-child(4) { top: 80%; right: 25%; animation-delay: 3s; }
.apt-animated-icons .floating-icon:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; }
.apt-animated-icons .floating-icon:nth-child(6) { top: 70%; left: 80%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hosting specific icons */
.apt-bg-hosting .floating-icon:nth-child(1)::before { content: '\f233'; } /* server */
.apt-bg-hosting .floating-icon:nth-child(2)::before { content: '\f0c2'; } /* cloud */
.apt-bg-hosting .floating-icon:nth-child(3)::before { content: '\f1c0'; } /* database */
.apt-bg-hosting .floating-icon:nth-child(4)::before { content: '\f0a1'; } /* bolt */
.apt-bg-hosting .floating-icon:nth-child(5)::before { content: '\f0c2'; } /* cloud */
.apt-bg-hosting .floating-icon:nth-child(6)::before { content: '\f233'; } /* server */

/* Cloud specific icons */
.apt-bg-cloud .floating-icon:nth-child(1)::before { content: '\f0c2'; } /* cloud */
.apt-bg-cloud .floating-icon:nth-child(2)::before { content: '\f1c0'; } /* database */
.apt-bg-cloud .floating-icon:nth-child(3)::before { content: '\f233'; } /* server */
.apt-bg-cloud .floating-icon:nth-child(4)::before { content: '\f0a1'; } /* bolt */
.apt-bg-cloud .floating-icon:nth-child(5)::before { content: '\f0c2'; } /* cloud */
.apt-bg-cloud .floating-icon:nth-child(6)::before { content: '\f1c0'; } /* database */

/* Icon Position Styles */
.ap__features-list-item.icon-left {
  flex-direction: row;
  align-items: center;
}

.ap__features-list-item.icon-right {
  flex-direction: row-reverse;
  align-items: center;
}

.ap__features-list-item.icon-left .ap__list-bullet {
  order: 1;
  margin-right: 12px;
  margin-left: 0;
  flex-shrink: 0;
}

.ap__features-list-item.icon-right .ap__list-bullet {
  order: 2;
  margin-left: 12px;
  margin-right: 0;
  flex-shrink: 0;
}

/* Transparent icon background option */
.ap__list-bullet.transparent {
  background: transparent !important;
  border: 2px solid currentColor;
}

.ap__list-bullet.transparent i {
  color: currentColor;
}

/* Feature text styling */
.ap__feature-text {
  flex: 1;
  text-align: left;
  font-size: inherit;
  line-height: inherit;
}

/* Icon Size Styles */
.apt-icon-small .ap__list-bullet {
  width: 16px;
  height: 16px;
  background: #8b5cf6 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apt-icon-small .ap__list-bullet i {
  font-size: 10px;
  color: white;
}

.apt-icon-medium .ap__list-bullet {
  width: 20px;
  height: 20px;
  background: #8b5cf6 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apt-icon-medium .ap__list-bullet i {
  font-size: 14px;
  color: white;
}

.apt-icon-large .ap__list-bullet {
  width: 24px;
  height: 24px;
  background: #8b5cf6 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apt-icon-large .ap__list-bullet i {
  font-size: 16px;
  color: white;
}

.apt-icon-xlarge .ap__list-bullet {
  width: 28px;
  height: 28px;
  background: #8b5cf6 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apt-icon-xlarge .ap__list-bullet i {
  font-size: 18px;
  color: white;
}

/**
 * Theme 1 - Light & Professional
 * Advanced Pricing Tables - Theme 1
 * Author: Shahid Malla
 * URL: https://shahidmalla.com
 */

 @font-face {
    font-family: "Aventa";
    src: url("../fonts/Aventa-Bold.woff2") format("woff2"),
      url("../fonts/Aventa-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aventa";
    src: url("../fonts/Aventa-SemiBold.woff2") format("woff2"),
      url("../fonts/Aventa-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aventa";
    src: url("../fonts/Aventa-Medium.woff2") format("woff2"),
      url("../fonts/Aventa-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aventa";
    src: url("../fonts/Aventa-Regular.woff2") format("woff2"),
      url("../fonts/Aventa-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aventa";
    src: url("../fonts/Aventa-Light.woff2") format("woff2"),
      url("../fonts/Aventa-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aventa";
    src: url("../fonts/Aventa-Thin.woff2") format("woff2"),
      url("../fonts/Aventa-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }
  
/* ===== THEME 1 - CLEAN & PROFESSIONAL ===== */

.apt-pricing-theme1 {
  background: #ffffff;
  padding: 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Container */
.apt-pricing-theme1 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

  .apt-pricing-theme1 .ap__section-heading {
    color: var(--black);
    font-size: 56px;
    font-family: var(--primary-font);
    font-weight: 500;
    line-height: 1em;
    margin-top: 20px;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .apt-pricing-theme1 .ap__section-subheading {
    color: var(--black);
    font-family: var(--primary-font);
    font-size: 22px;
    line-height: 1.2em;
    margin-top: 16px;
    text-align: center;
  }
  
/* Pricing Row - Simple Grid */
.apt-pricing-theme1 .apt__pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 30px 0;
}

.apt-pricing-theme1 .pricing-card-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

/* Price Card - Clean Design */
.apt-pricing-theme1 .ap__price-card {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.apt-pricing-theme1 .ap__price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}
  
/* Content Styling */
.apt-pricing-theme1 .ap__pricing-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.apt-pricing-theme1 .ap__plan-name {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.apt-pricing-theme1 .ap__plan-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.5;
}

.apt-pricing-theme1 .ap__price-container {
  margin-bottom: 32px;
}

.apt-pricing-theme1 .ap__currency-symbol {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
}

.apt-pricing-theme1 .ap__plan-price {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
}

.apt-pricing-theme1 .ap__plan-interval {
  font-size: 16px;
  color: #6b7280;
  margin-left: 4px;
}
  
/* Button */
.apt-pricing-theme1 .ap__pricing-btn {
  background: #3b82f6;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.apt-pricing-theme1 .ap__pricing-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}
  
  .apt-pricing-theme1 .ap__sub-info {
    color: var(--sub-info-text);
    font-size: 11px;
    font-weight: 500;
    line-height: 14px;
    text-align: center;
    margin-bottom: 30px;
  }
  
/* Features */
.apt-pricing-theme1 .ap__baseline {
  height: 1px;
  background: #e5e7eb;
  margin: 0 0 20px 0;
}

.apt-pricing-theme1 .ap__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  text-align: left;
}

.apt-pricing-theme1 .ap__features-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #4b5563;
}

.apt-pricing-theme1 .ap__list-bullet {
  width: 16px;
  height: 16px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apt-pricing-theme1 .ap__list-bullet i {
  color: white;
  font-size: 10px;
}
  
.apt-pricing-theme1 .ap__list-bullet {
  position: static;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
  
.apt-pricing-theme1 .ap__list-bullet i {
  font-size: 12px;
  color: white;
}

/* Override with icon size classes */
.apt-pricing-theme1.apt-icon-small .ap__list-bullet {
  width: 16px !important;
  height: 16px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme1.apt-icon-small .ap__list-bullet i {
  font-size: 10px !important;
  color: white !important;
}

.apt-pricing-theme1.apt-icon-medium .ap__list-bullet {
  width: 20px !important;
  height: 20px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme1.apt-icon-medium .ap__list-bullet i {
  font-size: 14px !important;
  color: white !important;
}

.apt-pricing-theme1.apt-icon-large .ap__list-bullet {
  width: 24px !important;
  height: 24px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme1.apt-icon-large .ap__list-bullet i {
  font-size: 16px !important;
  color: white !important;
}

.apt-pricing-theme1.apt-icon-xlarge .ap__list-bullet {
  width: 28px !important;
  height: 28px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme1.apt-icon-xlarge .ap__list-bullet i {
  font-size: 18px !important;
  color: white !important;
}
  
/* Featured Card */
.apt-pricing-theme1 .ap__price-card.active {
  background: #1f2937;
  border-color: #3b82f6;
  color: white;
  transform: scale(1.05);
  position: relative;
}

.apt-pricing-theme1 .ap__price-card.active .ap__plan-name,
.apt-pricing-theme1 .ap__price-card.active .ap__plan-price,
.apt-pricing-theme1 .ap__price-card.active .ap__currency-symbol {
  color: white;
}

.apt-pricing-theme1 .ap__price-card.active .ap__plan-desc,
.apt-pricing-theme1 .ap__price-card.active .ap__plan-interval,
.apt-pricing-theme1 .ap__price-card.active .ap__features-list-item {
  color: #d1d5db;
}

.apt-pricing-theme1 .ap__price-card.active .ap__pricing-btn {
  background: #3b82f6;
}

.apt-pricing-theme1 .ap__price-card.active .ap__baseline {
  background: #374151;
}

/* Responsive */
@media (max-width: 768px) {
  .apt-pricing-theme1 .apt__pricing-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .apt-pricing-theme1 .pricing-card-wrapper {
    min-width: unset;
    max-width: unset;
  }
  
  .apt-pricing-theme1 .ap__price-card.active {
    transform: none;
  }
}
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .apt-pricing-theme1 .ap__section-heading {
      font-size: 48px;
    }
  }
  
  @media (max-width: 768px) {
    .apt-pricing-theme1 {
      padding: 40px 0;
    }
    
    .apt-pricing-theme1 .ap__section-heading {
      font-size: 36px;
    }
    
    .apt-pricing-theme1 .ap__section-subheading {
      font-size: 18px;
    }
    
    .apt-pricing-theme1 .ap__price-card {
      padding: 20px;
    }
    
    .apt-pricing-theme1 .ap__plan-price,
    .apt-pricing-theme1 .ap__currency-symbol {
      font-size: 40px;
    }
  }
  
  @media (max-width: 576px) {
    .apt-pricing-theme1 .container {
      padding-left: 16px;
      padding-right: 16px;
    }
    
    .apt-pricing-theme1 .ap__section-heading {
      font-size: 28px;
    }
    
    .apt-pricing-theme1 .ap__section-subheading {
      font-size: 16px;
    }
  }
  
  /**
 * Theme 2 - Dark & Modern
 * Advanced Pricing Tables - Theme 2
 * Author: Shahid Malla
 * URL: https://shahidmalla.com
 */

/* Theme 2 Variables */
.apt-pricing-theme2 {
    --primary-font: "Aventa", sans-serif;
    --black: #000000;
    --white: #ffffff;
    --card-background: #1a1a1a;
    --card-border: #333333;
    --overlay-gradient: linear-gradient(
      to top,
      var(--theme-color) 15%,
      transparent 75%
    );
    --theme-color: #00c844;
    --button-hover-background: transparent;
    --sub-info-text: #cccccc;
    --baseline-color: rgba(255, 255, 255, 0.15);
    --animation-settings: 20s linear infinite colorchange;
  }
  
  /* Theme 2 Base Styles */
  .apt-pricing-theme2 {
        width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
    min-height: 100vh;
  }
  
.apt-pricing-theme2 .container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
  
  .apt-pricing-theme2 .ap__section-heading {
    color: var(--white);
    font-size: 56px;
    font-family: var(--primary-font);
    font-weight: 500;
    line-height: 1em;
    margin-top: 20px;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .apt-pricing-theme2 .ap__section-subheading {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 22px;
    line-height: 1.2em;
    margin-top: 16px;
    text-align: center;
    opacity: 0.8;
  }
  
.apt-pricing-theme2 .ap__pricing-row {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
  justify-content: center;
  gap: 20px;
}
  
.apt-pricing-theme2 .ap__pricing-row > * {
        width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Dynamic Responsive Grid System for Theme 2 */

/* 1 Package - Full width */
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:only-child) > *,
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:only-child) .pricing-card-wrapper {
  width: 100%;
  max-width: 100%;
}

/* 2 Packages - 50% each */
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) > *,
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) .pricing-card-wrapper {
  width: calc(50% - 10px);
  max-width: calc(50% - 10px);
}

/* 3 Packages - 33.33% each */
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) > *,
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) .pricing-card-wrapper {
  width: calc(33.333333% - 14px);
  max-width: calc(33.333333% - 14px);
}

/* 4 Packages - 25% each */
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) > *,
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) .pricing-card-wrapper {
  width: calc(25% - 15px);
  max-width: calc(25% - 15px);
}

/* 5+ Packages - 20% each */
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) > *,
.apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
  width: calc(20% - 16px);
  max-width: calc(20% - 16px);
}

/* Responsive breakpoints for Theme 2 */
@media (max-width: 767px) {
  .apt-pricing-theme2 .ap__pricing-row > *,
  .apt-pricing-theme2 .pricing-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* 4+ packages: 2 columns on tablet */
  .apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4)) > *,
  .apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4)) .pricing-card-wrapper,
  .apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) > *,
  .apt-pricing-theme2 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
  
  .apt-pricing-theme2 .ap__price-card {
    position: relative;
    padding: 30px 30px 20px 30px;
    color: var(--white);
    background-color: var(--card-background);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--primary-font);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
  }
  
  .apt-pricing-theme2 .ap__price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 200, 68, 0.2);
    border-color: var(--theme-color);
  }
  
  .apt-pricing-theme2[data-animation="on"] .ap__price-card {
    animation: var(--animation-settings);
  }
  
  .apt-pricing-theme2[data-animation="off"] .ap__price-card {
    animation: none;
  }
  
@keyframes colorchange {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

  .apt-pricing-theme2 .ap__price-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: linear-gradient(45deg, var(--theme-color), transparent);
  }
  
  .apt-pricing-theme2 .ap__price-card::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100% - 40%);
    background-image: var(--overlay-gradient);
    opacity: 0;
    transition: all 0.3s ease-in;
    pointer-events: none;
  }
  
  .apt-pricing-theme2 .ap__price-card:hover::after {
    opacity: 0.6;
  }
  
  .apt-pricing-theme2 .ap__pricing-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .apt-pricing-theme2 .ap__plan-name {
    font-size: 23px;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--theme-color);
  }
  
  .apt-pricing-theme2 .ap__plan-desc {
    font-size: 13.125px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 30px;
    color: #cccccc;
  }
  
  .apt-pricing-theme2 .ap__price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
  }
  
  .apt-pricing-theme2 .ap__plan-price,
  .apt-pricing-theme2 .ap__currency-symbol {
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2em;
    color: var(--white);
  }
  
  .apt-pricing-theme2 .ap__plan-interval {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4em;
    margin-left: 5px;
    color: #cccccc;
  }
  
  .apt-pricing-theme2 .ap__pricing-btn {
    display: block;
    color: var(--black);
    background-color: var(--theme-color);
    margin-bottom: 15px;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    border: 1px solid transparent;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }
  
  .apt-pricing-theme2 .ap__pricing-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }
  
  .apt-pricing-theme2 .ap__pricing-btn:hover::before {
    left: 100%;
  }
  
  .apt-pricing-theme2 .ap__pricing-btn:hover {
    border: 1px solid var(--theme-color);
    background-color: transparent;
    color: var(--theme-color);
    transform: scale(1.05);
  }
  
  .apt-pricing-theme2 .ap__sub-info {
    color: var(--sub-info-text);
    font-size: 11px;
    font-weight: 500;
    line-height: 14px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .apt-pricing-theme2 .ap__baseline {
    position: relative;
    height: 1px;
    margin-bottom: 20px;
    background-color: var(--baseline-color);
  }
  
.apt-pricing-theme2 .ap__features-list {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
  padding-bottom: 0;
}
  
.apt-pricing-theme2 .ap__features-list-item {
  position: relative;
  margin-bottom: 0.8rem;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  text-align: left;
  color: var(--white);
}

.apt-pricing-theme2 .ap__features-list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
  
.apt-pricing-theme2 .ap__list-bullet {
  position: static;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 200, 68, 0.5);
  flex-shrink: 0;
}
  
.apt-pricing-theme2 .ap__list-bullet i {
  font-size: 12px;
  color: white;
}

/* Override with icon size classes */
.apt-pricing-theme2.apt-icon-small .ap__list-bullet {
  width: 16px !important;
  height: 16px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme2.apt-icon-small .ap__list-bullet i {
  font-size: 10px !important;
  color: white !important;
}

.apt-pricing-theme2.apt-icon-medium .ap__list-bullet {
  width: 20px !important;
  height: 20px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme2.apt-icon-medium .ap__list-bullet i {
  font-size: 14px !important;
  color: white !important;
}

.apt-pricing-theme2.apt-icon-large .ap__list-bullet {
  width: 24px !important;
  height: 24px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme2.apt-icon-large .ap__list-bullet i {
  font-size: 16px !important;
  color: white !important;
}

.apt-pricing-theme2.apt-icon-xlarge .ap__list-bullet {
  width: 28px !important;
  height: 28px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme2.apt-icon-xlarge .ap__list-bullet i {
  font-size: 18px !important;
  color: white !important;
}
  
  /* Featured Card Styles */
  .apt-pricing-theme2 .ap__price-card.active {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-color: var(--theme-color);
    box-shadow: 0 0 30px rgba(0, 200, 68, 0.3);
  }
  
  .apt-pricing-theme2 .ap__price-card.active .ap__plan-name {
    color: var(--theme-color);
    text-shadow: 0 0 10px rgba(0, 200, 68, 0.5);
  }
  
  .apt-pricing-theme2 .ap__price-card.active .ap__pricing-btn {
    background: linear-gradient(45deg, var(--theme-color), #00ff88);
    box-shadow: 0 5px 15px rgba(0, 200, 68, 0.4);
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .apt-pricing-theme2 .ap__section-heading {
      font-size: 48px;
    }
  }
  
  @media (max-width: 768px) {
    .apt-pricing-theme2 {
    padding: 40px 0;
    }
    
    .apt-pricing-theme2 .ap__section-heading {
      font-size: 36px;
    }
    
    .apt-pricing-theme2 .ap__section-subheading {
      font-size: 18px;
    }
    
    .apt-pricing-theme2 .ap__price-card {
      padding: 20px;
    }
    
    .apt-pricing-theme2 .ap__plan-price,
    .apt-pricing-theme2 .ap__currency-symbol {
      font-size: 40px;
    }
  }
  
  @media (max-width: 576px) {
    .apt-pricing-theme2 .container {
      padding-left: 16px;
      padding-right: 16px;
    }
    
    .apt-pricing-theme2 .ap__section-heading {
      font-size: 28px;
    }
    
    .apt-pricing-theme2 .ap__section-subheading {
      font-size: 16px;
    }
  }
  /**
 * Theme 3 - Colorful & Vibrant
 * Advanced Pricing Tables - Theme 3
 * Author: Shahid Malla
 * URL: https://shahidmalla.com
 */

/* Theme 3 Variables */
.apt-pricing-theme3 {
    --primary-font: "Aventa", sans-serif;
    --black: #000000;
    --white: #ffffff;
    --card-background: rgba(255, 255, 255, 0.95);
    --card-border: #e0e0e0;
    --overlay-gradient: linear-gradient(
      to top,
      var(--theme-color) 15%,
      transparent 75%
    );
    --theme-color: #ff6b35;
    --button-hover-background: transparent;
    --sub-info-text: #666666;
    --baseline-color: rgba(0, 0, 0, 0.1);
    --animation-settings: 20s linear infinite colorchange;
  }
  
  /* Theme 3 Base Styles */
  .apt-pricing-theme3 {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    min-height: 100vh;
}

.apt-pricing-theme3 .container {
    width: 100%;
  max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
  
  .apt-pricing-theme3 .ap__section-heading {
    color: var(--white);
    font-size: 56px;
    font-family: var(--primary-font);
    font-weight: 500;
    line-height: 1em;
    margin-top: 20px;
    margin-bottom: 24px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .apt-pricing-theme3 .ap__section-subheading {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 22px;
    line-height: 1.2em;
    margin-top: 16px;
    text-align: center;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
.apt-pricing-theme3 .ap__pricing-row {
    display: flex;
    flex-wrap: wrap;
  margin: 40px 0 0 0;
  justify-content: center;
  gap: 20px;
}

.apt-pricing-theme3 .ap__pricing-row > * {
    width: 100%;
    max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Dynamic Responsive Grid System for Theme 3 */

/* 1 Package - Full width */
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:only-child) > *,
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:only-child) .pricing-card-wrapper {
  width: 100%;
  max-width: 100%;
}

/* 2 Packages - 50% each */
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) > *,
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) .pricing-card-wrapper {
  width: calc(50% - 10px);
  max-width: calc(50% - 10px);
}

/* 3 Packages - 33.33% each */
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) > *,
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) .pricing-card-wrapper {
  width: calc(33.333333% - 14px);
  max-width: calc(33.333333% - 14px);
}

/* 4 Packages - 25% each */
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) > *,
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) .pricing-card-wrapper {
  width: calc(25% - 15px);
  max-width: calc(25% - 15px);
}

/* 5+ Packages - 20% each */
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) > *,
.apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
  width: calc(20% - 16px);
  max-width: calc(20% - 16px);
}

/* Responsive breakpoints for Theme 3 */
@media (max-width: 767px) {
  .apt-pricing-theme3 .ap__pricing-row > *,
  .apt-pricing-theme3 .pricing-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* 4+ packages: 2 columns on tablet */
  .apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4)) > *,
  .apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4)) .pricing-card-wrapper,
  .apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) > *,
  .apt-pricing-theme3 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
  
  .apt-pricing-theme3 .ap__price-card {
    position: relative;
    padding: 30px 30px 20px 30px;
    color: var(--black);
    background-color: var(--card-background);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    font-family: var(--primary-font);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .apt-pricing-theme3 .ap__price-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }
  
  .apt-pricing-theme3[data-animation="on"] .ap__price-card {
    animation: var(--animation-settings);
  }
  
  .apt-pricing-theme3[data-animation="off"] .ap__price-card {
    animation: none;
}

@keyframes colorchange {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

  .apt-pricing-theme3 .ap__price-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background: linear-gradient(45deg, var(--theme-color), #ff9a56, #ff6b35);
  }
  
  .apt-pricing-theme3 .ap__price-card::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100% - 40%);
    background-image: var(--overlay-gradient);
    opacity: 0;
    transition: all 0.3s ease-in;
    pointer-events: none;
  }
  
  .apt-pricing-theme3 .ap__price-card:hover::after {
    opacity: 0.3;
  }
  
  .apt-pricing-theme3 .ap__pricing-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .apt-pricing-theme3 .ap__plan-name {
    font-size: 23px;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: linear-gradient(45deg, var(--theme-color), #ff9a56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .apt-pricing-theme3 .ap__plan-desc {
    font-size: 13.125px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 30px;
    color: #666;
  }
  
  .apt-pricing-theme3 .ap__price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
  }
  
  .apt-pricing-theme3 .ap__plan-price,
  .apt-pricing-theme3 .ap__currency-symbol {
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2em;
    background: linear-gradient(45deg, var(--theme-color), #ff9a56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .apt-pricing-theme3 .ap__plan-interval {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4em;
    margin-left: 5px;
    color: #666;
  }
  
  .apt-pricing-theme3 .ap__pricing-btn {
    display: block;
    color: var(--white);
    background: linear-gradient(45deg, var(--theme-color), #ff9a56);
    margin-bottom: 15px;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    border: 1px solid transparent;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  
  .apt-pricing-theme3 .ap__pricing-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }
  
  .apt-pricing-theme3 .ap__pricing-btn:hover::before {
    left: 100%;
  }
  
  .apt-pricing-theme3 .ap__pricing-btn:hover {
    border: 1px solid var(--theme-color);
    background: transparent;
    color: var(--theme-color);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }
  
  .apt-pricing-theme3 .ap__sub-info {
    color: var(--sub-info-text);
    font-size: 11px;
    font-weight: 500;
    line-height: 14px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .apt-pricing-theme3 .ap__baseline {
    position: relative;
    height: 2px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
  }
  
.apt-pricing-theme3 .ap__features-list {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
  padding-bottom: 0;
}
  
.apt-pricing-theme3 .ap__features-list-item {
  position: relative;
  margin-bottom: 0.8rem;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  text-align: left;
  color: var(--black);
  transition: all 0.3s ease;
}

.apt-pricing-theme3 .ap__features-list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
  
  .apt-pricing-theme3 .ap__features-list-item:hover {
    transform: translateX(5px);
    color: var(--theme-color);
  }
  
.apt-pricing-theme3 .ap__list-bullet {
  position: static;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--theme-color), #ff9a56);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
  
  .apt-pricing-theme3 .ap__features-list-item:hover .ap__list-bullet {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6);
  }
  
.apt-pricing-theme3 .ap__list-bullet i {
  font-size: 12px;
  color: white;
}

/* Override with icon size classes */
.apt-pricing-theme3.apt-icon-small .ap__list-bullet {
  width: 16px !important;
  height: 16px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme3.apt-icon-small .ap__list-bullet i {
  font-size: 10px !important;
  color: white !important;
}

.apt-pricing-theme3.apt-icon-medium .ap__list-bullet {
  width: 20px !important;
  height: 20px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme3.apt-icon-medium .ap__list-bullet i {
  font-size: 14px !important;
  color: white !important;
}

.apt-pricing-theme3.apt-icon-large .ap__list-bullet {
  width: 24px !important;
  height: 24px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme3.apt-icon-large .ap__list-bullet i {
  font-size: 16px !important;
  color: white !important;
}

.apt-pricing-theme3.apt-icon-xlarge .ap__list-bullet {
  width: 28px !important;
  height: 28px !important;
  background: #8b5cf6 !important;
}

.apt-pricing-theme3.apt-icon-xlarge .ap__list-bullet i {
  font-size: 18px !important;
  color: white !important;
}
  
  /* Featured Card Styles */
  .apt-pricing-theme3 .ap__price-card.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9a56 100%);
    color: var(--white);
    border-color: var(--theme-color);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
  }
  
  .apt-pricing-theme3 .ap__price-card.active .ap__plan-name {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .apt-pricing-theme3 .ap__price-card.active .ap__plan-price,
  .apt-pricing-theme3 .ap__price-card.active .ap__currency-symbol {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .apt-pricing-theme3 .ap__price-card.active .ap__pricing-btn {
    background: var(--white);
    color: var(--theme-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .apt-pricing-theme3 .ap__price-card.active .ap__pricing-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  
  .apt-pricing-theme3 .ap__price-card.active .ap__features-list-item {
    color: var(--white);
  }
  
  .apt-pricing-theme3 .ap__price-card.active .ap__baseline {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .apt-pricing-theme3 .ap__section-heading {
      font-size: 48px;
    }
  }
  
  @media (max-width: 768px) {
    .apt-pricing-theme3 {
      padding: 40px 0;
    }
    
    .apt-pricing-theme3 .ap__section-heading {
      font-size: 36px;
    }
    
    .apt-pricing-theme3 .ap__section-subheading {
      font-size: 18px;
    }
    
    .apt-pricing-theme3 .ap__price-card {
      padding: 20px;
    }
    
    .apt-pricing-theme3 .ap__plan-price,
    .apt-pricing-theme3 .ap__currency-symbol {
      font-size: 40px;
    }
  }
  
  @media (max-width: 576px) {
    .apt-pricing-theme3 .container {
      padding-left: 16px;
      padding-right: 16px;
    }
    
    .apt-pricing-theme3 .ap__section-heading {
      font-size: 28px;
    }
    
    .apt-pricing-theme3 .ap__section-subheading {
      font-size: 16px;
    }
  }
  
/* ===========================================
   THEME 4 STYLES (SIMPLE THEME)
   =========================================== */

.apt-pricing-theme4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #ffffff;
  padding: 60px 0;
  margin: 0;
}

.apt-pricing-theme4 .ap__section-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.apt-pricing-theme4 .ap__section-subheading {
  text-align: center;
  font-size: 20px;
  color: #666666;
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 1.5;
}

.apt-pricing-theme4 .ap__pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.apt-pricing-theme4 .ap__price-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.apt-pricing-theme4 .ap__price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}

.apt-pricing-theme4 .ap__price-card.featured {
  border-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
  transform: scale(1.05);
}

.apt-pricing-theme4 .ap__price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.apt-pricing-theme4 .ap__popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.apt-pricing-theme4 .ap__package-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.apt-pricing-theme4 .ap__package-description {
  font-size: 16px;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.apt-pricing-theme4 .ap__price-container {
  margin-bottom: 30px;
}

.apt-pricing-theme4 .ap__price {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 5px;
}

.apt-pricing-theme4 .ap__currency {
  font-size: 20px;
  color: #666666;
  font-weight: 500;
}

.apt-pricing-theme4 .ap__billing-cycle {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}

.apt-pricing-theme4 .ap__features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.apt-pricing-theme4 .ap__features-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  font-size: 16px;
  color: #374151;
  line-height: 1.5;
}

.apt-pricing-theme4 .ap__list-bullet {
  width: 20px;
  height: 20px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.apt-pricing-theme4 .ap__list-bullet i {
  font-size: 12px;
  color: white;
}

.apt-pricing-theme4 .ap__feature-text {
  flex: 1;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}

.apt-pricing-theme4 .ap__button {
  display: inline-block;
  background: #3b82f6;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.apt-pricing-theme4 .ap__button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

.apt-pricing-theme4 .ap__button:active {
  transform: translateY(0);
}

/* Dynamic Responsive Grid System for Theme 4 */

/* 1 Package - Full width */
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:only-child) > *,
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:only-child) .pricing-card-wrapper {
  width: 100%;
  max-width: 100%;
}

/* 2 Packages - 50% each */
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) > *,
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) .pricing-card-wrapper {
  width: calc(50% - 15px);
  max-width: calc(50% - 15px);
}

/* 3 Packages - 33.33% each */
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) > *,
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) .pricing-card-wrapper {
  width: calc(33.333333% - 20px);
  max-width: calc(33.333333% - 20px);
}

/* 4 Packages - 25% each */
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) > *,
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) .pricing-card-wrapper {
  width: calc(25% - 23px);
  max-width: calc(25% - 23px);
}

/* 5+ Packages - 20% each */
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) > *,
.apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
  width: calc(20% - 24px);
  max-width: calc(20% - 24px);
}

/* Responsive breakpoints for Theme 4 */
@media (max-width: 767px) {
  .apt-pricing-theme4 .ap__pricing-row > *,
  .apt-pricing-theme4 .pricing-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* 4+ packages: 2 columns on tablet */
  .apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4)) > *,
  .apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(4)) .pricing-card-wrapper,
  .apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) > *,
  .apt-pricing-theme4 .ap__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
    width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* Icon Position Styles for Theme 4 */
.apt-pricing-theme4 .ap__features-list-item.icon-left {
  flex-direction: row;
  align-items: center;
}

.apt-pricing-theme4 .ap__features-list-item.icon-right {
  flex-direction: row-reverse;
  align-items: center;
}

.apt-pricing-theme4 .ap__features-list-item.icon-left .ap__list-bullet {
  order: 1;
  margin-right: 12px;
  margin-left: 0;
  flex-shrink: 0;
}

.apt-pricing-theme4 .ap__features-list-item.icon-right .ap__list-bullet {
  order: 2;
  margin-left: 12px;
  margin-right: 0;
  flex-shrink: 0;
}

/* Transparent icon background option for Theme 4 */
.apt-pricing-theme4 .ap__list-bullet.transparent {
  background: transparent !important;
  border: 2px solid #10b981;
}

.apt-pricing-theme4 .ap__list-bullet.transparent i {
  color: #10b981;
}

/* Icon Size Styles for Theme 4 */
.apt-pricing-theme4.apt-icon-small .ap__list-bullet { width: 16px; height: 16px; background: #10b981 !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.apt-pricing-theme4.apt-icon-small .ap__list-bullet i { font-size: 10px; color: white; }
.apt-pricing-theme4.apt-icon-medium .ap__list-bullet { width: 20px; height: 20px; background: #10b981 !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.apt-pricing-theme4.apt-icon-medium .ap__list-bullet i { font-size: 12px; color: white; }
.apt-pricing-theme4.apt-icon-large .ap__list-bullet { width: 24px; height: 24px; background: #10b981 !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.apt-pricing-theme4.apt-icon-large .ap__list-bullet i { font-size: 14px; color: white; }
.apt-pricing-theme4.apt-icon-xlarge .ap__list-bullet { width: 28px; height: 28px; background: #10b981 !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.apt-pricing-theme4.apt-icon-xlarge .ap__list-bullet i { font-size: 16px; color: white; }

/* Theme 4 Specific Overrides for Icon Sizes */
.apt-pricing-theme4.apt-icon-small .ap__list-bullet { width: 16px !important; height: 16px !important; background: #10b981 !important; }
.apt-pricing-theme4.apt-icon-small .ap__list-bullet i { font-size: 10px !important; color: white !important; }
.apt-pricing-theme4.apt-icon-medium .ap__list-bullet { width: 20px !important; height: 20px !important; background: #10b981 !important; }
.apt-pricing-theme4.apt-icon-medium .ap__list-bullet i { font-size: 12px !important; color: white !important; }
.apt-pricing-theme4.apt-icon-large .ap__list-bullet { width: 24px !important; height: 24px !important; background: #10b981 !important; }
.apt-pricing-theme4.apt-icon-large .ap__list-bullet i { font-size: 14px !important; color: white !important; }
.apt-pricing-theme4.apt-icon-xlarge .ap__list-bullet { width: 28px !important; height: 28px !important; background: #10b981 !important; }
.apt-pricing-theme4.apt-icon-xlarge .ap__list-bullet i { font-size: 16px !important; color: white !important; }

/* Bootstrap Grid Isolation - Specific Targeting Only */
.no-bs-grid .apt__pricing-row {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 20px !important;
}

.no-bs-grid .pricing-card-wrapper {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-width: 280px !important;
  max-width: 400px !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Only override Bootstrap's container within pricing tables */
.no-bs-grid .container {
  max-width: 100% !important;
}

/* Only override Bootstrap column classes within pricing tables */
.no-bs-grid [class*="col-"] {
  flex: unset !important;
  width: unset !important;
  max-width: unset !important;
  padding-left: unset !important;
  padding-right: unset !important;
  margin-left: unset !important;
  margin-right: unset !important;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .no-bs-grid .apt__pricing-row {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .no-bs-grid .pricing-card-wrapper {
    max-width: 100% !important;
    min-width: unset !important;
  }
}

/* Unique Container and Layout Classes */
.apt-pricing-unique-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.apt-pricing-unique-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
  width: 100%;
}

.apt-pricing-unique-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 350px;
  margin: 0;
  padding: 0;
}

/* Auto-adjust based on number of cards */
.apt-pricing-unique-row:has(.apt-pricing-unique-card:only-child) .apt-pricing-unique-card {
  flex: 0 1 400px;
  max-width: 400px;
  margin: 0 auto;
}

.apt-pricing-unique-row:has(.apt-pricing-unique-card:nth-child(2):last-child) .apt-pricing-unique-card {
  flex: 0 1 calc(50% - 10px);
  min-width: 300px;
  max-width: calc(50% - 10px);
}

.apt-pricing-unique-row:has(.apt-pricing-unique-card:nth-child(3):last-child) .apt-pricing-unique-card {
  flex: 0 1 calc(33.333% - 14px);
  min-width: 250px;
  max-width: calc(33.333% - 14px);
}

.apt-pricing-unique-row:has(.apt-pricing-unique-card:nth-child(4):last-child) .apt-pricing-unique-card {
  flex: 0 1 calc(25% - 15px);
  min-width: 200px;
  max-width: calc(25% - 15px);
}

.apt-pricing-unique-row:has(.apt-pricing-unique-card:nth-child(5)) .apt-pricing-unique-card {
  flex: 0 1 calc(20% - 16px);
  min-width: 180px;
  max-width: calc(20% - 16px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .apt-pricing-unique-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .apt-pricing-unique-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: unset;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .apt-pricing-unique-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .apt-pricing-unique-row:has(.apt-pricing-unique-card:nth-child(4)) .apt-pricing-unique-card,
  .apt-pricing-unique-row:has(.apt-pricing-unique-card:nth-child(5)) .apt-pricing-unique-card {
    flex: 0 1 calc(50% - 10px);
    min-width: 250px;
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .apt-pricing-unique-row:has(.apt-pricing-unique-card:nth-child(3):last-child) .apt-pricing-unique-card {
    flex: 0 1 calc(50% - 10px);
    min-width: 250px;
    max-width: calc(50% - 10px);
  }
}

/* Override Bootstrap column classes within pricing tables */
.no-bs-grid .col,
.no-bs-grid .col-1,
.no-bs-grid .col-2,
.no-bs-grid .col-3,
.no-bs-grid .col-4,
.no-bs-grid .col-5,
.no-bs-grid .col-6,
.no-bs-grid .col-7,
.no-bs-grid .col-8,
.no-bs-grid .col-9,
.no-bs-grid .col-10,
.no-bs-grid .col-11,
.no-bs-grid .col-12,
.no-bs-grid .col-auto {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 350px !important;
  min-width: 280px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-basis: auto !important;
  flex-grow: 1 !important;
  flex-shrink: 1 !important;
}

/* Auto-adjust based on number of packages - Fixed Layout */
.no-bs-grid .apt__pricing-row:has(.pricing-card-wrapper:only-child) .pricing-card-wrapper {
  flex: 0 1 400px !important;
  max-width: 400px !important;
  margin: 0 auto !important;
}

.no-bs-grid .apt__pricing-row:has(.pricing-card-wrapper:nth-child(2):last-child) .pricing-card-wrapper {
  flex: 0 1 calc(50% - 10px) !important;
  min-width: 300px !important;
  max-width: calc(50% - 10px) !important;
}

.no-bs-grid .apt__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) .pricing-card-wrapper {
  flex: 0 1 calc(33.333% - 14px) !important;
  min-width: 250px !important;
  max-width: calc(33.333% - 14px) !important;
}

.no-bs-grid .apt__pricing-row:has(.pricing-card-wrapper:nth-child(4):last-child) .pricing-card-wrapper {
  flex: 0 1 calc(25% - 15px) !important;
  min-width: 200px !important;
  max-width: calc(25% - 15px) !important;
}

.no-bs-grid .apt__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
  flex: 0 1 calc(20% - 16px) !important;
  min-width: 180px !important;
  max-width: calc(20% - 16px) !important;
}

/* Force all cards to stay in one row */
.no-bs-grid .apt__pricing-row {
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
}

/* Ultimate Bootstrap Override - Target specific conflicting classes */
.no-bs-grid [class*="col-xl-"],
.no-bs-grid [class*="col-lg-"],
.no-bs-grid [class*="col-md-"],
.no-bs-grid [class*="col-sm-"],
.no-bs-grid [class*="col-"] {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 350px !important;
  min-width: 280px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-basis: auto !important;
  flex-grow: 1 !important;
  flex-shrink: 1 !important;
}

/* Override Bootstrap's flex properties completely */
.no-bs-grid .pricing-card-wrapper,
.no-bs-grid .pricing-card-wrapper[class*="col-"] {
  flex: 1 1 auto !important;
  flex-basis: auto !important;
  flex-grow: 1 !important;
  flex-shrink: 1 !important;
  width: auto !important;
  max-width: 350px !important;
  min-width: 280px !important;
}

/* Mobile Responsive - Unique Media Queries */
@media (max-width: 768px) {
  .no-bs-grid .apt__pricing-row {
    flex-direction: column !important;
    gap: 15px !important;
    overflow-x: visible !important;
  }
  
  .no-bs-grid .pricing-card-wrapper {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .no-bs-grid .apt__pricing-row {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  
  .no-bs-grid .apt__pricing-row:has(.pricing-card-wrapper:nth-child(4)) .pricing-card-wrapper,
  .no-bs-grid .apt__pricing-row:has(.pricing-card-wrapper:nth-child(5)) .pricing-card-wrapper {
    flex: 0 1 calc(50% - 10px) !important;
    min-width: 250px !important;
    max-width: calc(50% - 10px) !important;
  }
}

/* Tablet breakpoint for better 3-card layout */
@media (max-width: 1200px) and (min-width: 769px) {
  .no-bs-grid .apt__pricing-row:has(.pricing-card-wrapper:nth-child(3):last-child) .pricing-card-wrapper {
    flex: 0 1 calc(50% - 10px) !important;
    min-width: 250px !important;
    max-width: calc(50% - 10px) !important;
  }
}

/* Enhanced Icon and Text Alignment - Unique Classes */
.no-bs-grid .ap__features-list-item {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 12px !important;
  padding: 8px 0 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  gap: 12px !important;
}

.no-bs-grid .ap__features-list-item.icon-left {
  flex-direction: row !important;
  align-items: center !important;
}

.no-bs-grid .ap__features-list-item.icon-right {
  flex-direction: row-reverse !important;
  align-items: center !important;
}

.no-bs-grid .ap__list-bullet {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  margin: 0 !important;
}

.no-bs-grid .ap__list-bullet i {
  font-size: 12px !important;
  color: white !important;
  line-height: 1 !important;
}

.no-bs-grid .ap__feature-text {
  flex: 1 !important;
  text-align: left !important;
  font-size: inherit !important;
  line-height: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Icon size overrides for better alignment - Unique Classes */
.no-bs-grid.apt-icon-small .ap__list-bullet {
  width: 16px !important;
  height: 16px !important;
}

.no-bs-grid.apt-icon-small .ap__list-bullet i {
  font-size: 10px !important;
}

.no-bs-grid.apt-icon-medium .ap__list-bullet {
  width: 20px !important;
  height: 20px !important;
}

.no-bs-grid.apt-icon-medium .ap__list-bullet i {
  font-size: 12px !important;
}

.no-bs-grid.apt-icon-large .ap__list-bullet {
  width: 24px !important;
  height: 24px !important;
}

.no-bs-grid.apt-icon-large .ap__list-bullet i {
  font-size: 14px !important;
}

.no-bs-grid.apt-icon-xlarge .ap__list-bullet {
  width: 28px !important;
  height: 28px !important;
}

.no-bs-grid.apt-icon-xlarge .ap__list-bullet i {
  font-size: 16px !important;
}

/* Enhanced Card Styling - Unique Classes */
.no-bs-grid .ap__price-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  overflow: hidden !important;
}

.no-bs-grid .ap__price-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.no-bs-grid .ap__pricing-inner {
  padding: 30px 25px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.no-bs-grid .ap__plan-name {
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  text-align: center !important;
}

.no-bs-grid .ap__plan-desc {
  font-size: 14px !important;
  color: #666 !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  line-height: 1.4 !important;
}

.no-bs-grid .ap__price-container {
  text-align: center !important;
  margin-bottom: 25px !important;
}

.no-bs-grid .ap__plan-price {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.no-bs-grid .ap__currency-symbol {
  font-size: 32px !important;
  font-weight: 600 !important;
  vertical-align: top !important;
}

.no-bs-grid .ap__plan-interval {
  font-size: 16px !important;
  color: #666 !important;
  margin-left: 4px !important;
}

.no-bs-grid .ap__pricing-btn {
  display: block !important;
  width: 100% !important;
  padding: 15px 20px !important;
  background: #8b5cf6 !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  margin-bottom: 25px !important;
  border: none !important;
  cursor: pointer !important;
}

.no-bs-grid .ap__pricing-btn:hover {
  background: #7c3aed !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4) !important;
}

.no-bs-grid .ap__features-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 1 !important;
}

.no-bs-grid .ap__features-list-item {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 12px !important;
  padding: 8px 0 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  gap: 12px !important;
}

.no-bs-grid .ap__features-list-item:last-child {
  margin-bottom: 0 !important;
}

/* Featured card styling - Unique Classes */
.no-bs-grid .ap__price-card.active,
.no-bs-grid .ap__price-card.featured {
  border: 2px solid #8b5cf6 !important;
  position: relative !important;
  transform: scale(1.05) !important;
}

.no-bs-grid .ap__price-card.active::before,
.no-bs-grid .ap__price-card.featured::before {
  content: "Most Popular" !important;
  position: absolute !important;
  top: -10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #8b5cf6 !important;
  color: white !important;
  padding: 5px 20px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  z-index: 10 !important;
}

/* Theme 1 Bootstrap Integration - Clean & Simple */
.no-bs-grid.apt-pricing-theme1 {
  overflow: visible !important;
}

.no-bs-grid.apt-pricing-theme1 .container {
  max-width: 1200px !important;
  overflow: visible !important;
}

.no-bs-grid.apt-pricing-theme1 .apt__pricing-row {
  overflow: visible !important;
  flex-wrap: wrap !important;
}

/* Ensure clean display without any Bootstrap interference */
.no-bs-grid.apt-pricing-theme1 .ap__price-card {
  background: #ffffff !important;
  border: 1px solid #e0e6ed !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.no-bs-grid.apt-pricing-theme1 .ap__price-card.active {
  background: #1f2937 !important;
  border-color: #3b82f6 !important;
}
  