/** Shopify CDN: Minification failed

Line 39:16 Expected identifier but found whitespace
Line 39:18 Unexpected "{"
Line 39:28 Expected ":"

**/
#age-modal {
    display: none;
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    animation: fadeIn 0.5s ease forwards;
}

body.age-locked { 
    overflow: hidden; 
}

#age-modal-content {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    animation: slideIn 0.5s ease forwards;
    font-family: {{ settings.font_body | default:'Arial, sans-serif' }};
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#age-modal-content h2 { margin-bottom: 15px; font-size: 24px; color: #fff; }
#age-text { margin-bottom: 20px; font-size: 18px; color: #ccc; }

.age-inputs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.age-inputs input {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #555;
    border-radius: 6px;
    background-color: #2b2b2b;
    color: #e0e0e0;
    text-align: center;
    transition: border-color 0.2s;
}
.age-inputs input:focus {
    border-color: #ff6b00;
}

#age-submit {
    padding: 14px 0;
    width: 100%;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    background-color: #ff6b00;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
#age-submit:hover { background-color: #e65c00; }

#error-msg {
    color: #ff6666;
    margin-top: 15px;
    font-size: 16px;
    display: none;
}

@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes slideIn { from {transform:translateY(-40px); opacity:0;} to {transform:translateY(0); opacity:1;} }
@keyframes slideOut { from {transform:translateY(0); opacity:1;} to {transform:translateY(-40px); opacity:0;} }

@media(max-width: 375px){
    #age-modal-content h2 { font-size: 22px; }
    #age-text { font-size: 16px; }
    .age-inputs input { font-size: 14px; padding: 10px; }
    #age-submit { font-size: 16px; padding: 12px 0; }
}
