/**
 * Subscribify Frontend Styles
 */

/* Subscription Info on Product Page */
.lattice-subscribify-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px 0;
}

.lattice-subscribify-info p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.lattice-subscribify-info ul {
    margin: 0;
    padding-left: 20px;
}

.lattice-subscribify-info li {
    margin: 5px 0;
    font-size: 13px;
    color: #6c757d;
}

/* Cart Items */
.lattice-subscription-period {
    color: #6c757d;
    font-size: 12px;
}

.lattice-sign-up-fee {
    color: #28a745;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Status Badges */
.lattice-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lattice-status-active {
    background: #d4edda;
    color: #155724;
}

.lattice-status-on-hold {
    background: #fff3cd;
    color: #856404;
}

.lattice-status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.lattice-status-pending {
    background: #cce5ff;
    color: #004085;
}

/* My Account Tables */
.woocommerce-MyAccount-subscriptions {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-MyAccount-subscriptions th,
.woocommerce-MyAccount-subscriptions td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.woocommerce-MyAccount-subscriptions th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Action Buttons */
.lattice-pause,
.lattice-resume,
.lattice-cancel {
    margin-right: 5px;
    font-size: 12px;
    padding: 6px 12px;
}

.lattice-cancel {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.lattice-cancel:hover {
    background: #c82333;
    color: white;
}

.lattice-pause {
    background: #ffc107;
    color: #212529;
    border-color: #ffc107;
}

.lattice-pause:hover {
    background: #e0a800;
}

.lattice-resume {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.lattice-resume:hover {
    background: #218838;
    color: white;
}

/* Admin Dashboard */
.lattice-stats-grid {
    margin: 20px 0;
}

.lattice-stat-box {
    text-align: center;
}

.lattice-stat-box h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #6c757d;
}

/* Product Options in Admin */
.show_if_subscription {
    background: #f0f6fc;
    border: 1px solid #c5d9ed;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
}

.show_if_subscription .form-field {
    margin-bottom: 15px;
}

.show_if_subscription label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.show_if_subscription .description {
    font-size: 12px;
    color: #6c757d;
    margin-top: 3px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .lattice-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .woocommerce-MyAccount-subscriptions .button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}
