.elementor-1676 .elementor-element.elementor-element-4acbad82{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1676 .elementor-element.elementor-element-115cdc24{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-30a439d1 *//* Pricing Section Styles - Enhanced Version */
.gym-pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  perspective: 1000px;
}

.pricing-card {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
  border-radius: 16px;
  padding: 36px;
  width: 330px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: cardPulse 3s infinite alternate ease-in-out;
}

@keyframes cardPulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  }
  100% {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.pricing-card:hover::after {
  left: 100%;
  animation: shine 1.5s;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.pricing-card-featured {
  background: linear-gradient(145deg, #f9f8f3, #ffffff);
  border: 2px solid #cca45a;
  position: relative;
  transform: translateY(-5px);
  animation: featuredPulse 3s infinite alternate ease-in-out;
}

@keyframes featuredPulse {
  0% {
    box-shadow: 0 12px 32px rgba(204, 164, 90, 0.15);
  }
  100% {
    box-shadow: 0 18px 42px rgba(204, 164, 90, 0.25);
  }
}

.pricing-card-featured::before {
  content: "Populärast";
  position: absolute;
  top: 15px;
  right: -40px;
  background: linear-gradient(90deg, #cca45a, #d8b978);
  color: white;
  padding: 6px 45px;
  font-size: 12px;
  transform: rotate(45deg);
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 28px;
  position: relative;
}

.pricing-header::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #cca45a;
  margin-top: 12px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.pricing-card:hover .pricing-header::after {
  width: 60px;
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.pricing-description {
  color: #666;
  font-size: 16px;
  font-style: italic;
  opacity: 0.9;
}

.pricing-price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-price {
  transform: scale(1.05);
}

.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: #222;
  line-height: 1;
}

.price-currency {
  font-size: 22px;
  font-weight: 500;
  color: #444;
  margin-right: 4px;
  align-self: flex-start;
  margin-top: 8px;
}

.price-period {
  font-size: 16px;
  color: #666;
  margin-left: 6px;
}

.pricing-features {
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 10px 0;
  color: #444;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
  position: relative;
  padding-left: 28px;
}

.pricing-features li:hover {
  transform: translateX(5px);
  color: #222;
}

.pricing-features i {
  color: #cca45a;
  position: absolute;
  left: 0;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.pricing-features li:hover i {
  transform: scale(1.2);
}

.pricing-action {
  margin-top: auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.pricing-button {
  display: block;
  background: linear-gradient(135deg, #333 0%, #222 100%);
  color: white;
  text-align: center;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #222 0%, #000 100%);
  transition: all 0.4s;
  border-radius: 8px;
  z-index: -1;
}

.pricing-button:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.pricing-button:hover::before {
  width: 100%;
}

.pricing-card-featured .pricing-button {
  background: linear-gradient(135deg, #cca45a 0%, #b8914e 100%);
}

.pricing-card-featured .pricing-button::before {
  background: linear-gradient(135deg, #b8914e 0%, #a77f3d 100%);
}

.pricing-card-featured .pricing-button:hover {
  transform: translateY(-2px);
}

/* Add-ons Card Styling */
.pricing-card-addons {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
  border: 1px solid #e0e0e0;
}

.pricing-addons {
  margin-bottom: 32px;
  flex-grow: 1;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease;
}

.addon-item:hover {
  background-color: rgba(204, 164, 90, 0.05);
  transform: translateX(5px);
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 4px;
}

.addon-item:last-child {
  border-bottom: none;
}

.addon-name {
  font-weight: 500;
  color: #444;
}

.addon-price {
  font-weight: 600;
  color: #cca45a;
  transition: transform 0.2s ease;
}

.addon-item:hover .addon-price {
  transform: scale(1.1);
}

/* Add pulsing highlight to featured card */
@keyframes featuredHighlight {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 164, 90, 0.2);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(204, 164, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 164, 90, 0);
  }
}

.pricing-card-featured {
  animation: featuredPulse 3s infinite alternate ease-in-out, featuredHighlight 2s infinite;
}

/* Fixed entrance animation for the entire pricing section */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations without the hover condition that was causing refreshes */
.pricing-card:nth-child(1) {
  animation: fadeInUp 0.6s ease forwards, cardPulse 3s infinite alternate ease-in-out;
  animation-play-state: running;
}

.pricing-card:nth-child(2) {
  animation: fadeInUp 0.8s ease forwards, featuredPulse 3s infinite alternate ease-in-out;
  animation-play-state: running;
}

.pricing-card:nth-child(3) {
  animation: fadeInUp 1s ease forwards, cardPulse 3s infinite alternate ease-in-out;
  animation-play-state: running;
}

/* Responsive Design */
@media (max-width: 990px) {
  .pricing-card {
    width: calc(50% - 16px);
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
  
  .gym-pricing-container {
    gap: 24px;
    padding: 30px 15px;
  }
  
  .price-amount {
    font-size: 42px;
  }
  
  .pricing-title {
    font-size: 24px;
  }
}

/* Improve focus state for accessibility */
.pricing-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(204, 164, 90, 0.3);
}

/* Optimize performance */
@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .pricing-button,
  .pricing-features li,
  .addon-item {
    transition: none;
    animation: none;
  }
}/* End custom CSS */