.dps-container {
    max-width: 100%;
    margin: 40px auto;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
	    width: 100%;
}

/* Toggles Styling */
.dps-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
}

.dps-toggle-group {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    display: flex;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.dps-toggle-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
}

.dps-toggle-btn.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}

/* Cards Grid */
.dps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dps-card {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    background: #fff;
}

.dps-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Featured State */
.dps-card-featured {
    border: 2px solid #ce9c00;
    background: linear-gradient(135deg, #051d10 0%, #0a331c 100%);
    color: #fff;
}

.dps-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fcc100;
    color: #000;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 15px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Header Area */
.dps-header-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.dps-plan-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dps-card-featured .dps-plan-icon-wrapper {
    background: rgba(255,255,255,0.1);
}

.dps-plan-icon-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.dps-subheading {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.dps-card-featured .dps-subheading {
    color: rgba(255,255,255,0.8);
}

.dps-plan-name {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: #2c7744;
}

.dps-card-featured .dps-plan-name {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dps-star {
    color: #fcc100;
}

.dps-plan-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 10px 0 0;
}

.dps-card-featured .dps-plan-desc {
    color: rgba(255,255,255,0.7);
}

.dps-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 25px 0;
}

.dps-card-featured .dps-divider {
    background: rgba(255,255,255,0.1);
}

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

.dps-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.dps-feat-icon {
    font-weight: bold;
    font-size: 14px;
}

.dps-feat-positive .dps-feat-icon { color: #2c7744; }
.dps-card-featured .dps-feat-positive .dps-feat-icon { color: #4ade80; }

.dps-feat-negative { opacity: 0.5; }
.dps-feat-negative .dps-feat-icon { color: #666; }
.dps-card-featured .dps-feat-negative .dps-feat-icon { color: rgba(255,255,255,0.5); }

/* Pricing Section */
.dps-price-section {
    text-align: center;
    margin-bottom: 20px;
}

.dps-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    color: #2c7744;
}

.dps-card-featured .dps-price-display { color: #fff; }

.dps-currency { font-size: 24px; font-weight: 700; margin-right: 2px; }
.dps-amount { font-size: 48px; font-weight: 900; }

.dps-period {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: -5px;
}

.dps-card-featured .dps-period { color: #fff; }

.dps-cancel-text {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.dps-card-featured .dps-cancel-text { color: rgba(255,255,255,0.5); }

/* Total Preview */
.dps-total-preview-wrap {
    text-align: center;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.dps-card-featured .dps-total-preview-wrap {
    border-color: rgba(255,255,255,0.1);
}

.dps-total-label {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.dps-total-preview {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.dps-card-featured .dps-total-preview { color: #fff; }

/* CTA */
.dps-cta {
    display: block;
    text-align: center;
    padding: 16px;
    background: #2c7744;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dps-cta:hover {
    background: #38a15c;
    box-shadow: 0 4px 12px rgba(44, 119, 68, 0.2);
}

.dps-card-featured .dps-cta {
    background: #fff;
    color: #051d10;
}

.dps-card-featured .dps-cta:hover {
    background: #f0fdf4;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Not Available State */
.dps-card.not-available {
    opacity: 0.6;
}

.dps-not-available-msg {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 20px;
}

.dps-card-featured .dps-not-available-msg {
    background: rgba(255,255,255,0.05);
}

.dps-not-available-msg p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

/* Animations */
@keyframes pricePop {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

.dps-amount.animate {
    animation: pricePop 0.3s ease-out;
}

@media (max-width: 640px) {
    .dps-grid { grid-template-columns: 1fr; }
    .dps-card-featured { transform: scale(1); }
}
