@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap);
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .splash-video {
        object-fit: contain;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #404040;
    width: 100%;
    height: 100%;
}

.canvas {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    z-index: 1;
    width: 100%;
    height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 100%;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar-logo {
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar-link {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #f97316;
}

.navbar-auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.navbar-user {
    display: flex;
    align-items: center;
}

.auth-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
    background: transparent;
    color: white;
}

.auth-btn:hover {
    background: white;
    color: #1f2937;
}

.auth-btn-primary {
    background: #f97316;
    border-color: #f97316;
    color: white;
}

.auth-btn-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
    color: white;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(124, 124, 124, 0.95);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.mobile-link:hover {
    background: #f97316;
}

.mobile-auth-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
    background: transparent;
    color: white;
    text-align: center;
}

.mobile-auth-btn:hover {
    background: white;
    color: #1f2937;
}

.mobile-auth-btn-primary {
    background: #f97316;
    border-color: #f97316;
}

.mobile-auth-btn-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
    color: white;
}

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    transition: backdrop-filter 0.3s ease;
}

.auth-modal-content {
    position: relative;
    z-index: 1001;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: #f97316 rgba(255, 255, 255, 0.1);
}

.auth-modal-content::-webkit-scrollbar {
    width: 8px;
}

.auth-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.auth-modal-content::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 10px;
}

.auth-modal-content::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

.auth-modal.active .auth-modal-content {
    transform: translateY(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.auth-modal-close:hover {
    background: #f97316;
    border-color: #f97316;
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
}

.auth-container {
    width: 100%;
    padding: 20px;
}

.auth-card {
    background: rgba(64, 64, 64, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.auth-card h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #d1d5db;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: #f97316;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}

.form-group small {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #d1d5db;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f97316;
}

.form-options a {
    font-family: 'Montserrat', sans-serif;
    color: #f97316;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.form-options a:hover {
    color: #ea580c;
    text-decoration: underline;
}

.btn-primary {
    padding: 14px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #d1d5db;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider span {
    font-family: 'Montserrat', sans-serif;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
}

.btn-google {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    color: #ffffff;
}

.btn-google:hover {
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.2);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.auth-link {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-top: 20px;
    color: #d1d5db;
    font-size: 14px;
    font-weight: 400;
}

.auth-link a {
    font-family: 'Montserrat', sans-serif;
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    color: #ea580c;
    text-decoration: underline;
}

.error-message {
    font-family: 'Montserrat', sans-serif;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.success-message {
    font-family: 'Montserrat', sans-serif;
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.user-profile {
    position: relative;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
}

.user-initials {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.user-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(64, 64, 64, 0.98);
    border-radius: 15px;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(249, 115, 22, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-initials-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.user-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.user-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #d1d5db;
    margin: 0;
}

.user-dropdown-menu {
    padding: 10px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(249, 115, 22, 0.2);
}

.dropdown-item.logout:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
}

.dropdown-icon {
    font-size: 18px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.left-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}

.left-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
    color: #1f2937;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-width: 150px;
}

.left-btn:hover {
    transform: scale(1.1);
    background-color: #000000;
    color: white;
    border-color: #f97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.left-btn.active {
    background-color: #f97316;
    color: white;
    border-color: #f97316;
    transform: scale(1.05);
}

.left-btn.active:hover {
    transform: scale(1.1);
}

.color-switcher {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 30px;
    border-radius: 50px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.color-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.color-circle.active {
    border-color: white;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
.inputColor{
    display: flex;
    position: absolute;
    right: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    opacity: 0;
}
.navigation-arrows {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 80;
    padding: 0;
}

.arrow-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    padding: 0;
}

.arrow-btn:hover {
    transform: scale(1.05);
}

.arrow-btn:active {
    transform: scale(0.98);
}

.arrow-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    /* .navigation-arrows {
        padding: 0 15px;
    } */
    
    .arrow-btn {
        width: 50px;
        height: 50px;
    }
    
    .arrow-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .arrow-btn {
        width: 45px;
        height: 45px;
    }
}

.model-title-container {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
}

.model-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.favourite-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favourite-btn:hover {
    transform: scale(1.1);
}

.favourite-btn:active {
    transform: scale(0.95);
}

.favourite-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.favourite-btn.active img {
    filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.5));
}

@media (max-width: 768px) {
    .model-title-container {
        top: 100px;
    }
    
    .model-title {
        font-size: 24px;
    }
    
    .favourite-btn {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .model-title-container {
        top: 90px;
    }
    
    .model-title {
        font-size: 20px;
    }
    
    .favourite-btn {
        width: 30px;
        height: 30px;
    }
}

.toggle-btn {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 150;
    padding: 0;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    transform: translateX(-50%) scale(1.1);
}

.toggle-btn:active {
    transform: translateX(-50%) scale(0.95);
}

.toggle-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .toggle-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
    }
}

.bg-shadow {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    pointer-events: none;
}

.bg-shadow img {
    width: 100%;
    height: auto;
    display: block;
}

.brochures-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(152, 152, 152, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochures-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    position: relative;
}

.brochures-container h1 {
    font-family: 'Montserrat', sans-serif;
    color: rgb(0, 0, 0);
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 32px;
}

.close-brochures-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgb(0, 0, 0);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-brochures-btn:hover {
    background: #f97316;
    transform: rotate(90deg);
}

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

.brochure-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brochure-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
}

.brochure-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .brochures-grid {
        grid-template-columns: 1fr;
    }
    
    .brochures-container {
        padding: 30px 20px;
    }
    
    .brochures-container h1 {
        font-size: 24px;
    }
}

.favourites-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.favourites-container {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98), rgba(50, 50, 50, 0.98));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.favourites-header {
    margin-bottom: 30px;
    text-align: center;
}

.favourites-container h1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin: 0 0 10px 0;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-favourites-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-favourites-btn:hover {
    background: #f97316;
    border-color: #f97316;
    transform: rotate(90deg) scale(1.1);
}

.favourites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.no-fav-container {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.no-fav-icon {
    width: 80px;
    height: 80px;
    color: rgba(249, 115, 22, 0.3);
    stroke-width: 1.5;
    margin-bottom: 20px;
}

.no-fav-text {
    font-family: 'Montserrat', sans-serif;
    color: #d1d5db;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.no-fav-subtext {
    font-family: 'Montserrat', sans-serif;
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.fav-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.fav-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
}

.fav-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.fav-card-badge {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.remove-fav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.remove-fav-btn:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: #dc2626;
    transform: scale(1.1);
}

.remove-fav-btn svg {
    width: 18px;
    height: 18px;
    stroke: #dc2626;
    stroke-width: 2;
}

.fav-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    flex: 1;
}

.fav-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #d1d5db;
    font-size: 14px;
}

.fav-detail strong {
    color: white;
    font-weight: 600;
}

.fav-icon {
    width: 18px;
    height: 18px;
    stroke: #f97316;
    stroke-width: 2;
    flex-shrink: 0;
}

.fav-date {
    color: #9ca3af;
    font-size: 12px;
    margin-top: 4px;
}

.fav-load-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fav-load-btn:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.fav-load-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.fav-count {
    font-family: 'Montserrat', sans-serif;
    color: #9ca3af;
    text-align: center;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Scrollbar */
.favourites-container::-webkit-scrollbar {
    width: 8px;
}

.favourites-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.favourites-container::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.5);
    border-radius: 10px;
}

.favourites-container::-webkit-scrollbar-thumb:hover {
    background: rgba(249, 115, 22, 0.7);
}

@media (max-width: 768px) {
    .favourites-container {
        padding: 30px 20px;
        max-height: 85vh;
    }
    
    .favourites-container h1 {
        font-size: 28px;
    }
    
    .favourites-grid {
        grid-template-columns: 1fr;
    }
    
    .close-favourites-btn {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
}

.wheels-switcher {
    position: fixed;
    bottom: 20px;
    right: 300px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 50px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 90;
}

.wheels-option {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wheels-option:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wheels-option.active {
    border-color: #f97316;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

.wheels-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .wheels-switcher {
        bottom: 20px;
        right: 20px;
        padding: 15px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .wheels-switcher {
        bottom: 20px;
        right: 20px;
        padding: 15px;
        gap: 12px;
    }
    
    .wheels-option {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .wheels-switcher {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        gap: 10px;
    }
    
    .wheels-option {
        width: 50px;
        height: 50px;
    }
}

.roof-switcher {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.roof-switcher-container {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.roof-switcher-container h3 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roof-options {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.door-options {
    display: flex;
    gap: 12px;
}

.roof-option, .door-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.roof-option:hover, .door-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

.roof-option.active, .door-option.active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.roof-label {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .roof-switcher {
        bottom: 100px;
        left: 10px;
        right: 10px;
        transform: none;
    }
    
    .roof-switcher-container {
        padding: 15px;
    }
    
    .roof-options, .door-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .roof-option, .door-option {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .navbar-links {
        display: none;
    }
    
    .navbar-auth {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    .container{
        max-width: 350px !important;
    }
    .left-panel {
        gap: 12px;
    }
    
    .left-btn {
        font-size: 14px;
        padding: 12px 20px;
        min-width: 130px;
    }
    .color-switcher{
        padding: 20px;
    }
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-card h1 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .container{
        max-width: 500px !important;
        display: flex;
        flex-direction: column;
        align-items: center !important;
        justify-content: end !important;
        left: 50% !important;
        transform: translateX(-50%);
    }
    .left-panel {
        flex-direction: row;
        gap: 10px;
        max-width: 95%;
        overflow-x: auto;
    }
    
    .left-btn {
        font-size: 12px;
        padding: 10px 15px;
        min-width: auto;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .color-switcher {
        padding: 10px 15px;
        gap: 12px;
    }
    
    .color-circle, .inputColor {
        width: 40px;
        height: 40px;
    }
    
    .auth-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .auth-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .left-panel {
        gap: 8px;
    }
    
    .left-btn {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .color-switcher {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .color-circle, .inputColor {
        width: 35px;
        height: 35px;
    }
    
    .auth-modal-content {
        width: 98%;
    }
    
    .auth-card {
        padding: 20px 15px;
    }
    
    .auth-card h1 {
        font-size: 22px;
    }
    
    .form-group input {
        font-size: 14px;
        padding: 10px 14px;
    }
}

.container{
    position: fixed;
    top: 60%;
    left: 30px;
    z-index: 100;
    max-width: 500px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 15px;
}
/* Main stylesheet - imports all modular styles */


/*# sourceMappingURL=main.css.map*/