@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/fullcalendar@5.11.3/main.min.css');
:root {
    color-scheme: dark;
    --bg-color: #000000;
    --text-color: #f3f4f6;
    --subtext-color: #9ca3af;
    --border-color: #374151;
    --card-shadow: rgba(0, 0, 0, 0.3);
    --primary-color: #6366f1;
    --primary-hover: #818cf8;
    --bike-main-bg: #000000;
    --login-color: #0b962b;
    --login-click: #06611b;
    --bgc-color: #121211;
    --button-color: #fff203;
    --click-hover: #ded418;
    --text-button: #1e1e1f;
    --calendar-hover: #ebebeb;
    --invert-color: invert(100%);
    --primary-dark: #000000;
    --primary-yellow: #ffdd36;
    --secondary-yellow: #ffed9e;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
    --border-dark: #444;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --hover-dark: #2d2d2d;
}
body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}
.profile-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 24px;
    background: var(--bg-color);
    box-shadow: 0 4px 24px var(--card-shadow);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}
.profile-name {
    font-family: 'Rubik', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
}
.profile-username {
    font-size: 16px;
    color: var(--subtext-color);
    font-weight: 400;
}
.profile-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}
.profile-info label {
    display: block;
    font-size: 14px;
    color: var(--subtext-color);
    margin-bottom: 4px;
}
.profile-info .value {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}
.profile-actions {
    margin-top: 32px;
    text-align: right;
}
.profile-actions button {
    background-color: var(--primary-color);
    color: var(--text-button);
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 650;
    transition: backgtound-color 0.4s ease;
}
.profile-actions button:hover {
    background-color: var(--primary-hover);
}
h2 {
    color: var(--text-color);
    font-family: 'Rubik', sans-serif;
}
.main-page {
    background-color: var(--bike-main-bg);

    min-height: 100vh;
    padding: 20px;
}
ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    list-style: none;
}
.bike-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}
.bike-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}
.bike-brand {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.bike-year {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.bike-type {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.engine {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background-color: var(--bgc-color);
    max-width: 720px;
    width: min(100%, 720px);
    margin: 120px auto 48px;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.form-group {
    color: var(--text-color);
    margin-bottom: 16px;
}

input, .input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 80px;
    font-family: 'Rubik', sans-serif;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background-color: var(--button-color);
    color: var(--text-button);
    border: none;
    border-radius: 80px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.5s, 0.5s ease;
    font-family: 'Roboto Condensed', sans-serif;
}

button:hover {
    background-color: var(--click-hover);
}

.error {
    color: red;
    font-size: 0.9em;
}

.error-list {
    margin-top: 16px;
    padding-left: 20px;
    color: red;
}
.login-header {
    color: var(--text-color);
    font-family: 'Rubik', sans-serif;
}
.header-main {
    color: var(--text-color);
    font-family: 'Rubik', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bike-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.bike-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bgc-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px var(--card-shadow);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.bike-card:hover {
    transform: translateY(-4px);
}

.bike-card img {
    width: 300px;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.bike-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--bg-color);
}

.login-main {
    display: flex;
    gap: 12px;
    align-items: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: var(--login-color);
}

.login-main a {
    background-color: var(--button-color);
    color: var(--text-button);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.35s ease;
    font-family: 'Rubik', sans-serif;
}

.login-main a:hover {
    background-color: var(--click-hover);
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.company-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--text-color);
    margin-top: -12px;
    text-align: center;
}
.register-text {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--text-color);
}
.register-link {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--login-color);
    text-decoration: none;
    transition: color 0.45s ease;
    cursor: pointer;
}
.register-link:hover {
    color: var(--login-click);
}

.yamaha-select {
    background-color: var(--bike-main-bg);
}
.yamaha-select-title {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
}
.category-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background-color: var(--bgc-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px var(--card-shadow);
    text-decoration: none;
    transition: transform 0.3s ease;
}
.category-card:hover {
    transform: translateY(-4px);
}
.bike-yamaha-label {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}
.yamaha-image-category {
    width: 400px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
}
.yamaha-categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background-color: var(--bike-main-bg);
    padding: 20px;
}
.bike-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.bike-brand {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}
.bike-model {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.bike-cc {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
}
a.category-card,
a.category-card:visited,
a.category-card:hover,
a.category-card:active {
    color: var(--subtext-color);
    text-decoration: none;
}

.bike-price{
    display: inline-block;
    background-color: var(--button-color);
    transition: filter 0.35s ease, transform 0.2s ease;
}

.bike-price:hover{
    filter: brightness(0.85);
}

.back-button{
    display: inline-block;
    background-color: var(--card-shadow);
    transition: filter 0.35s ease, transform 0.2s ease;
}
.bike-price:hover{
    filter: brightness(-0.85);
}
.map-container {
    margin-top: 30px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    filter: var(--invert-color);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
.password-requirements {
    background-color: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: #666;
}

.requirements-list {
    list-style-type: none;
    padding-left: 0;
    margin: 8px 0 0 0;
}

.requirements-list li {
    padding: 3px 0;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.requirements-list li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    margin-right: 8px;
}

.password-strength {
    margin-top: 10px;
}
.strength-meter {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    margin-bottom: 5px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
    background-color: #e74c3c;
}

.strength-text {
    font-size: 13px;
    font-weight: 500;
    color: #e74c3c;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.site-header {
    background-color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-yellow);
}

.admin-calendar-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

.admin-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-yellow);
    font-family: 'Rubik', sans-serif;
}

.admin-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.admin-btn:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 221, 54, 0.3);
}

#calendar {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 20px;
}

.fc {
    --fc-border-color: var(--border-dark);
    --fc-button-bg-color: var(--primary-yellow);
    --fc-button-border-color: var(--primary-yellow);
    --fc-button-hover-bg-color: var(--secondary-yellow);
    --fc-button-hover-border-color: var(--secondary-yellow);
    --fc-button-active-bg-color: var(--primary-dark);
    --fc-button-active-border-color: var(--primary-dark);
    --fc-button-text-color: var(--primary-dark);
    --fc-event-bg-color: var(--primary-yellow);
    --fc-event-border-color: var(--primary-yellow);
    --fc-event-text-color: var(--primary-dark);
}

.fc .fc-toolbar-title {
    color: var(--primary-yellow);
    font-family: 'Rubik', sans-serif;
}

.fc .fc-col-header-cell-cushion {
    color: var(--text-light);
    text-decoration: none;
}

.fc .fc-daygrid-day-number {
    color: var(--text-light);
}

.fc .fc-scrollgrid {
    border-color: var(--border-dark);
}

.fc-theme-standard td, .fc-theme-standard th {
    border-color: var(--border-dark);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 30px;
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    color: var(--text-light);
}

.close-modal {
    color: var(--primary-yellow);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--secondary-yellow);
}

.event-details {
    margin-top: 20px;
}

.event-detail-row {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-dark);
}

.event-thumbnail {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
    margin-right: 20px;
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 24px;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    font-family: 'Rubik', sans-serif;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.event-meta-item {
    background-color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.customer-info {
    background-color: var(--primary-dark);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.customer-name {
    font-size: 20px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-family: 'Rubik', sans-serif;
}

.customer-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.customer-detail-item {
    margin-bottom: 10px;
}

.detail-label {
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 10px;
}

.detail-value {
    color: var(--text-light);
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--border-dark);
}

.action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
}

.btn-view-customer {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: 2px solid var(--primary-yellow);
}

.btn-view-customer:hover {
    background-color: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
}

.btn-view-agreement {
    background-color: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-view-agreement:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .admin-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }

    .event-detail-row {
        flex-direction: column;
    }

    .event-thumbnail {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.status-confirmed {
    background-color: #28a745;
    color: white;
}

.status-active {
    background-color: #17a2b8;
    color: white;
}

.status-pending {
    background-color: #ffc107;
    color: black;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.site-header {
    background-color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-yellow);
}

.admin-list-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

.admin-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-yellow);
    font-family: 'Rubik', sans-serif;
}

.admin-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin-btn:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 221, 54, 0.3);
}

.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--primary-dark);
    border-radius: 8px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-label {
    color: var(--text-muted);
    font-size: 14px;
}

.filter-select, .filter-input {
    background-color: var(--bg-card);
    color: var(--text-light);
    border: 1px solid var(--border-dark);
    padding: 8px 15px;
    border-radius: 25px;
    min-width: 150px;
}

.filter-select:focus, .filter-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.order-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 20px;
    border-left: 5px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-dark);
}

.order-id {
    font-size: 18px;
    color: var(--primary-yellow);
    font-weight: 600;
}

.order-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-confirmed {
    background-color: #28a745;
    color: white;
}

.status-active {
    background-color: #17a2b8;
    color: white;
}

.status-pending {
    background-color: #ffc107;
    color: black;
}

.order-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .order-content {
        flex-direction: column;
    }
}

.bike-thumbnail {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
}

.bike-info {
    flex: 1;
}

.bike-title {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-family: 'Rubik', sans-serif;
}

.bike-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.bike-meta-item {
    background-color: var(--bg-card);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.dates-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .dates-row {
        grid-template-columns: 1fr;
    }
}

.date-box {
    background-color: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.date-label {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

.date-value {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}

.customer-info {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.customer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.customer-name {
    font-size: 18px;
    color: var(--primary-yellow);
    font-family: 'Rubik', sans-serif;
}

.customer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.customer-detail-item {
    margin-bottom: 10px;
}

.detail-label {
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 10px;
}

.detail-value {
    color: var(--text-light);
}

.order-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
}

.action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
}

.btn-view-details {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: 2px solid var(--primary-yellow);
}

.btn-view-details:hover {
    background-color: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
}

.btn-view-agreement {
    background-color: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-view-agreement:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.no-orders {
    text-align: center;
    padding: 50px;
    color: var(--text-muted);
    font-size: 18px;
}

.sort-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    color: var(--primary-yellow);
}
.admin-panel {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.admin-card {
    background-color: var(--primary-dark);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-light);
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 221, 54, 0.2);
    border-left-color: var(--secondary-yellow);
}

.admin-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-yellow);
}

.admin-card-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-yellow);
    font-family: 'Rubik', sans-serif;
}

.admin-card-description {
    color: var(--text-muted);
    line-height: 1.5;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-pickup {
    background-color: #4CAF50;
}

.status-return {
    background-color: #FF5722;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 10000;
    font-weight: 600;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.notification.success {
    background-color: #ffdd36;
    color: #000;
}

.notification.error {
    background-color: #dc3545;
    color: #fff;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
.repairs-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

.admin-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-yellow);
    font-family: 'Rubik', sans-serif;
}

.admin-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-btn:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 221, 54, 0.3);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 20px;
    border-left: 5px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 221, 54, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    background-color: var(--bg-card);
    color: var(--primary-yellow);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

.filters-card {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--border-dark);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    background-color: var(--bg-card);
    color: var(--text-light);
    border: 1px solid var(--border-dark);
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Rubik', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 221, 54, 0.1);
}

.table-container {
    background-color: var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background-color: var(--bg-card);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-dark);
}

.table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
}

.table tbody tr:hover {
    background-color: var(--hover-dark);
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-scheduled { background-color: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.status-in_progress { background-color: rgba(251, 191, 36, 0.2); color: #fbbf24; }
.status-completed { background-color: rgba(34, 197, 94, 0.2); color: #34d399; }
.status-cancelled { background-color: rgba(239, 68, 68, 0.2); color: #f87171; }
.status-on_hold { background-color: rgba(156, 163, 175, 0.2); color: #9ca3af; }

.priority-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.priority-low { background-color: rgba(34, 197, 94, 0.2); color: #34d399; }
.priority-normal { background-color: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.priority-high { background-color: rgba(251, 191, 36, 0.2); color: #fbbf24; }
.priority-critical { background-color: rgba(239, 68, 68, 0.2); color: #f87171; }

.actions-cell {
    display: flex;
    gap: 5px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background-color: var(--bg-card);
    color: var(--primary-yellow);
}

.action-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--border-dark);
    background-color: var(--bg-card);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn.active {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border-color: var(--primary-yellow);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-card);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--primary-yellow);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--primary-yellow);
    font-size: 20px;
    font-family: 'Rubik', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-yellow);
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-full-width {
    grid-column: 1 / -1;
}

textarea.form-control {
    border-radius: 12px;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-dark);
    border-top: 4px solid var(--primary-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--primary-dark);
    font-weight: 500;
    z-index: 1001;
    animation: slideIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    background-color: var(--primary-yellow);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .admin-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
.profile-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 24px;
    background: var(--bg-color);
    box-shadow: 0 4px 24px var(--card-shadow);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.profile-name {
    font-family: 'Rubik', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
}

.profile-username {
    font-size: 16px;
    color: var(--subtext-color);
    font-weight: 400;
}

.profile-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.profile-info label {
    display: block;
    font-size: 14px;
    color: var(--subtext-color);
    margin-bottom: 4px;
}

.profile-info .value {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.profile-orders {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.profile-orders h2 {
    font-size: 28px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Rubik', sans-serif;
}

.btn-view-order {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-view-order:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
}

.no-orders {
    text-align: center;
    padding: 40px;
    background-color: var(--bg-card);
    border-radius: 12px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto;
}

.no-orders p {
    margin-bottom: 30px;
    font-size: 18px;
}

.no-orders .admin-btn {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
}

.no-orders .admin-btn:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 221, 54, 0.3);
}

.table-responsive {
    overflow-x: auto;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-dark);
}

.table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light);
}

.table th {
    background-color: var(--primary-dark);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-yellow);
    border-bottom: 2px solid var(--border-dark);
}

.table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-dark);
}

.table tbody tr:hover {
    background-color: var(--hover-dark);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.status-confirmed {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status-active {
    background-color: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-completed {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status-cancelled {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px;
    background-color: var(--bgc-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    box-shadow: inset 0 1px 3px var(--card-shadow);
    font-family: 'Rubik', sans-serif;
    user-select: none;
}

.lang-switch__thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 48px;
    height: calc(100% - 8px);
    background-color: #ffc53d;
    border-radius: 999px;
    box-shadow: 0 2px 8px var(--card-shadow);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.lang-switch[data-lang="en"] .lang-switch__thumb {
    transform: translateX(48px);
}

.lang-switch__btn {
    position: relative;
    z-index: 1;
    width: 48px;
    padding: 7px 0;
    background: none;
    border: none;
    border-radius: 999px;
    color: var(--subtext-color);
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    cursor: pointer;
    transition: color 0.35s ease;
}

a.lang-switch__btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.lang-switch__btn:hover {
    background: none;
}

.lang-switch__btn:hover:not(.is-active) {
    color: var(--text-color);
}

.lang-switch__btn.is-active {
    color: var(--text-button);
}

.lang-switch__btn:focus-visible {
    outline: 2px solid #ffc53d;
    outline-offset: 2px;
}

@media (max-width: 520px) {
    .site-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }
}

.logo {
    text-decoration: none;
    cursor: pointer;
}
.nav-about {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    white-space: nowrap;
}
.nav-about:hover {
    color: var(--text-button);
    background-color: var(--button-color);
    border-color: var(--button-color);
}

:root {
    --tg-color: #229ED9;
    --tg-hover: #1b8ec2;
    --wa-color: #25D366;
    --wa-hover: #1eb85a;
    --star-color: #ffce31;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.contact-buttons--center {
    justify-content: center;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 40px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    transition: transform .2s ease, background-color .3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}
.contact-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.contact-btn:hover {
    transform: translateY(-2px);
}
.contact-btn--tg { background-color: var(--tg-color); }
.contact-btn--tg:hover { background-color: var(--tg-hover); }
.contact-btn--wa { background-color: var(--wa-color); }
.contact-btn--wa:hover { background-color: var(--wa-hover); }
.contact-btn--call {
    background-color: var(--button-color);
    color: var(--text-button);
}
.contact-btn--call:hover { background-color: var(--click-hover); }

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 40px;
    background-color: rgba(255, 255, 255, .03);
    transition: border-color .3s ease, background-color .3s ease;
}
.rating-badge:hover {
    border-color: var(--star-color);
    background-color: rgba(255, 206, 49, .08);
}
.rating-badge__score {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: var(--text-color);
    font-size: 17px;
}
.rating-badge__stars {
    color: var(--star-color);
    letter-spacing: 1px;
    font-size: 15px;
}
.rating-badge__reviews {
    color: var(--subtext-color);
    font-size: 13px;
}

.about-section {
    max-width: 760px;
    margin: 48px auto 0;
    padding: 32px 28px;
    background-color: var(--bgc-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 2px 12px var(--card-shadow);
    text-align: center;
}
.about-title {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    margin: 0 0 16px;
    font-size: 26px;
}
.about-desc {
    font-family: 'Rubik', sans-serif;
    color: var(--subtext-color);
    line-height: 1.6;
    margin: 18px auto 22px;
    max-width: 620px;
}
.about-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    margin-bottom: 22px;
}
.about-address svg {
    width: 18px;
    height: 18px;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.site-footer {
    background-color: var(--bgc-color);
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 40px 24px 0;
    margin-top: 48px;
}
.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: space-between;
}
.footer-col {
    flex: 1 1 260px;
    min-width: 230px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.footer-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 500;
}
.footer-tagline {
    color: var(--subtext-color);
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    margin-top: 2px;
}
.footer-heading {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.footer-addr {
    font-style: normal;
    color: var(--subtext-color);
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 8px;
}
.footer-pluscode {
    color: var(--subtext-color);
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    margin-bottom: 14px;
}
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-yellow);
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    transition: color .3s ease;
}
.map-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.map-link:hover { color: var(--secondary-yellow); }
.footer-brand .rating-badge {
    margin-top: 6px;
}
.footer-bottom {
    max-width: 1080px;
    margin: 32px auto 0;
    border-top: 1px solid var(--border-color);
    padding: 18px 0;
    text-align: center;
    color: var(--subtext-color);
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-sep { opacity: .5; }
.footer-by {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-gh {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s ease;
}
.footer-gh svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-gh:hover {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    background-color: rgba(255, 221, 54, 0.08);
    transform: translateY(-1px);
}

.reviews {
    margin: 8px 0 24px;
}
.reviews-title {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    font-size: 18px;
    margin: 0 0 16px;
}
.reviews-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.review-avatar--ph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 18px;
}
.review-author {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    font-size: 15px;
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}
.review-stars {
    color: var(--star-color);
    font-size: 13px;
    letter-spacing: 1px;
}
.review-when {
    color: var(--subtext-color);
    font-size: 12px;
}
.review-text {
    font-family: 'Rubik', sans-serif;
    color: var(--subtext-color);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-map {
    position: relative;
    max-width: 680px;
    margin: 4px auto 22px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bgc-color);
}
.about-map__frame {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
}
.about-map__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px;
    text-decoration: none;
}
.about-map__hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 15px;
    border-radius: 40px;
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
    transition: background-color .3s ease;
}
.about-map__hint svg { width: 16px; height: 16px; }
.about-map__overlay:hover .about-map__hint { background-color: var(--primary-color); }

@media (max-width: 600px) {
    .footer-inner { gap: 28px; }
    .contact-buttons { justify-content: flex-start; }
    .about-section { margin: 32px 12px 0; padding: 26px 18px; }
    .review-card { flex-basis: 240px; }
    .about-map__frame { height: 220px; }
}

.storefront {
    --sf-ink:        #0e0f13;
    --sf-ink-2:      #101218;
    --sf-surface:    #16181f;
    --sf-surface-2:  #1d2029;
    --sf-line:       #282c37;
    --sf-line-strong:#3a404f;
    --sf-text:       #f4f5f8;
    --sf-muted:      #9ba1ae;
    --sf-faint:      #6b7180;
    --sf-sun:        #ffc53d;
    --sf-sun-2:      #ffb01f;
    --sf-sun-deep:   #e8990a;
    --sf-sun-soft:   rgba(255, 197, 61, .12);
    --sf-wa:         #25d366;
    --sf-tg:         #229ed9;

    --sf-2: 8px;  --sf-3: 12px; --sf-4: 16px; --sf-5: 24px;
    --sf-6: 32px; --sf-7: 48px; --sf-8: 64px; --sf-9: 96px;

    --sf-r-sm: 12px; --sf-r-md: 18px; --sf-r-lg: 24px; --sf-r-pill: 999px;

    --sf-display: 'Saira Condensed', 'Rubik', sans-serif;
    --sf-body: 'Manrope', 'Rubik', system-ui, sans-serif;
    --sf-ease: cubic-bezier(.22, 1, .36, 1);
    --sf-shadow: 0 24px 60px -28px rgba(0, 0, 0, .8);
    --sf-shadow-sun: 0 26px 70px -24px rgba(255, 176, 31, .4);

    background:
        radial-gradient(1200px 640px at 82% -10%, rgba(255, 197, 61, .10), transparent 58%),
        radial-gradient(900px 520px at 4% 4%, rgba(255, 176, 31, .05), transparent 55%),
        var(--sf-ink);
    color: var(--sf-text);
    font-family: var(--sf-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.storefront .main-page {
    background: transparent;
    min-height: 0;
    padding: 0;
}
.storefront .container { width: 100%; }

.sf-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Yellow-ish text selection instead of the browser's default blue.
   Matched 1:1 to Onyxar: ::selection { background: var(--gold-tint) },
   where --gold-tint = rgba(184, 134, 11, .08). */
.storefront ::selection { background: rgba(184, 134, 11, .08); }
.storefront ::-moz-selection { background: rgba(184, 134, 11, .08); }

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--sf-ease), transform .7s var(--sf-ease);
    will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }

.site-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .01em;
    color: var(--text-color, #f3f4f6);
    text-decoration: none;
    white-space: nowrap;
    transition: color .25s ease;
}
.site-brand:hover { color: #ffc53d; }
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav__link {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .01em;
    color: var(--text-color, #f3f4f6);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    transition: color .25s ease, background-color .25s ease;
    white-space: nowrap;
}
.site-nav__link:hover { color: #ffc53d; background-color: rgba(255, 197, 61, .1); }
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0e0f13;
    background: linear-gradient(135deg, #ffc53d, #ffb01f);
    padding: 9px 18px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 26px -12px rgba(255, 176, 31, .7);
    transition: transform .2s var(--sf-ease, ease), box-shadow .25s ease, filter .25s ease;
}
.header-cta svg { width: 17px; height: 17px; }
.header-cta:hover { transform: translateY(-2px); filter: brightness(1.03); box-shadow: 0 14px 30px -12px rgba(255, 176, 31, .85); }

.storefront .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 24px;
    background: rgba(14, 15, 19, .72);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.storefront .site-header.is-scrolled {
    background: rgba(12, 13, 17, .92);
    border-bottom-color: var(--sf-line);
    box-shadow: 0 12px 30px -22px rgba(0, 0, 0, .9);
}
.storefront .site-header .logo img { width: 62px; height: 62px; }

.sf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 15px 26px;
    border: 1px solid transparent;
    border-radius: var(--sf-r-pill);
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s var(--sf-ease), box-shadow .28s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}
.sf-btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.sf-btn--primary {
    background: linear-gradient(135deg, var(--sf-sun), var(--sf-sun-2));
    color: #0e0f13;
    box-shadow: var(--sf-shadow-sun);
}
.sf-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 30px 78px -22px rgba(255, 176, 31, .55); }
.sf-btn--ghost {
    background: rgba(255, 255, 255, .02);
    border-color: var(--sf-line-strong);
    color: var(--sf-text);
}
.sf-btn--ghost:hover { transform: translateY(-2px); border-color: var(--sf-sun); background: var(--sf-sun-soft); }
.sf-btn--wa { background: var(--sf-wa); color: #fff; box-shadow: 0 20px 50px -24px rgba(37, 211, 102, .7); }
.sf-btn--wa:hover { transform: translateY(-2px); filter: brightness(1.04); }
.sf-btn--tg { background: var(--sf-tg); color: #fff; box-shadow: 0 20px 50px -24px rgba(34, 158, 217, .7); }
.sf-btn--tg:hover { transform: translateY(-2px); filter: brightness(1.04); }
.sf-btn--block { width: 100%; }

.sf-section { padding: clamp(48px, 8vw, 96px) 0; }
.sf-section--tight { padding: clamp(36px, 5vw, 60px) 0; }
.sf-head { max-width: 720px; margin: 0 0 clamp(28px, 4vw, 48px); }
.sf-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sf-sun);
    margin: 0 0 14px;
}
.sf-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--sf-sun);
    border-radius: 2px;
}
.sf-head--center .sf-eyebrow { justify-content: center; }
.sf-h2 {
    font-family: var(--sf-display);
    font-weight: 800;
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: .98;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--sf-text);
    margin: 0;
}
.sf-lead {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.62;
    color: var(--sf-muted);
    margin: 16px 0 0;
}
.sf-sun-text { color: var(--sf-sun); }

.sf-hero { position: relative; padding: clamp(40px, 7vw, 84px) 0 clamp(32px, 5vw, 56px); overflow: hidden; }
.sf-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}
.sf-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--sf-sun);
    margin-bottom: 20px;
}
.sf-hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--sf-sun); }
.sf-hero__title {
    font-family: var(--sf-display);
    font-weight: 800;
    font-size: clamp(2.9rem, 7.4vw, 5.6rem);
    line-height: .9;
    letter-spacing: .002em;
    text-transform: uppercase;
    color: var(--sf-text);
    margin: 0;
}
.sf-hero__title em { font-style: normal; color: var(--sf-sun); }
.sf-hero__sub {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: var(--sf-muted);
    margin: 22px 0 0;
    max-width: 30em;
}
.sf-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.sf-hero__proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.sf-hero__proof-stars { color: var(--sf-sun); letter-spacing: 2px; font-size: 16px; }
.sf-hero__proof b { font-family: var(--sf-display); font-weight: 700; font-size: 22px; color: var(--sf-text); }
.sf-hero__proof span { color: var(--sf-muted); font-size: 14px; }
.sf-hero__proof-divider { width: 1px; height: 26px; background: var(--sf-line-strong); }

.sf-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 340px;
    padding: 24px;
}
.sf-stage::before {
    content: "";
    position: absolute;
    width: 118%;
    height: 118%;
    background: radial-gradient(closest-side, rgba(255, 197, 61, .28), rgba(255, 176, 31, .08) 58%, transparent 72%);
    filter: blur(4px);
    z-index: 0;
}
.sf-stage::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 14%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 197, 61, .55), transparent);
    z-index: 0;
}
.sf-stage__img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 420px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 40px rgba(0, 0, 0, .6));
    animation: sfFloat 6s var(--sf-ease) infinite;
}
.sf-stage__logo { position: relative; z-index: 1; width: min(240px, 60%); height: auto; opacity: .96; }
.sf-stage__tag {
    position: absolute;
    z-index: 2;
    right: 4%;
    bottom: 8%;
    background: rgba(14, 15, 19, .82);
    border: 1px solid var(--sf-line);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: var(--sf-r-md);
    padding: 12px 16px;
    text-align: left;
}
.sf-stage__tag-name { font-family: var(--sf-display); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--sf-text); line-height: 1; }
.sf-stage__tag-price { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--sf-muted); margin-top: 6px; }
.sf-stage__tag-price b { color: var(--sf-sun); font-weight: 700; }
@keyframes sfFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.sf-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--sf-line);
    border: 1px solid var(--sf-line);
    border-radius: var(--sf-r-lg);
    overflow: hidden;
    margin-top: clamp(28px, 4vw, 44px);
}
.sf-stat { background: var(--sf-surface); padding: 22px 20px; text-align: center; }
.sf-stat__num { font-family: var(--sf-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1; color: var(--sf-sun); }
.sf-stat__label { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--sf-muted); margin-top: 8px; letter-spacing: .02em; }

.sf-brands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sf-brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--sf-surface);
    border: 1px solid var(--sf-line);
    border-radius: var(--sf-r-lg);
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s var(--sf-ease), border-color .3s ease, background-color .3s ease, box-shadow .3s ease;
}
.sf-brand-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(140% 90% at 100% 0%, var(--sf-sun-soft), transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
}
.sf-brand-card:hover {
    border-color: var(--sf-line-strong);
    background: var(--sf-surface-2);
    box-shadow: var(--sf-shadow);
}
.sf-brand-card:hover::after { opacity: 1; }
.sf-brand-card__logo { height: 46px; width: auto; max-width: 160px; object-fit: contain; position: relative; z-index: 1; }
.sf-brand-card__meta { position: relative; z-index: 1; margin-top: auto; }
.sf-brand-card__count { font-family: var(--sf-display); font-weight: 700; font-size: 30px; line-height: 1; color: var(--sf-text); }
.sf-brand-card__count span { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 500; color: var(--sf-muted); margin-left: 8px; }
.sf-brand-card__go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--sf-sun);
    position: relative;
    z-index: 1;
}
.sf-brand-card__go svg { width: 16px; height: 16px; transition: transform .25s var(--sf-ease); }
.sf-brand-card:hover .sf-brand-card__go svg { transform: translateX(4px); }

.sf-fleet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sf-vehicle-card {
    display: flex;
    flex-direction: column;
    background: var(--sf-surface);
    border: 1px solid var(--sf-line);
    border-radius: var(--sf-r-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform .3s var(--sf-ease), border-color .3s ease, box-shadow .3s ease;
}
.sf-vehicle-card:hover {
    border-color: var(--sf-line-strong);
    box-shadow: var(--sf-shadow);
}
.sf-vehicle-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 12px;
    background:
        radial-gradient(closest-side at 50% 62%, rgba(255, 197, 61, .16), transparent 70%),
        linear-gradient(180deg, var(--sf-surface-2), var(--sf-ink-2));
    overflow: hidden;
}
.sf-vehicle-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .4s var(--sf-ease);
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .45));
}
.sf-vehicle-card:hover .sf-vehicle-card__img { transform: scale(1.06) translateY(-2px); }
.sf-vehicle-card__badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--sf-sun);
    background: rgba(14, 15, 19, .7);
    border: 1px solid var(--sf-line);
    padding: 5px 10px;
    border-radius: 999px;
}
.sf-vehicle-card__body { display: flex; flex-direction: column; gap: 12px; padding: 18px; flex: 1; }
.sf-vehicle-card__name {
    font-family: var(--sf-display);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--sf-text);
}
.sf-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.sf-spec {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--sf-muted);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    padding: 4px 9px;
    white-space: nowrap;
}
.sf-price { margin-top: auto; display: flex; align-items: baseline; gap: 7px; }
.sf-price__from { font-family: 'Manrope', sans-serif; font-size: 12.5px; color: var(--sf-faint); }
.sf-price__val { font-family: var(--sf-display); font-weight: 800; font-size: 26px; line-height: 1; color: var(--sf-text); }
.sf-price__unit { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--sf-muted); }
.sf-price__soon { font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--sf-muted); }
.sf-vehicle-card__cta {
    margin-top: 4px;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--sf-text);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--sf-line-strong);
    border-radius: var(--sf-r-pill);
    padding: 11px 16px;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}
.sf-vehicle-card:hover .sf-vehicle-card__cta { background: var(--sf-sun); border-color: var(--sf-sun); color: #0e0f13; }
.sf-vehicle-card__actions { margin-top: 4px; display: flex; flex-direction: column; align-items: stretch; gap: 9px; }
.sf-vehicle-card__actions .sf-vehicle-card__cta { margin-top: 0; }
.sf-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--sf-muted);
    text-decoration: none;
    transition: color .25s ease;
}
.sf-card-link:hover { color: var(--sf-sun); }
.sf-card-link svg { width: 13px; height: 13px; transition: transform .25s var(--sf-ease); }
.sf-card-link:hover svg { transform: translateX(3px); }

.sf-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sf-value {
    padding: 26px 22px;
    background: var(--sf-surface);
    border: 1px solid var(--sf-line);
    border-radius: var(--sf-r-lg);
    transition: transform .3s var(--sf-ease), border-color .3s ease;
}
.sf-value:hover { border-color: var(--sf-line-strong); }
.sf-value__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--sf-sun-soft);
    color: var(--sf-sun);
    margin-bottom: 18px;
}
.sf-value__icon svg { width: 24px; height: 24px; }
.sf-value__title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17px; color: var(--sf-text); margin: 0 0 8px; }
.sf-value__text { font-family: 'Manrope', sans-serif; font-size: 14.5px; line-height: 1.55; color: var(--sf-muted); margin: 0; }

.sf-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sf-step {
    position: relative;
    padding: 30px 26px 26px;
    background: var(--sf-surface);
    border: 1px solid var(--sf-line);
    border-radius: var(--sf-r-lg);
}
.sf-step__num {
    font-family: var(--sf-display);
    font-weight: 800;
    font-size: 46px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--sf-line-strong);
    margin-bottom: 14px;
}
.sf-step__title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; color: var(--sf-text); margin: 0 0 8px; }
.sf-step__text { font-family: 'Manrope', sans-serif; font-size: 14.5px; line-height: 1.55; color: var(--sf-muted); margin: 0; }

.sf-faq { max-width: 720px; }
.sf-faq__item { border-top: 1px solid var(--sf-line); }
.sf-faq__item:last-child { border-bottom: 1px solid var(--sf-line); }
.sf-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    list-style: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16.5px;
    line-height: 1.45;
    color: var(--sf-text);
    transition: color .25s ease;
}
.sf-faq__q::-webkit-details-marker { display: none; }
.sf-faq__q:hover { color: var(--sf-sun); }
.sf-faq__q:focus-visible { outline: 2px solid var(--sf-sun); outline-offset: 4px; }
.sf-faq__chevron {
    flex: none;
    width: 20px;
    height: 20px;
    color: var(--sf-faint);
    transition: transform .3s var(--sf-ease), color .25s ease;
}
.sf-faq__item[open] .sf-faq__q { color: var(--sf-sun); }
.sf-faq__item[open] .sf-faq__chevron { transform: rotate(180deg); color: var(--sf-sun); }
.sf-faq__a {
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--sf-muted);
    margin: 0 0 20px;
    padding-right: 38px;
}

.sf-cta-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--sf-r-lg);
    padding: clamp(32px, 5vw, 56px);
    background:
        radial-gradient(120% 160% at 100% 0%, rgba(255, 197, 61, .16), transparent 55%),
        linear-gradient(135deg, var(--sf-surface-2), var(--sf-ink-2));
    border: 1px solid var(--sf-line-strong);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.sf-cta-band__title { font-family: var(--sf-display); font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1; text-transform: uppercase; color: var(--sf-text); margin: 0; }
.sf-cta-band__title em { font-style: normal; color: var(--sf-sun); }
.sf-cta-band__text { font-family: 'Manrope', sans-serif; color: var(--sf-muted); margin: 12px 0 0; max-width: 34em; }
.sf-cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.storefront .reviews { margin: 0; }
.storefront .reviews-row { gap: 20px; }
.storefront .review-card {
    flex-basis: 340px;
    background: var(--sf-surface);
    border-color: var(--sf-line);
    border-radius: var(--sf-r-lg);
    padding: 24px;
}
.storefront .review-text { font-size: 15px; }

.storefront .header-main {
    display: block;
    text-align: left;
    font-family: var(--sf-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: .98;
    text-transform: uppercase;
    color: var(--sf-text);
    margin: 0;
}
.sf-page-head { padding: clamp(32px, 5vw, 56px) 0 8px; }
.sf-page-head .sf-lead { max-width: 44em; }
.sf-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--sf-muted);
    text-decoration: none;
    margin-bottom: 16px;
}
.sf-breadcrumb:hover { color: var(--sf-sun); }
.sf-breadcrumb svg { width: 15px; height: 15px; }

.storefront .bike-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; justify-content: initial; margin: 32px 0 0; }
.sf-cat-card {
    display: flex;
    flex-direction: column;
    background: var(--sf-surface);
    border: 1px solid var(--sf-line);
    border-radius: var(--sf-r-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform .3s var(--sf-ease), border-color .3s ease, box-shadow .3s ease;
}
.sf-cat-card:hover { border-color: var(--sf-line-strong); box-shadow: var(--sf-shadow); }
.sf-cat-card__media {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    padding: 16px;
    background:
        radial-gradient(closest-side at 50% 60%, rgba(255, 197, 61, .14), transparent 70%),
        linear-gradient(180deg, var(--sf-surface-2), var(--sf-ink-2));
}
.sf-cat-card__media img { max-width: 92%; max-height: 100%; object-fit: contain; transition: transform .4s var(--sf-ease); filter: drop-shadow(0 16px 20px rgba(0, 0, 0, .4)); }
.sf-cat-card:hover .sf-cat-card__media img { transform: scale(1.05); }
.sf-cat-card__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; }
.sf-cat-card__name { font-family: var(--sf-display); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--sf-text); }
.sf-cat-card__count { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px; color: var(--sf-sun); background: var(--sf-sun-soft); padding: 4px 12px; border-radius: 999px; }

.sf-empty { text-align: center; padding: 56px 20px; max-width: 520px; margin: 0 auto; }
.sf-empty__title { font-family: var(--sf-display); font-weight: 700; font-size: 26px; text-transform: uppercase; color: var(--sf-text); margin: 0 0 10px; }
.sf-empty__text { font-family: 'Manrope', sans-serif; color: var(--sf-muted); margin: 0 0 22px; }

.sf-detail { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.sf-detail__media {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 16px;
    background:
        radial-gradient(closest-side at 50% 62%, rgba(255, 197, 61, .16), transparent 70%),
        linear-gradient(180deg, var(--sf-surface-2), var(--sf-ink-2));
    border: 1px solid var(--sf-line);
    border-radius: var(--sf-r-lg);
    overflow: hidden;
}
.sf-detail__head { display: flex; flex-direction: column; gap: 10px; }
.sf-detail__head .sf-vehicle-card__name { font-size: 26px; }
.sf-detail__title { font-family: var(--sf-display); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--sf-text); margin: 6px 0 -4px; }
.sf-detail__cta { margin-top: 6px; }
.sf-detail__empty { padding: 40px 24px; background: var(--sf-surface); border: 1px solid var(--sf-line); border-radius: var(--sf-r-lg); max-width: none; }
.sf-detail__actions { display: flex; flex-direction: column; gap: 10px; }

.sf-rates { display: flex; flex-direction: column; gap: 10px; }
.sf-rate {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 18px;
    background: var(--sf-surface);
    border: 1px solid var(--sf-line);
    border-radius: 14px;
    transition: border-color .25s ease, background-color .25s ease;
}
.sf-rate:hover { border-color: var(--sf-line-strong); background: var(--sf-surface-2); }
.sf-rate__label { font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--sf-muted); }
.sf-rate__val { font-family: var(--sf-display); font-weight: 800; font-size: 26px; line-height: 1; color: var(--sf-text); white-space: nowrap; }

.sf-order { background: var(--sf-surface); border: 1px solid var(--sf-line); border-radius: var(--sf-r-lg); padding: 28px 24px; text-align: center; }
.sf-order__label { font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sf-muted); }
.sf-order__num { font-family: var(--sf-display); font-weight: 800; font-size: 42px; line-height: 1; color: var(--sf-sun); margin: 10px 0 18px; }
.sf-order__text { font-family: 'Manrope', sans-serif; color: var(--sf-muted); line-height: 1.65; margin: 0; }
.sf-order__next { margin-top: 22px; padding: 18px; background: var(--sf-ink-2); border: 1px solid var(--sf-line); border-radius: 14px; text-align: left; }
.sf-order__next-title { font-family: var(--sf-display); font-weight: 700; font-size: 17px; text-transform: uppercase; color: var(--sf-text); margin-bottom: 10px; }
.sf-order__steps { margin: 0; padding-left: 18px; font-family: 'Manrope', sans-serif; color: var(--sf-muted); line-height: 1.7; }

.sf-notice {
    font-family: 'Manrope', sans-serif;
    color: var(--sf-wa);
    background: rgba(37, 211, 102, .1);
    border: 1px solid rgba(37, 211, 102, .35);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
}

.sf-map { border: 1px solid var(--sf-line); border-radius: var(--sf-r-lg); overflow: hidden; }
.sf-map iframe { display: block; width: 100%; height: 320px; border: 0; }

.sf-btn--danger { background: rgba(229, 72, 77, .12); border-color: rgba(229, 72, 77, .5); color: #ff8a8d; }
.sf-btn--danger:hover { transform: translateY(-2px); background: rgba(229, 72, 77, .2); border-color: rgba(229, 72, 77, .8); }
.sf-btn--sm { padding: 10px 16px; font-size: 13px; }

.sf-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.sf-note { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--sf-faint); margin: 0 0 26px; }
.sf-chip {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--sf-muted);
    background: var(--sf-surface);
    border: 1px solid var(--sf-line);
    border-radius: var(--sf-r-pill);
    padding: 9px 17px;
    cursor: pointer;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}
.sf-chip:hover { color: var(--sf-text); border-color: var(--sf-line-strong); }
.sf-chip.is-active { color: #0e0f13; background: var(--sf-sun); border-color: var(--sf-sun); }

.sf-brand-block { background: var(--sf-surface); border: 1px solid var(--sf-line); border-radius: var(--sf-r-lg); padding: 22px; margin-bottom: 22px; }
.sf-brand-block__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--sf-line); }
.sf-brand-block__name { font-family: var(--sf-display); font-weight: 800; font-size: 24px; text-transform: uppercase; color: var(--sf-text); margin: 0; }
.sf-brand-block__count { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px; color: var(--sf-sun); background: var(--sf-sun-soft); padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.sf-brand-block__summary { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--sf-line); }
.sf-summary-item { display: flex; align-items: baseline; gap: 7px; font-family: 'Manrope', sans-serif; font-size: 13.5px; }
.sf-summary-item__label { color: var(--sf-faint); }
.sf-summary-item__val { color: var(--sf-text); font-weight: 600; }

.sf-table-scroll { overflow-x: auto; }
.sf-table { width: 100%; border-collapse: collapse; font-family: 'Manrope', sans-serif; }
.sf-table th {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--sf-muted);
    text-align: center;
    padding: 0 12px 12px;
    border-bottom: 1px solid var(--sf-line);
    white-space: nowrap;
}
.sf-table td { padding: 14px 12px; text-align: center; vertical-align: middle; border-bottom: 1px solid var(--sf-line); }
.sf-table tbody tr { transition: background-color .25s ease; }
.sf-table tbody tr:hover { background: rgba(255, 255, 255, .03); }
.sf-table tbody tr:last-child td { border-bottom: 0; }
.sf-table__model-col { text-align: left; }
.sf-table__model { display: flex; align-items: center; gap: 14px; }
.sf-table__thumb { width: 58px; height: 58px; flex-shrink: 0; object-fit: contain; padding: 5px; background: var(--sf-ink-2); border: 1px solid var(--sf-line); border-radius: 12px; }
.sf-table__name { font-family: var(--sf-display); font-weight: 700; font-size: 17px; line-height: 1.05; text-transform: uppercase; color: var(--sf-text); }
.sf-table__meta { font-size: 12.5px; color: var(--sf-faint); margin-top: 4px; }
.sf-table__price { font-family: var(--sf-display); font-weight: 800; font-size: 20px; line-height: 1; color: var(--sf-text); white-space: nowrap; }
.sf-table__perday { font-size: 11.5px; color: var(--sf-faint); margin-top: 4px; white-space: nowrap; }
.sf-table__dash { color: var(--sf-faint); }
.sf-table__actions { display: flex; flex-direction: column; gap: 8px; min-width: 136px; }

.storefront .site-footer { background: var(--sf-ink-2); border-top: 1px solid var(--sf-line); }
.storefront .footer-name { font-family: var(--sf-display); font-weight: 700; letter-spacing: .01em; }

.storefront .about-section {
    max-width: 900px;
    background: var(--sf-surface);
    border-color: var(--sf-line);
    border-radius: var(--sf-r-lg);
}
.storefront .about-title { font-family: var(--sf-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; }

@media (max-width: 1000px) {
    .sf-table { min-width: 780px; }
    .sf-hero__grid { grid-template-columns: 1fr; }
    .sf-stage { order: -1; min-height: 280px; }
    .sf-fleet { grid-template-columns: repeat(3, 1fr); }
    .sf-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .site-nav { display: none; }
    .sf-brands { grid-template-columns: 1fr; }
    .sf-steps { grid-template-columns: 1fr; }
    .storefront .bike-categories { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .sf-wrap { padding: 0 18px; }
    .sf-brand-block { padding: 18px 14px; }
    .sf-order__num { font-size: 34px; }
    .sf-map iframe { height: 260px; }
    .sf-stats { grid-template-columns: repeat(2, 1fr); }
    .sf-fleet { grid-template-columns: repeat(2, 1fr); }
    .sf-cta-band { flex-direction: column; align-items: flex-start; }
    .sf-faq__q { font-size: 15.5px; gap: 14px; }
    .sf-faq__a { padding-right: 0; }
    .storefront .site-header .logo img { width: 52px; height: 52px; }
    .header-cta span { display: none; }
    .header-cta { padding: 9px 12px; }
}
@media (max-width: 460px) {
    .sf-values { grid-template-columns: 1fr; }
    .storefront .bike-categories { grid-template-columns: 1fr; }
    .sf-fleet { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .storefront *,
    [data-reveal] { transition: none !important; animation: none !important; }
    .sf-stage__img { animation: none; }
}
