/* === Tabs === */
.gw-pricing-switcher .pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 3.5rem;
    padding: 0;
}

.pricing-tab-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pricing-tab-badge {
    position: absolute;
    top: -1.2rem;
    background: #3f9900;
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
}

.pricing-tab {
    padding: 0.5rem 1rem;
    background: #fff !important;
    color: #0C0C0C !important;
    font-size: 110% !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab:hover {
    background: #680001 !important;
    color: #fff !important;
}

.pricing-tab.active {
    background: #AE0001 !important;
    color: #fff !important;
}

/* === Cards Grid === */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* === Single Card === */
.pricing-card {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2rem;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: transparent;
    box-shadow: 0 0 0 2px #AE0001;
}

.pricing-card-badge {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    background: #d87200;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
    font-weight: 600;
    z-index: 3;
    white-space: nowrap;
}

.pricing-card h4 {
    margin-bottom: 1rem;
}

.pricing-card-subtitle {
    color: #FFFFFFCC;
}

/* === Pricing === */
.pricing-inline {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
}

.price-crossed {
    text-decoration: line-through;
    color: #AE0001;
    font-size: 1.25rem;
}

.price-main {
    font-size: 3.5rem;
    line-height: 0.8em;
    font-weight: 700;
    color: #fff;
}

.price-unit {
    font-size: 0.85rem;
    font-weight: 400;
    color: #ccc;
    margin-left: 0.25rem;
}

.price-total {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* === Button === */
.pricing-button {
    display: inline-block;
    width: 100%;
    background: #AE0001;
    color: white;
    padding: 0.8rem 1.2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.pricing-button:hover {
    background: #680001;
    color: #fff;
}

/* === Savings === */
.price-saving {
    font-size: 0.85rem;
    color: #fff;
    margin: 0.675rem 0;
}

/* === Feature Section === */
.pricing-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.pricing-section-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pricing-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.pricing-section ul li::marker {
    color: red;
}