/* "New Product: Bauxite" popup — Ana sayfa, Hasan geri bildirimi 2026-09-15 */
.bauxite-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 20, 12, 0.65);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

.bauxite-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.bauxite-popup {
    position: relative;
    max-width: 380px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    background: #f6efe7;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
    transform: translateY(16px);
    transition: transform .25s ease;
    text-align: center;
    padding: 28px 26px 30px;
}

.bauxite-popup-overlay.is-open .bauxite-popup {
    transform: translateY(0);
}

.bauxite-popup-badge {
    display: inline-block;
    background: #8a5a34;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.bauxite-popup-img {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px;
    margin: 0 auto 18px;
    display: block;
    box-shadow: 0 12px 30px rgba(89, 58, 30, .25);
}

.bauxite-popup h3 {
    font-size: 28px;
    font-weight: 800;
    color: #2b1c10;
    margin: 0 0 6px;
}

.bauxite-popup p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a3c;
    margin: 0 0 20px;
}

.bauxite-popup .button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8a5a34;
    color: #fff !important;
    padding: 11px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    text-decoration: none;
    transition: background .2s ease;
}

.bauxite-popup .button:hover {
    background: #6f4526;
}

.bauxite-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(255, 255, 255, .9);
    font-size: 20px;
    line-height: 1;
    color: #2b1c10;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    transition: background .15s ease;
    z-index: 1;
}

.bauxite-popup-close:hover {
    background: #fff;
}
