/*----------------------------------------------
*
* [Theme Pink Stylesheet]
*
* Theme    : Leverage
* Version  : 2.1
* Author   : Codings
* Support  : codings.dev
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
    
    --primary-color: #ff3b30;
    --secondary-color: #ff3b30;
}

.book-item .btn {
  display: inline-block;   /* Butonun genişliği içerik kadar olsun */
  margin: 1rem auto 0 auto; /* Üstten 1rem boşluk, sağ-sol otomatik, alt 0 */
}
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* #endregion Root */

/* ====== Pricing Section ====== */
.pricing-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== Pricing Box ====== */
.pricing-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 360px;
  padding: 30px 25px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-box h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* ====== Price (No Border or Pills) ====== */
.pricing-box .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-block;
}

.pricing-box .price span {
  font-size: 0.9rem;
  font-weight: normal;
  color: #888;
}

/* ====== Bullet List ====== */
.pricing-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-box ul li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ====== Badge ====== */
.badge {
  position: absolute;
  top: -16px;
  left: 20px;
  background-color: #ff5a1f;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ====== Buttons ====== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
}

.start-blue {
  color: #1e40af;
  border: 2px solid #1e40af;
  background: transparent;
}

.start-blue:hover {
  background: #1e40af;
  color: #fff;
}

.start-red {
  color: #e11d48;
  border: 2px solid #e11d48;
  background: transparent;
}

.start-red:hover {
  background: #e11d48;
  color: #fff;
}

.start-black {
  color: #000;
  border: 2px solid #000;
  background: transparent;
}

.start-black:hover {
  background: #000;
  color: #fff;
}

/* ====== Reset unwanted styles globally if needed ====== */
strong,
.amount,
.badge,
.pricing-box strong {
  all: unset;
}

/* ====== Responsive Layout ====== */
@media (max-width: 992px) {
  .pricing-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .pricing-box {
    flex: 1 1 100%;
  }
}