@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.wa-ptp-wrapper {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.wa-ptp-header {
    margin-bottom: 60px;
}

.wa-ptp-main-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.wa-ptp-main-subtitle {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

/* Toggle Switch */
.wa-ptp-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #ffffff;
}

.wa-ptp-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.wa-ptp-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #222222;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #a855f7;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Grid Container */
.wa-ptp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Individual Card */
.wa-ptp-card {
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.wa-ptp-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Featured Card Style */
.wa-ptp-featured {
    border: 2px solid #a855f7 !important;
    background: linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    z-index: 2;
}

.wa-ptp-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #a855f7;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Card Content Top */
.wa-ptp-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.wa-ptp-meta .tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-ptp-meta .tag-sub {
    font-size: 10px;
    color: #444444;
}

.wa-ptp-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}

.wa-ptp-card-desc {
    font-size: 13px;
    color: #444444;
    margin-bottom: 30px;
}

/* Price Box */
.wa-ptp-price-box {
    margin-bottom: 35px;
}

.wa-ptp-price {
    font-size: 32px;
    font-weight: 800;
}

.wa-ptp-currency {
    font-size: 20px;
    font-weight: 700;
    margin: 0 5px;
}

.wa-ptp-period {
    font-size: 13px;
    color: #444444;
}

/* Chips Section */
.wa-ptp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.wa-ptp-chips .chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* LED Colors for Chips */
.wa-ptp-chips .chip:nth-child(4n+1) { border-color: #a855f7; box-shadow: 0 0 8px rgba(168, 85, 247, 0.3); color: #e9d5ff; } /* Purple LED */
.wa-ptp-chips .chip:nth-child(4n+2) { border-color: #3b82f6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.3); color: #dbeafe; } /* Blue LED */
.wa-ptp-chips .chip:nth-child(4n+3) { border-color: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.3); color: #d1fae5; } /* Green LED */
.wa-ptp-chips .chip:nth-child(4n+4) { border-color: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.3); color: #fef3c7; } /* Orange LED */

.wa-ptp-chips .chip:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

/* Features List */
.wa-ptp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-grow: 1;
}

.wa-ptp-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.wa-ptp-features li .check {
    width: 14px;
    height: 14px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Card Button Footer */
.wa-ptp-footer {
    margin-top: auto;
}

.wa-ptp-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #18191a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.wa-ptp-btn:hover {
    background: #222222;
}

.wa-ptp-featured .wa-ptp-btn {
    background: #a855f7;
    color: #ffffff;
}

.wa-ptp-featured .wa-ptp-btn:hover {
    background: #9333ea;
}

/* Responsive */
@media (max-width: 1200px) {
    .wa-ptp-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .wa-ptp-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 400px;
    }
    .wa-ptp-main-title {
        font-size: 32px;
    }
}
