/* ============================================
   PREMIUM / IN-APP PURCHASE MODULE
   Standalone CSS - Does not affect existing styles
   ============================================ */

/* Premium Menu Item */
.premium-menu-item {
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    color: #1a202c !important;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.premium-menu-item i {
    color: #1a202c !important;
}

.premium-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@media (hover: hover) and (pointer: fine) {
.premium-menu-item:hover {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    transform: translateX(5px);
}
}


.premium-badge {
    display: inline-block;
    background: #1a202c;
    color: #68d391;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: var(--font-size-secondary);
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Premium Modal */
.premium-modal .modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    background: var(--bg-secondary);
}

.premium-content {
    padding: 0;
}

/* Premium Header */
.premium-header {
    background: linear-gradient(135deg, #68d391 0%, #48bb78 50%, #38a169 100%);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.premium-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    /* Safe area for iPhone notch */
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
}

@media (hover: hover) and (pointer: fine) {
.premium-close:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}
}


.premium-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.premium-icon i {
    font-size: 2.5rem;
    color: #1a202c;
    animation: bounceFloat 3s ease-in-out infinite;
}

@keyframes bounceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.premium-title {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.premium-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Premium Body */
.premium-body {
    padding: 2rem;
}

/* Current Plan Badge */
.current-plan-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.free-badge {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.free-badge i {
    color: var(--text-muted);
}

/* Feature Comparison */
.premium-comparison {
    margin-bottom: 2rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.save-badge {
    background: var(--accent-green);
    color: var(--bg-primary);
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

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

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

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

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--accent-green);
}

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

/* Billing Options (Radio Buttons) */
.billing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.billing-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.billing-option:hover {
    border-color: var(--accent-green);
    background: var(--bg-primary);
}
}


.billing-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.billing-option input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--accent-green);
    background: var(--accent-green);
}

.billing-option input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.billing-option input[type="radio"]:checked ~ .billing-info .billing-price {
    color: var(--accent-green);
    font-weight: 700;
}

.billing-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}

.billing-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.billing-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-column {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.premium-column {
    border: 2px solid #68d391;
    background: linear-gradient(135deg, rgba(104, 211, 145, 0.05) 0%, rgba(72, 187, 120, 0.05) 100%);
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(104, 211, 145, 0.2);
}

.premium-badge-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    color: #1a202c;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.column-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.column-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.column-price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.column-price .price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.column-price span {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.column-save {
    font-size: 0.8125rem;
    color: #10b981;
    margin: 0.25rem 0 0;
    font-weight: 500;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.feature-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item.limited {
    color: var(--text-muted);
}

.feature-item.limited i {
    color: #f59e0b;
}

.feature-item:not(.disabled) i {
    color: #10b981;
}

.feature-item.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.feature-item.disabled i {
    color: #ef4444;
}

.feature-item strong {
    color: #68d391;
    font-weight: 600;
}

/* Upgrade Button */
.btn-premium-upgrade {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    color: #1a202c;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (hover: hover) and (pointer: fine) {
.btn-premium-upgrade:hover {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(104, 211, 145, 0.4);
}
}


.btn-premium-upgrade i {
    font-size: 1.125rem;
}

/* Manage Subscription Button */
.btn-manage-subscription {
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem;
    background: rgba(104, 211, 145, 0.1);
    border: 2px solid #68d391;
    color: #68d391;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (hover: hover) and (pointer: fine) {
.btn-manage-subscription:hover {
    background: rgba(104, 211, 145, 0.2);
    transform: translateY(-1px);
}
}


.btn-manage-subscription i {
    font-size: 1rem;
}

/* Benefits Section */
.premium-benefits {
    margin-bottom: 2rem;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow);
}
}


.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(104, 211, 145, 0.2) 0%, rgba(72, 187, 120, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #68d391;
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.benefit-card-wide {
    grid-column: span 2;
}

/* Pricing Options */
.premium-pricing {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 1.5rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow);
}
}


.pricing-card.recommended {
    border-color: #68d391;
    background: linear-gradient(135deg, rgba(104, 211, 145, 0.05) 0%, rgba(72, 187, 120, 0.05) 100%);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.25rem 0.875rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pricing-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.pricing-amount {
    margin-bottom: 0.5rem;
}

.pricing-amount .price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-amount .period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.pricing-save {
    font-size: 0.8125rem;
    color: #10b981;
    font-weight: 500;
    margin: 0.25rem 0 0;
}

.pricing-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.4;
}

.btn-select-plan {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.btn-select-plan:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}
}


.btn-select-plan.premium-glow {
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    color: #1a202c;
    border: none;
}

@media (hover: hover) and (pointer: fine) {
.btn-select-plan.premium-glow:hover {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 8px 20px rgba(104, 211, 145, 0.4);
}
}


/* Trust Elements */
.premium-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.trust-item i {
    font-size: 1.5rem;
    color: #10b981;
}

/* Premium Footer */
.premium-footer {
    text-align: center;
}

.btn-restore-purchase {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (hover: hover) and (pointer: fine) {
.btn-restore-purchase:hover {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}
}


.premium-terms {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

.terms-link {
    color: #68d391;
    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
.terms-link:hover {
    text-decoration: underline;
}
}


/* Limit Warning Badges (for throughout the app) */
.limit-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.limit-warning i {
    font-size: 0.9375rem;
}

.limit-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(104, 211, 145, 0.1);
    border: 1px solid #68d391;
    color: #68d391;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.upgrade-prompt {
    background: linear-gradient(135deg, rgba(104, 211, 145, 0.1) 0%, rgba(72, 187, 120, 0.1) 100%);
    border: 1px solid #68d391;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.upgrade-prompt-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.upgrade-prompt-icon i {
    color: #1a202c;
    font-size: 1.125rem;
}

.upgrade-prompt-content {
    flex: 1;
}

.upgrade-prompt-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.upgrade-prompt-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.btn-upgrade-small {
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    color: #1a202c;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
.btn-upgrade-small:hover {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    transform: translateY(-2px);
}
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .premium-modal .modal-content {
        max-width: 95%;
        max-height: 95vh;
        border-radius: 20px;
        margin: 1rem;
    }
    
    .premium-header {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 20px 20px 0 0;
    }
    
    .premium-icon {
        width: 60px;
        height: 60px;
    }
    
    .premium-icon i {
        font-size: 2rem;
    }
    
    .premium-title {
        font-size: 1.5rem;
    }
    
    .premium-subtitle {
        font-size: 0.9rem;
    }
    
    .premium-body {
        padding: 1.5rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .premium-column {
        transform: scale(1);
    }
    
    .feature-column {
        padding: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-card-wide {
        grid-column: span 1;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .premium-trust {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .upgrade-prompt {
        flex-direction: column;
        text-align: center;
        padding: 0.875rem;
    }
    
    .btn-premium-upgrade,
    .btn-select-plan {
        padding: 0.875rem;
        font-size: 0.9375rem;
        min-height: 48px; /* Touch-friendly */
    }
    
    .btn-restore-purchase {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px; /* Touch-friendly */
    }
}

@media (max-width: 480px) {
    .premium-modal .modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .premium-header {
        padding: 1.5rem 1rem 1rem;
        padding-top: max(1.5rem, calc(env(safe-area-inset-top) + 0.5rem));
        border-radius: 0;
    }
    
    .premium-close {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
        /* Position below status bar/notch */
        top: max(0.75rem, calc(env(safe-area-inset-top) + 0.5rem));
        right: max(0.75rem, calc(env(safe-area-inset-right) + 0.5rem));
    }
    
    .premium-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .premium-icon i {
        font-size: 1.75rem;
    }
    
    .premium-title {
        font-size: 1.25rem;
        margin-bottom: 0.375rem;
    }
    
    .premium-subtitle {
        font-size: 0.875rem;
    }
    
    .premium-body {
        padding: 1rem 0.875rem;
    }
    
    .comparison-header h3,
    .benefits-title,
    .pricing-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .column-header h4 {
        font-size: 1.125rem;
    }
    
    .column-price .price,
    .pricing-amount .price {
        font-size: 1.5rem;
    }
    
    .feature-column {
        padding: 1rem;
    }
    
    .feature-list {
        gap: 0.625rem;
    }
    
    .feature-item {
        font-size: 0.875rem;
    }
    
    .benefit-card {
        padding: 0.875rem;
    }
    
    .benefit-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.5rem;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
    
    .benefit-card h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
    }
    
    .benefit-card p {
        font-size: 0.875rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-header h4 {
        font-size: 1rem;
    }
    
    .pricing-description {
        font-size: 0.875rem;
    }
    
    .premium-trust {
        padding: 0.875rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
    
    .trust-item i {
        font-size: 1.25rem;
    }
    
    .premium-terms {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .billing-option {
        padding: 0.75rem;
    }
    
    .billing-price {
        font-size: 1rem;
    }
    
    .billing-desc {
        font-size: 0.75rem;
    }
    
    .plan-badge {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 375px) {
    .premium-header {
        padding: 1.25rem 0.875rem 0.875rem;
    }
    
    .premium-body {
        padding: 0.875rem 0.75rem;
    }
    
    .premium-title {
        font-size: 1.125rem;
    }
    
    .premium-subtitle {
        font-size: 0.8125rem;
    }
    
    .comparison-header h3,
    .benefits-title,
    .pricing-title {
        font-size: 1rem;
    }
    
    .column-price .price,
    .pricing-amount .price {
        font-size: 1.375rem;
    }
    
    .feature-item {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
    
    .benefit-card {
        padding: 0.75rem;
    }
    
    .benefit-card h4 {
        font-size: 0.875rem;
    }
    
    .benefit-card p {
        font-size: 0.8125rem;
    }
    
    .btn-premium-upgrade,
    .btn-select-plan {
        font-size: 0.875rem;
        padding: 0.75rem;
    }
}

