/**
 * Pretpot Pricing Card Style 1 CSS
 */

.pretpot-pricing-card-style-1 {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.pretpot-pricing-badge-wrapper {
    text-align: center;
    margin-top: -15px;
    margin-bottom: 20px;
}

.pretpot-pricing-badge {
    display: inline-block;
    background-color: #ffcc80;
    color: #000000;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

.pretpot-pricing-header {
    margin-bottom: 30px;
}

.pretpot-pricing-title {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.pretpot-pricing-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
}

.pretpot-pricing-toggle-wrapper {
    margin: 25px 0;
}

.pretpot-pricing-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: #e0e0e0;
    border-radius: 50px;
    padding: 4px;
    cursor: pointer;
    user-select: none;
    min-width: 200px;
    height: 44px;
}

.pretpot-pricing-toggle-active {
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background-color: #ffffff;
    border-radius: 50px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pretpot-pricing-toggle.active .pretpot-pricing-toggle-active {
    transform: translateX(100%);
}

.pretpot-pricing-toggle-labels {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    align-items: center;
}

.pretpot-pricing-toggle-label {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 0 20px;
}

.pretpot-pricing-toggle-label.active {
    color: #000000;
}

.pretpot-pricing-price-wrapper {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pretpot-pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #ff0000;
    line-height: 1;
}

.pretpot-pricing-sale {
    font-size: 24px;
    color: #999999;
    text-decoration: line-through;
    line-height: 1;
}

.pretpot-pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

.pretpot-pricing-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pretpot-pricing-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pretpot-pricing-button-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.pretpot-pricing-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px 0;
}

.pretpot-pricing-features {
    text-align: left;
}

.pretpot-pricing-features-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.pretpot-pricing-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pretpot-pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.pretpot-pricing-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000;
    flex-shrink: 0;
}

.pretpot-pricing-feature-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.pretpot-pricing-feature-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .pretpot-pricing-card-style-1 {
        padding: 30px 20px;
    }
    
    .pretpot-pricing-title {
        font-size: 24px;
    }
    
    .pretpot-pricing-amount {
        font-size: 36px;
    }
    
    .pretpot-pricing-sale {
        font-size: 20px;
    }
    
    .pretpot-pricing-toggle {
        min-width: 160px;
        height: 40px;
    }
}