/* NexoDraft Pricing Plans Widget Styles */
:root {
    --primary-grad: linear-gradient(135deg, #075e4e 0%, #10b981 50%, #20d9a1 100%);
    --primary: #075e4e;
    --primary-hover: #043c32;
    --primary-light: #e6fbf5;
    --accent: #10b981;
    --accent-hover: #05a672;
    --bg-mint: #f4f7f6;
    --bg-card: #ffffff;
    --bg-alt: #e9f2ef;
    --text-main: #1e293b;
    --text-muted: #577570;
    --border-color: #d1dfdb;
    --shadow-sm: 0 4px 10px rgba(16, 185, 129, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    --shadow-md: 0 12px 30px rgba(16, 185, 129, 0.06), 0 4px 10px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 30px 60px rgba(16, 185, 129, 0.08), 0 15px 30px rgba(0, 0, 0, 0.03);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nexodraft-pricing-wrapper {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.nexodraft-pricing-wrapper * {
    box-sizing: border-box;
}

.nexodraft-pricing-wrapper .container {
    width: 100%;
    margin: 0 auto;
}

/* Header Styles */
.nexodraft-pricing-wrapper .section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px auto;
}

.nexodraft-pricing-wrapper .section-subtitle {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}

.nexodraft-pricing-wrapper .section-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #0c211e;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.nexodraft-pricing-wrapper .section-desc {
    color: var(--text-main);
    opacity: 0.85;
    font-size: 16px;
}

/* Pricing Toggle */
.nexodraft-pricing-wrapper .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 44px;
}

.nexodraft-pricing-wrapper .pricing-toggle span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    transition: var(--transition);
}

.nexodraft-pricing-wrapper .pricing-toggle span.active {
    color: var(--primary);
}

.nexodraft-pricing-wrapper .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    margin: 0;
}

.nexodraft-pricing-wrapper .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nexodraft-pricing-wrapper .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
    border-radius: 34px;
}

.nexodraft-pricing-wrapper .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nexodraft-pricing-wrapper input:checked + .slider {
    background: var(--primary-grad);
}

.nexodraft-pricing-wrapper input:checked + .slider:before {
    transform: translateX(22px);
}

/* Pricing Grid */
.nexodraft-pricing-wrapper .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: stretch;
}

/* Pricing Card */
.nexodraft-pricing-wrapper .pricing-card {
    background-color: #ffffff;
    border: 1px solid #d1dfdb;
    border-radius: 4px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.nexodraft-pricing-wrapper .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Popular Card */
.nexodraft-pricing-wrapper .pricing-card.popular {
    border: 2px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                var(--primary-grad) border-box;
    box-shadow: var(--shadow-md);
}

.nexodraft-pricing-wrapper .pricing-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-grad);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

/* Plan Details */
.nexodraft-pricing-wrapper .pricing-name {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 0;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.nexodraft-pricing-wrapper .pricing-desc {
    color: var(--text-main);
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 28px;
    margin-top: 0;
}

/* Price */
.nexodraft-pricing-wrapper .pricing-price {
    margin-bottom: 32px;
}

.nexodraft-pricing-wrapper .pricing-price h2 {
    font-size: 48px;
    color: var(--primary);
    display: inline-flex;
    align-items: baseline;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin: 0;
}

.nexodraft-pricing-wrapper .pricing-price h2 span {
    font-size: 15px;
    color: var(--accent);
    font-weight: 600;
    margin-left: 6px;
    letter-spacing: normal;
}

.nexodraft-pricing-wrapper .pricing-price h2 span.amount {
    margin-left: 0;
    font-size: inherit;
    color: inherit;
}

/* Features */
.nexodraft-pricing-wrapper .pricing-features {
    margin-bottom: 36px;
    flex-grow: 1;
    list-style: none;
    padding: 0;
}

.nexodraft-pricing-wrapper .pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14.5px;
    color: var(--text-main);
}

.nexodraft-pricing-wrapper .pricing-features li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.nexodraft-pricing-wrapper .pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
    text-decoration: line-through;
}

.nexodraft-pricing-wrapper .pricing-features li.disabled svg {
    color: var(--text-muted);
}

/* Buttons */
.nexodraft-pricing-wrapper .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-align: center;
}

.nexodraft-pricing-wrapper .btn-primary {
    background: var(--primary-grad);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nexodraft-pricing-wrapper .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #043c32 0%, #075e4e 50%, #10b981 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.nexodraft-pricing-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

.nexodraft-pricing-wrapper .btn-primary:hover::before {
    opacity: 1;
}

.nexodraft-pricing-wrapper .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.nexodraft-pricing-wrapper .btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    color: var(--primary);
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
    .nexodraft-pricing-wrapper .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .nexodraft-pricing-wrapper .pricing-grid {
        grid-template-columns: 1fr;
    }
}
