/* ===== Layout ===== */

.wriwoods-pricing {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    max-width: 100%;
    margin: 60px auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .wriwoods-pricing {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .wriwoods-pricing .wriwoods-level {
        padding: 20px;
    }
}

/* ===== Card ===== */

.wriwoods-level {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    width: 100%;
    max-width: 100%;
    transition: all .25s ease;
    position: relative;
    border: 1px solid #e7e7e7;
}

.wriwoods-level:hover {
    transform: translateY(-6px);
}

/* Highlighted tier */
.wriwoods-level.is-highlighted {
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    border-color: #dfe8df;
}

/* ===== Tag ===== */

.wriwoods-tag {
    display: inline-block;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #eef2ee;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

/* subtle shine */
.wriwoods-level.is-highlighted .wriwoods-tag::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 100%;
    top: 0;
    left: -80px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );
    animation: wriwoods-shine 5s infinite;
}

@keyframes wriwoods-shine {
    0% { left: -80px; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* ===== Title ===== */

.wriwoods-level-title {
    font-size: 26px;
    margin-bottom: 10px;
}

/* ===== Price ===== */

.wriwoods-level-price .wriwoods-level-amount {
    font-size: 42px;
    font-weight: bold;
    color: #000;
}

/* ===== Description ===== */

.wriwoods-level-desc {
    color: #666;
    margin-bottom: 20px;
}

/* ===== Features ===== */

.wriwoods-level-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wriwoods-level-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.wriwoods-level-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b8f6b;
}

/* ===== Button ===== */

.wriwoods-level-cta {
    margin: 25px 0;
}

.wriwoods-level-cta .button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background-color: var(--wriwoods-primary-color);
    transition: all 0.25s ease;
    border: none;
}

.wriwoods-level-cta .button:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
    cursor: pointer;
}

.wriwoods-level-cta .button:active {
    transform: translateY(0);
    filter: brightness(0.85);
}

/* subtle glow for highlighted */
.wriwoods-level.is-highlighted .button {
    position: relative;
    overflow: hidden;
}

.wriwoods-level.is-highlighted .button:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    left: -100px;
    top: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    animation: wriwoods-button-shine 6s infinite;
}

@keyframes wriwoods-button-shine {
    0% { left: -100px }
    20% { left: 100% }
    100% { left: 100% }
}

.wriwoods-level-image {
    text-align: left;
    margin-bottom: 20px;
}

.wriwoods-level-image img {
    max-width: 150px;
    height: auto;
    display: inline-block;
}

.wriwoods-level-short-desc p {
    font-size: 16px;
    color: gray;
}