/* ===== Base style overrides ===== */
input:focus, select:focus, textarea:focus { border: 1px solid #ea580c; }
body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #111827;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover, a:focus {
    color: inherit;
    text-decoration: none;
}

/* Parsley Validation Styles */
.parsley-errors-list {
    padding-left: 0;
    list-style: none;
    margin-top: 4px;
}
.parsley-errors-list li {
    color: #dc2626;
    font-size: 0.8rem;
}
.parsley-error {
    margin-bottom: 0;
    border: 1px solid #dc2626 !important;
}
/* Parsley errors on new t-form-input */
.t-form-input.parsley-error,
.t-form-select.parsley-error,
.t-form-textarea.parsley-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
/* Custom Checkbox */
.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}
.check-container:hover input ~ .checkmark {
    background-color: #f9fafb;
}
.check-container input:checked ~ .checkmark {
    background-color: #f97316;
    border: 0;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.check-container input:checked ~ .checkmark:after {
    display: block;
}
.check-container .checkmark:after {
    left: 10px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Navigation responsive classes */
.desktop-nav {
    display: none;
}
.nav-login-btn {
    display: none;
}
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    .nav-login-btn {
        display: inline-flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Inline list */
.ds-inline-list {
    display: inline-block;
    padding-left: 0;
    margin-bottom: 20px;
    list-style: none;
}
.ds-inline-list li {
    display: inline-block;
    padding-left: 0;
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 400;
}
.ds-inline-list li.parsley-error {
    border: none;
}

/* Font sizes */
.font-6 { font-size:6px !important; }
.font-16 { font-size:16px !important; }
.font-18 { font-size:18px !important; }
.font-20 { font-size:20px !important; }
.font-22 { font-size:22px !important; }
.letter-spacing-1 { letter-spacing: 1px !important; }

/* Vuejs-datepicker styling for new theme */
.vdp-datepicker input {
    width: 100%;
}
.vdp-datepicker .vdp-datepicker__calendar {
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.vdp-datepicker .vdp-datepicker__calendar .cell.selected {
    background: #f97316;
    color: #fff;
    border-radius: 0.5rem;
}
.vdp-datepicker .vdp-datepicker__calendar .cell:hover {
    border-color: #f97316;
}
