/* Pricing Page Specific Styles */

/* Add styles relevant only to pricing.html here */
/* Placeholder - Add specific pricing table styles if they exist */

.pricing-option.popular-plan {
    border-color: var(--primary-link-hover-color); /* Brighter blue border */
    box-shadow: 0 0 15px var(--primary-link-hover-color); /* Subtle glow effect */
    position: relative; /* Needed for badge positioning */
    overflow: hidden; /* To contain the badge if it's a corner ribbon */
}

.most-popular-badge {
    position: absolute;
    top: -1px; /* Adjust to align with border */
    right: -1px; /* Adjust to align with border */
    background-color: var(--primary-link-hover-color); /* Brighter blue */
    color: var(--text-color);
    padding: 8px 12px;
    font-size: 0.9em;
    font-weight: bold;
    border-top-right-radius: 8px; /* Match card's border-radius */
    border-bottom-left-radius: 8px;
    /* Small triangle effect - optional */
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); */
    line-height: 1.2;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Alternative banner style - more prominent */
/* .most-popular-badge {
    position: absolute;
    top: 15px; 
    right: -35px; 
    background-color: var(--primary-link-hover-color);
    color: var(--text-color);
    padding: 5px 30px;
    font-size: 0.9em;
    font-weight: bold;
    transform: rotate(45deg);
    transform-origin: top right;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    z-index: 1;
    width: 150px; 
    text-align: center;
} */

/* Ensure the badge is above other content within the card if any overlap */
.pricing-option.popular-plan h3 {
    position: relative;
    z-index: 0; /* Or adjust if elements overlap weirdly */
} 