.glass-effect {
    background: rgba(20, 83, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 243, 208, 0.1);
}

.glass-card {
    background: rgba(5, 46, 22, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(167, 243, 208, 0.15);
}

.card-annonce {
    background: rgba(5, 46, 22, 0.6);
    border: 1px solid rgba(167, 243, 208, 0.1);
    transition: all 0.3s;
}

.card-annonce:hover {
    border-color: rgba(167, 243, 208, 0.4);
    transform: translateY(-3px);
}

.badge-categorie {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(167, 243, 208, 0.1);
    color: #a7f3d0;
    border: 1px solid rgba(167, 243, 208, 0.2);
}

.input-glass {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(167, 243, 208, 0.2);
    color: #f5f5f4;
}

.input-glass:focus {
    outline: none;
    border-color: rgba(167, 243, 208, 0.5);
}

.nav-glass {
    background: rgba(20, 83, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 243, 208, 0.1);
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(167, 243, 208, 0.15);
    border: 2px solid rgba(167, 243, 208, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.avatar-circle:hover {
    border-color: #a7f3d0;
}

.avatar-initials {
    font-size: 12px;
    font-weight: 700;
    color: #a7f3d0;
    line-height: 1;
}

.photo-principale {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.photo-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
}

.photo-thumb.active {
    border-color: #a7f3d0;
}

.photo-thumb:hover {
    border-color: #a7f3d050;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f4f6f3;
    color: #1a2e1f;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e5e8e5;
    box-shadow: 0 1px 3px rgba(5, 46, 22, .04);
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-link {
    font-size: 13.5px;
    color: #4a5e4f;
    padding: 6px 13px;
    border-radius: 99px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.nav-link:hover {
    background: #f0fdf4;
    color: #052e16;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #052e16;
    color: #fff;
    border-radius: 99px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
}

.btn-dark:hover {
    background: #14532d;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid #d8dfd8;
    color: #4a5e4f;
    border-radius: 99px;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 500;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
}

.btn-outline:hover {
    border-color: #052e16;
    color: #052e16;
}

.gallery-main {
    width: 100%;
    height: 420px;
    background: #e8ede8;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: border-color .2s;
}

.gallery-thumb.active {
    border-color: #052e16;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-don {
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.badge-achat {
    background: #fef9c3;
    color: #a16207;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.badge-reserve {
    background: #fce7f3;
    color: #9d174d;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 99px;
}

.seller-card {
    background: #fff;
    border: 1px solid #e5e8e5;
    border-radius: 16px;
    padding: 22px;
}

.seller-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #052e16;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #a7f3d0;
    flex-shrink: 0;
}

.score-bar {
    height: 6px;
    background: #e8ede8;
    border-radius: 99px;
    overflow: hidden;
    margin-top: 6px;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #14532d, #a7f3d0);
    border-radius: 99px;
    transition: width .6s ease;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f5f1;
    color: #4a5e4f;
    font-size: 12.5px;
    padding: 5px 12px;
    border-radius: 99px;
    font-weight: 500;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2e1f;
    margin-bottom: 10px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7c6f;
    font-size: 11.5px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background .2s, color .2s;
}

.action-btn:hover {
    background: #f0f5f1;
    color: #052e16;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    width: 100%;
    max-width: 440px;
    transform: translateY(14px);
    transition: transform .25s;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.form-input {
    width: 100%;
    border: 1.5px solid #d8dfd8;
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 14px;
    color: #1a2e1f;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
}

.form-input:focus {
    border-color: #14532d;
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    color: #4a5e4f;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

footer {
    margin-top: auto;
    background: #052e16;
    color: rgba(255, 255, 255, .55);
    padding: 36px 24px 20px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    margin-right: 18px;
    font-weight: 300;
    transition: color .15s;
}

.footer-link:hover {
    color: #a7f3d0;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    background: #bbf7d0;
    border-radius: 3px;
}
