/* Welcome Modal Styles */
.wc-dm-modal { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 9999; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(0,0,0,0.8); 
}
 
.wc-dm-modal-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}
 
.wc-dm-modal-content {
    position: relative;
    background: #fff;
    padding: 0;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}
 
.wc-dm-modal-header { 
    display: none; 
}
 
.wc-dm-modal-close { 
    display: none; 
}
 
.wc-dm-modal-body { 
    padding: 0; 
}
 
.wc-dm-modal-body h2 {
    margin: 0 0 20px 0;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
    padding: 15px;
    margin: 0;
}
 
.wc-dm-modal-body p {
    margin: 0 0 40px 0;
    color: #333;
    font-size: 20px;
    line-height: 1.4;
    padding: 25px;
    margin: 0;
}
 
.wc-dm-modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 0 0 25px;
}
 
.wc-dm-btn {
    padding: 8px 27px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    min-width: 30%;
    text-transform: uppercase;
    border-radius: 50px;
}
 
.wc-dm-btn-primary {
    background: #ea8705;
    color: #fff;
}
 
.wc-dm-btn-primary:hover { 
    background: #333; 
}
 
.wc-dm-btn-secondary { 
    background: #000; 
    color: #fff; 
}
 
.wc-dm-btn-secondary:hover { 
    background: #333; 
}
 
@media (max-width: 600px) {
    .wc-dm-modal-content { 
        padding: 30px 40px; 
        width: 95%; 
    }
    .wc-dm-modal-actions { 
        flex-direction: column; 
        gap: 15px; 
    }
    .wc-dm-btn { 
        width: 100%; 
    }
}

.dog-row input[type="text"] {
    width: 100%;
    background: #fff;
}
 
.dog-row {
    display: flex;
    flex-direction: column;
    background: #f5f1f1;
    padding: 25px;
    border-radius: 10px;
    margin: 10px 0;
}
#shipping-option {
    display: none;
}