/* Style du plugin PluginPRH68 */
.mpp-hello {
    color: #2271b1;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #2271b1;
    border-radius: 5px;
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

.prh68-kits-container {
    font-family: 'Ubuntu', sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.prh68-title {
    color: #4b4b8b;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    font-weight: 700;
}

.prh68-kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.prh68-kit-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.prh68-kit-card:hover {
    transform: translateY(-5px);
}

/* Header colored bar */
.prh68-card-header-bar {
    height: 15px;
    background-color: #f4a051;
    /* Orange clair default */
    width: 100%;
}

/* Alternate header colors if needed using nth-child in usage or modifying inline */
.prh68-kit-card:nth-child(2n) .prh68-card-header-bar {
    background-color: #f4a051;
    /* Keep uniform or change to #ec6f04 etc. */
}

.prh68-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prh68-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.prh68-card-title {
    flex: 1;
    padding-right: 15px;
}

.prh68-card-title h3 {
    margin: 0 0 10px;
    color: #000;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.2;
}

.prh68-subtitle {
    color: #ec6f04;
    /* Orange vif */
    font-weight: 500;
    font-size: 0.95em;
    margin-bottom: 10px;
    display: block;
}

.prh68-card-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prh68-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    font-size: 0.7em;
    color: #ccc;
    text-align: center;
}

.prh68-card-description {
    color: #333;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.prh68-card-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prh68-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.prh68-btn-primary {
    background-color: #ec6f04;
    /* Orange vif */
    color: #fff !important;
    border: 2px solid #ec6f04;
}

.prh68-btn-primary:hover {
    background-color: #d35f00;
    border-color: #d35f00;
}

.prh68-btn-outline {
    background-color: transparent;
    color: #ec6f04 !important;
    /* Orange vif */
    border: 2px solid #ec6f04;
}

.prh68-btn-outline:hover {
    background-color: #ec6f04;
    color: #fff !important;
}

/* Specific text colors from charter */
.text-violet {
    color: #4b4b8b;
}

.text-turquoise {
    color: #3fb7ab;
}

.text-blue-clair {
    color: #c6e3e0;
}

/* Modal Styles */
.prh68-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.prh68-modal-content {
    background-color: #fefefe;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    animation: prh68-animatetop 0.4s;
    overflow: hidden;
}

@keyframes prh68-animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.prh68-modal-header {
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prh68-modal-header h3 {
    margin: 0;
    font-size: 2em;
    /* Increased from 1.5em */
    font-weight: 700;
}

.prh68-close-modal {
    color: white;
    font-size: 32px;
    /* Increased from 28px */
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.prh68-close-modal:hover,
.prh68-close-modal:focus {
    color: #ddd;
    text-decoration: none;
    cursor: pointer;
}

.prh68-modal-body {
    padding: 30px;
    /* Increased padding */
    max-height: 70vh;
    /* Allow scrolling inside body if too long */
    overflow-y: auto;
}

.prh68-objets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prh68-objet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    /* Increased padding */
    border-bottom: 1px solid #eee;
}

.prh68-objet-item:last-child {
    border-bottom: none;
}

.prh68-objet-info {
    flex: 1;
    padding-right: 25px;
    /* Increased spacing */
}

.prh68-objet-info strong {
    display: block;
    font-size: 1.4em;
    /* Increased from 1.1em */
    margin-bottom: 8px;
    color: #333;
}

.prh68-objet-info p {
    margin: 0;
    color: #666;
    font-size: 1.2em;
    /* Increased from 0.95em */
    line-height: 1.5;
}

.prh68-objet-image {
    width: 100px;
    /* Increased from 60px */
    height: 100px;
    /* Increased from 60px */
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.prh68-objet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}