/*!/wp-content/plugins/fcvd-jersey-customizer/assets/css/fcvd-customizer.css*//**
 * FCVD Product Customizer Styles
 * Version: 3.2.1
 */

@font-face{font-family:'FC Volendam Rugnummer 2025-2026';src:url('/wp-content/plugins/fcvd-jersey-customizer/assets/css/../fonts/FCVolendamRugnummer2025-2026.woff2') format('woff2'), url('/wp-content/plugins/fcvd-jersey-customizer/assets/css/../fonts/FCVolendamRugnummer2025-2026.woff') format('woff');font-weight:normal;font-style:normal;font-display:swap;}
/* --- Trigger Button --- */

.fcvd-personaliseer-button {
    width: 100%;
    margin-bottom: 1.5rem;
    justify-content: center;
    background-color: #1F1F1F;
    color: #fff;
    border-color: #1F1F1F;
    border-radius: 2.125rem;
    font-weight: 600;
    text-transform: uppercase;
}
.fcvd-personaliseer-button:hover {
    background-color: #F17200;
    border-color: #F17200;
}
.fcvd-personaliseer-button+* {
    margin-top: 1.5rem;
}
/* --- Modal Base Styles --- */

.fcvd-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10101;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}
.fcvd-modal.fcvd-modal-is-open {
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.fcvd-modal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, 0.7);
    z-index: -1;
}
body.fcvd-modal-open {
    overflow: hidden;
}
.fcvd-modal-box {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
.fcvd-modal-body {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    padding: 30px 40px;
}
.fcvd-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #f3f3f3;
    z-index: 10;
    transition: all 0.2s ease;
}
.fcvd-modal-close:hover {
    transform: scale(1.1);
    background-color: #F17200;
}
.fcvd-modal-close svg {
    stroke: #1F1F1F;
    width: 12px;
    height: 12px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: stroke 0.2s ease;
}
.fcvd-modal-close:hover svg {
    stroke: #fff;
}
/* --- Configurator Layout & Preview --- */

.configurator-layout {
    display: flex;
    flex-direction: column;
}
.preview-column {
    margin-bottom: 20px;
}
.options-column h2 {
    color: #1F1F1F;
    font-size: 1.7rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}
.mobile-title {
    display: block;
    text-align: center;
}
.desktop-title {
    display: none;
}
.shirt-preview-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 10px;
    background-color: #f9f9f9;
    border: 1px solid #EDEDED;
    border-radius: 4px;
}
.shirt-preview-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
body .shirt-preview-image {
    display: block;
}
.shirt-preview-overlay-back, .shirt-preview-overlay-front {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.preview-front-name {
    position: absolute;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}
.preview-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    width: 100%;
    text-align: center;
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.preview-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13rem;
    width: 100%;
    text-align: center;
    font-family: 'FC Volendam Rugnummer 2025-2026', sans-serif;
}
.shirt-view-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.view-option {
    width: 60px;
    height: 60px;
    border: 2px solid #EDEDED;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.view-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.view-option.active {
    border-color: #F17200;
}
#fcvd-modal-form-container .variations {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ededed;
    padding-bottom: 1.5rem;
}
#fcvd-modal-form-container .variations .label {
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 0;
}
#fcvd-modal-form-container .single_add_to_cart_button {
    background-color: #F17200;
    color: #fff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    width: 100%;
}
#fcvd-modal-form-container .single_add_to_cart_button:hover {
    background-color: #CF6200;
}
@media (min-width: 992px) {
    .configurator-layout {
        flex-direction: row;
        gap: 40px;
    }
    .preview-column {
        flex: 0 0 40%;
        max-width: 40%;
        margin-bottom: 0;
    }
    .options-column {
        flex: 1 1 60%;
    }
    .mobile-title {
        display: none;
    }
    .desktop-title {
        display: block;
        text-align: left;
    }
    .shirt-view-selector {
        margin-bottom: 0;
    }
}
@media (max-width: 991.98px) {
    body.fcvd-modal-open .fcvd-modal.fcvd-modal-is-open {
        align-items: flex-start;
    }
    .fcvd-modal .fcvd-modal-body {
        padding: 20px;
    }
    .fcvd-modal .options-column h2 {
        font-size: 1.4rem;
    }
    .fcvd-modal .fcvd-modal-box {
        margin: 0;
        max-height: none;
        overflow-y: visible;
    }
    .fcvd-modal .shirt-preview-container {
        max-width: 420px;
    }
}