.wcsbm-membership-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 100px;
}

.wcsbm-membership-plan {
    background: linear-gradient(to bottom right, #ffffff, #f8f8f8);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    max-width: 340px;
    margin: auto;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.wcsbm-membership-plan:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.plan-header {
    margin-bottom: 20px;
}

.plan-title {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.plan-tagline {
    display: inline-block;
    background: #eef6ff;
    color: #0071a1;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 6px;
}

.plan-pricing {
    margin: 20px 0;
}

.actual-price {
    font-size: 16px;
    color: #999;
    margin-right: 10px;
}

.offer-price {
    font-size: 24px;
    color: #27ae60;
    font-weight: bold;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #555;
}

.plan-features li {
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

.plan-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 14px;
}

.plan-button {
    display: inline-block;
    background: #0071a1;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.plan-button:hover {
    background: #005f87;
}

.product-item__badges {
    position: relative !important;
}


.wcsbm-profit-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    background-color: #27ae60;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 6px;
}

.wcsbm-membership-plans-wrapper .plan-toggle {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.wcsbm-membership-plans-wrapper .plan-toggle button {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
    color: black;
    cursor: pointer;
}
.wcsbm-membership-plans-wrapper .plan-toggle button:hover {
    background-color: #1d3558;
    color: white;
    border-color: #1d3558;
}
.wcsbm-membership-plans-wrapper .plan-toggle button.active {
    background-color: #1d3558;
    color: white;
    border-color: #1d3558;
}
.wcsbm-membership-plans-wrapper .plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.wcsbm-membership-plans-wrapper .plan {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 300px;
    transition: all 0.3s ease;
}
.wcsbm-membership-plans-wrapper .actual-price {
    font-size: 1rem;
    color: #5F5F5F;
    margin: 0.5rem 0;
    text-decoration: line-through;
    text-transform: lowercase;
}
.wcsbm-membership-plans-wrapper .plan h3 {
    margin-top: 0;
    font-size: 1.25rem;
}
.wcsbm-membership-plans-wrapper .price {
    font-size: 1.5rem;
    color: #1d3558;
    margin: 0.5rem 0;
    text-transform: lowercase;
}
.wcsbm-membership-plans-wrapper .features {
    margin: 1rem 0;
}
.wcsbm-membership-plans-wrapper .features li {
    list-style: none;
    margin-bottom: 0.5rem;
}
.wcsbm-membership-plans-wrapper .features li:before{
    content: "✔";
    color: rgb(39, 174, 96);
    font-size: 14px;
    margin-right: 5px;
}
.wcsbm-membership-plans-wrapper li.plus:before{
    display:none;
}
.wcsbm-membership-plans-wrapper .features li.plus{
    font-weight: 700;
}
.wcsbm-membership-plans-wrapper .save{
    background-color: rgb(39, 174, 96);
    color: #fff;
    font-size: 12px;
    padding: 5px;
    font-weight: 700;
    border-radius: 5px;
}
.wcsbm-membership-plans-wrapper .plan-price-option {
    display: none;
}
.wcsbm-membership-plans-wrapper .plan-price-option.active {
    display: block;
}
.wcsbm-membership-plans-wrapper .action-button {
    display: block;
    background: #c0392b;
    color: #fff !important;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    font-weight: 400;
}

.home .swiper-pagination
{display:none}


/* Membership Clard - Single Product Page */
.membership-plans {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 0;
    padding: 10px;
    border-radius: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    min-width: 0;
    transition: all 0.2s ease-in-out;
    font-size: 0.85rem;
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.plan-icon {
    font-size: 0.8rem;
}

.plan-badge {
    color: #27ae60;
    border-radius: 10px;
    font-size: 0.65rem;
    margin-left: auto;
    font-weight: 700;
}

.plan-price {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
}

.business.blurred .plan-price,
.business.blurred .plan-badge
{
    filter: blur(5px);
}

.plan-desc {
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.3;
}

.plan-button {
    display: inline-block;
    padding: 6px 14px;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    text-align: center;
}

.plan-button:hover {
    background-color: #005bb5;
    color: #fff;
}

.plan-card.locked {
    background-color: #f8f5ff;
    border: 1px solid #c6b9f9;
    text-align: center;
}

.plan-locked-info {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.lock-icon {
    font-size: 1rem;
}

p.wcsbm-retail-range {
    background-color: #0073e6;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 10px;
}

.price-note {
    font-size: 12px;
    color: #fff;
    background-color: #27ae60;
    padding: 5px;
    border-radius: 6px;
}

.product_item .price-note {
    display: none;
}

@media only screen and (max-width: 600px) {
  .membership-plans {
    flex-wrap: wrap;
  }

  .membership-plans .plan-card {
    flex: 1 1 40%;
  }
}