/**
 * Styles frontend pour MBC Subscription Addon
 */

/* Badge membre */
.mbc-member-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
}

/* Prix membre sur les produits */
.mbc-subscriber-price {
    color: #4CAF50;
    font-weight: bold;
    margin-top: 8px;
}

.mbc-subscriber-price .label {
    font-size: 14px;
    text-transform: uppercase;
}

.mbc-subscriber-price .price {
    font-size: 18px;
}

.mbc-subscriber-price .savings {
    color: #666;
    font-size: 13px;
    font-style: italic;
}

/* Call to action pour devenir membre */
.mbc-become-member-cta {
    background: #f8f9fa;
    border: 2px dashed #4CAF50;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    text-align: center;
}

.mbc-become-member-cta h3 {
    margin: 0 0 8px 0;
    color: #333;
}

.mbc-become-member-cta p {
    margin: 0 0 12px 0;
    color: #666;
}

.mbc-become-member-cta .button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.mbc-become-member-cta .button:hover {
    background: #45a049;
}

/* Page d'abonnement */
.mbc-subscription-plans {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.mbc-subscription-plan {
    flex: 1;
    min-width: 250px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.mbc-subscription-plan:hover {
    border-color: #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.mbc-subscription-plan.featured {
    border-color: #4CAF50;
    background: #f1f8f4;
    position: relative;
}

.mbc-subscription-plan.featured::before {
    content: "POPULAIRE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.mbc-subscription-plan h3 {
    margin: 0 0 16px 0;
}

.mbc-subscription-plan .price {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 16px 0;
}

.mbc-subscription-plan .price .currency {
    font-size: 24px;
}

.mbc-subscription-plan .period {
    color: #666;
    font-size: 14px;
}

.mbc-subscription-plan ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.mbc-subscription-plan ul li {
    padding: 8px 0;
    color: #666;
}

.mbc-subscription-plan ul li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 8px;
}

.mbc-subscription-plan .button {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.mbc-subscription-plan .button:hover {
    background: #45a049;
}

/* Mon abonnement - page compte client */
.mbc-my-subscription {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin: 16px 0;
}

.mbc-my-subscription .status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-left: 8px;
}

.mbc-my-subscription .status.active {
    background: #d4edda;
    color: #155724;
}

.mbc-my-subscription .status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.mbc-my-subscription .status.expired {
    background: #fff3cd;
    color: #856404;
}

.mbc-my-subscription .info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mbc-my-subscription .info-row:last-child {
    border-bottom: none;
}

.mbc-my-subscription .actions {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

/* Pastille de réduction sur les images de produits */
.mbc-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c94d3f;
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 80px;
    height: 80px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.mbc-discount-percent {
    font-size: 20px;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
    white-space: nowrap;
}

.mbc-discount-label {
    font-size: 11px !important;
    line-height: 1;
    display: block;
    font-weight: normal;
    white-space: normal;
    max-width: 100% !important;
    word-wrap: break-word;
}

/* Pastille sur la page produit unique */
.mbc-discount-badge-single {
    top: 15px;
    right: 15px;
    width: 100px;
    height: 100px;
}

.mbc-discount-badge-single .mbc-discount-percent {
    font-size: 26px;
    margin-bottom: 6px;
}

.mbc-discount-badge-single .mbc-discount-label {
    font-size: 11px;
}

/* Container relatif pour les images de produits dans la boucle */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
}

/* Container relatif pour l'image principale sur la page produit */
.woocommerce div.product div.images {
    position: relative;
}

/* Masquer complètement le sélecteur de quantité pour les produits vendus individuellement (abonnements) */
.single-product .product.sold-individually .quantity {
    display: none !important;
}

/* Prix barré avec style WooCommerce */
.mbc-subscriber-price del {
    opacity: 0.7;
    text-decoration: line-through;
    margin-right: 8px;
}

.mbc-subscriber-price ins {
    text-decoration: none;
    font-weight: bold;
}

/* Prix club pour les abonnés (avec prix barré au-dessus) */
.mbc-subscriber-price-display del {
    opacity: 0.6;
    text-decoration: line-through;
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.mbc-subscriber-price-display ins {
    text-decoration: none;
    background: transparent;
    color: #4CAF50;
    font-weight: bold;
    display: block;
}

.mbc-subscriber-price-display ins .mbc-club-label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #4CAF50;
    margin-right: 4px;
}

.mbc-subscriber-price-display ins .woocommerce-Price-amount {
    color: #4CAF50;
    font-weight: bold;
}

/* Prix club pour les non-abonnés (grisé et plus petit) */
.price small.mbc-non-subscriber-club-price {
    display: block;
    color: #999;
    font-size: 85%;
    margin-top: 4px;
}

.price small.mbc-non-subscriber-club-price .mbc-club-label-grey {
    color: #999;
}

.price small.mbc-non-subscriber-club-price .woocommerce-Price-amount {
    color: #999;
}
