/* Enhanced Pricing Table Styles */
.de_pricing-table.type-2 {
    background: #ffffff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 5px;
    height: auto;
}

.de_pricing-table.type-2:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.de_pricing-table .d-head h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.de_pricing-table .d-head p {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-secondary);
    min-height: 34px;
}

.de_pricing-table .d-price h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 10px 0;
    line-height: 1;
}

.de_pricing-table .d-price h4 span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}

.de_pricing-table .d-group h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 15px 0 8px;
    color: var(--primary-color);
}

.de_pricing-table .d-list {
    margin-bottom: 15px;
}

.de_pricing-table .d-list li {
    padding: 6px 0 6px 25px;
    color: var(--text-secondary);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 13px;
}

.de_pricing-table .d-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    background: rgba(255, 184, 0, 0.1);
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    font-size: 10px;
}

.de_pricing-table .d-recommend {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent-color);
    color: #fff;
    padding: 4px 40px;
    font-size: 11px;
    transform: rotate(45deg);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.de_pricing-table .d-action {
    margin-top: 15px;
}

.de_pricing-table .d-action .btn-main {
    width: 100%;
    padding: 8px 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

/* Link Colors */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.menu-item {
    color: var(--primary-color) !important;
}

.menu-item:hover {
    color: var(--accent-color) !important;
} 