.navbar{background:#fff;box-shadow:0 2px 8px #0000001a;position:sticky;top:0;z-index:1000;width:100%;border-bottom:3px solid var(--primary-yellow)}.navbar .container{max-width:1280px;margin:0 auto;padding:0 1rem}.nav-content{display:flex;align-items:center;justify-content:space-between;height:75px;position:relative}.logo{display:flex;align-items:center;text-decoration:none;transition:.3s ease;z-index:1001;padding:.5rem;border-radius:var(--radius-md)}.logo-img{height:60px;width:auto;object-fit:contain;transition:.3s ease;filter:drop-shadow(0 2px 4px rgba(0,0,0,.1))}.logo:hover{transform:translateY(-2px)}.logo:hover .logo-img{filter:drop-shadow(0 4px 8px rgba(255,215,0,.4))}.nav-links{display:flex;align-items:center;gap:.5rem;list-style:none;margin:0;padding:0}.nav-links li{display:flex;align-items:center}.nav-links a{display:flex;align-items:center;gap:.5rem;padding:.6rem 1rem;color:var(--text-primary);text-decoration:none;font-weight:500;font-size:.95rem;border-radius:var(--radius-md);transition:.2s ease;white-space:nowrap;position:relative;border:2px solid transparent}.nav-links a:hover{color:var(--primary-black);background:var(--primary-yellow);border-color:var(--primary-yellow);transform:translateY(-2px);box-shadow:0 4px 8px #ffd7004d}.badge{display:inline-flex;align-items:center;padding:.5rem .875rem;border-radius:var(--radius-full);font-size:.85rem;font-weight:700;white-space:nowrap;border:2px solid var(--primary-yellow)}.user-profile{display:flex;align-items:center;gap:.625rem;padding:.5rem .875rem;border-radius:var(--radius-md);transition:.2s ease;border:2px solid transparent;cursor:default}.user-profile:hover{background-color:#ffd7001a;border-color:var(--primary-yellow)}.user-avatar{width:38px;height:38px;border-radius:var(--radius-full);border:2px solid var(--primary-yellow);object-fit:cover;transition:.2s ease}.user-profile:hover .user-avatar{transform:scale(1.05);box-shadow:0 0 0 3px #ffd70033}.user-name{font-weight:600;color:var(--text-primary);font-size:.95rem;display:none}.user-avatar-fallback{width:50px;height:50px;border-radius:50%;background-color:gold;color:#000;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px;text-transform:uppercase}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.625rem 1.25rem;font-size:.95rem;font-weight:700;border-radius:var(--radius-md);border:2px solid transparent;cursor:pointer;transition:.2s ease;text-decoration:none;white-space:nowrap;background:transparent}.btn-primary:hover{background:var(--secondary-yellow);border-color:var(--secondary-yellow);transform:translateY(-2px);box-shadow:0 4px 8px #ffd7004d}.logout-btn{background:transparent;color:var(--text-primary);border-color:var(--border-gray);position:relative;overflow:hidden}.logout-btn:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:var(--primary-black);transition:.3s ease;z-index:-1}.logout-btn:hover:before{left:0}.logout-btn:hover{color:var(--primary-yellow);border-color:var(--primary-black);transform:translateY(-2px);box-shadow:0 4px 8px #0003}.mobile-menu-toggle{display:none;background:transparent;border:2px solid var(--border-light);color:var(--text-primary);cursor:pointer;padding:.5rem;border-radius:var(--radius-md);transition:.2s ease;z-index:1002}.mobile-menu-toggle:hover{background-color:var(--primary-yellow);color:var(--primary-black);border-color:var(--primary-yellow)}.mobile-overlay{display:none;position:fixed;top:0;left:0;width:100vw;height:100vh;background:#0009;z-index:999;opacity:0;transition:opacity .3s ease}.mobile-overlay.active{opacity:1}@media (max-width: 1100px){.nav-content{height:70px}.logo-img{height:50px}.mobile-menu-toggle{display:flex;align-items:center;justify-content:center}.mobile-overlay{display:block}.nav-links{position:fixed;top:0;right:-100%;width:320px;max-width:85vw;height:100vh;background:#fff;flex-direction:column;align-items:stretch;padding:5.5rem 1.5rem 2rem;gap:.75rem;box-shadow:-4px 0 20px #00000026;transition:right .3s ease;overflow-y:auto;border-left:3px solid var(--primary-yellow);z-index:1001}.nav-links.active{right:0}.nav-links li{width:100%}.nav-links a{width:100%;padding:1rem 1.25rem;font-size:1rem;justify-content:flex-start;border-radius:var(--radius-md);border:2px solid transparent}.nav-links a:hover{background:var(--primary-yellow);color:var(--primary-black);border-color:var(--primary-yellow);transform:translate(-3px)}.badge{width:100%;justify-content:center;padding:.875rem 1rem;font-size:.9rem}.user-profile{width:100%;padding:1rem 1.25rem;justify-content:flex-start}.user-name{display:block}.btn{width:100%;padding:1rem 1.25rem;justify-content:center;font-size:1rem}.logout-btn{margin-top:.5rem}.logout-btn:hover{transform:translate(-3px)}}@media (max-width: 480px){.navbar .container{padding:0 .75rem}.nav-content{height:65px}.logo-img{height:45px}.mobile-menu-toggle{padding:.375rem}.mobile-menu-toggle svg{width:24px;height:24px}.nav-links{width:280px;padding:5rem 1rem 2rem;gap:.625rem}.nav-links a{padding:.875rem 1rem;font-size:.95rem}.badge{padding:.75rem 1rem;font-size:.875rem}.user-profile{padding:.875rem 1rem}.user-avatar{width:36px;height:36px}.user-name{font-size:.9rem}.btn{padding:.875rem 1rem;font-size:.95rem}}@media (max-width: 360px){.logo-img{height:40px}.nav-links{width:260px}.nav-links a{font-size:.9rem}}.nav-links::-webkit-scrollbar{width:6px}.nav-links::-webkit-scrollbar-track{background:var(--bg-light)}.nav-links::-webkit-scrollbar-thumb{background:var(--primary-yellow);border-radius:3px}.nav-links::-webkit-scrollbar-thumb:hover{background:var(--secondary-yellow)}.footer{background:var(--bg-white);border-top:3px solid var(--primary-yellow);padding:60px 20px 20px;color:var(--text-primary)}.footer .container{max-width:1280px;margin:0 auto}.footer-content{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:3rem;margin-bottom:3rem}.footer-section{display:flex;flex-direction:column}.footer-brand{font-size:1.5rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem}.footer-description{color:var(--text-secondary);line-height:1.6;margin-bottom:1.25rem;font-size:.95rem}.footer-heading{font-size:1.1rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem}.social-links{display:flex;gap:.75rem}.social-icon{width:40px;height:40px;background:var(--bg-light);border:2px solid var(--border-light);border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;color:var(--primary-black);transition:.2s ease;text-decoration:none}.social-icon:hover{background:var(--primary-yellow);color:var(--primary-black);border-color:var(--primary-yellow);transform:translateY(-3px);box-shadow:0 4px 8px #ffd7004d}.footer-links{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.75rem}.footer-links li{display:flex;align-items:center}.footer-links a{color:var(--text-secondary);text-decoration:none;font-size:.95rem;transition:.2s ease;display:inline-block;font-weight:500}.footer-links a:hover{color:var(--primary-yellow);transform:translate(5px)}.contact-info li{display:flex;align-items:center;gap:.75rem;color:var(--text-secondary);font-size:.95rem}.contact-info svg{flex-shrink:0;color:var(--primary-yellow)}.contact-info span{line-height:1.5}.footer-bottom{padding-top:2rem;border-top:1px solid var(--border-light);text-align:center}.footer-bottom p{color:var(--text-light);font-size:.9rem;margin:0}@media (max-width: 768px){.footer{padding:50px 20px 20px}.footer-content{grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;margin-bottom:2rem}.footer-brand{font-size:1.3rem}.footer-heading{font-size:1rem}.footer-description,.footer-links a,.contact-info li{font-size:.9rem}.social-icon{width:38px;height:38px}.social-icon svg{width:18px;height:18px}}@media (max-width: 480px){.footer{padding:40px 15px 20px}.footer-content{grid-template-columns:1fr;gap:2rem;margin-bottom:2rem}.footer-section{text-align:center}.footer-brand{font-size:1.25rem}.footer-description{font-size:.9rem}.social-links{justify-content:center}.footer-links{align-items:center}.footer-links a:hover{transform:translate(0)}.contact-info li{justify-content:center;font-size:.9rem}.footer-bottom p{font-size:.85rem}}.bike-card{background:var(--bg-white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);transition:.3s ease;border:1px solid var(--border-light);text-decoration:none;display:flex;flex-direction:column}.bike-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-xl);border-color:var(--border-gray)}.bike-card-image-wrapper{position:relative;width:100%;height:220px;overflow:hidden;flex-shrink:0}.bike-card-image{width:100%;height:100%;object-fit:cover;transition:.3s ease}.bike-card:hover .bike-card-image{transform:scale(1.05)}.bike-card.blurred .bike-card-image{filter:blur(8px)}.bike-card-rating{position:absolute;top:12px;right:12px;background:#fffffff2;padding:6px 12px;border-radius:var(--radius-full);display:flex;align-items:center;gap:4px;font-size:14px;font-weight:600;color:var(--text-primary);box-shadow:var(--shadow-sm);border:1px solid var(--border-light)}.bike-card-rating svg{color:#f59e0b;flex-shrink:0}.bike-card-bookings{position:absolute;top:12px;left:12px;background:var(--primary-black);color:var(--text-white);padding:6px 12px;border-radius:var(--radius-full);font-size:12px;font-weight:600;display:flex;align-items:center;gap:4px;box-shadow:var(--shadow-sm)}.bike-card-content{padding:1.5rem;display:flex;flex-direction:column;flex:1}.bike-card-title{font-size:1.25rem;font-weight:700;color:var(--text-primary);margin-bottom:.5rem;line-height:1.3}.bike-card-info{font-size:.95rem;color:var(--text-light);margin-bottom:.25rem}.bike-card-location{display:flex;align-items:center;gap:4px;font-size:.95rem;color:var(--text-light);margin-top:8px;margin-bottom:0}.bike-card-location svg{color:var(--text-secondary);flex-shrink:0}.bike-card-features{display:flex;flex-wrap:wrap;gap:6px;margin-top:12px;margin-bottom:auto}.bike-feature-badge{font-size:11px;background:var(--bg-light);color:var(--text-primary);border:1px solid var(--border-light);padding:4px 8px;border-radius:var(--radius-sm);white-space:nowrap}.bike-card-footer{display:flex;flex-direction:column;gap:12px;margin-top:16px;padding-top:16px;border-top:1px solid var(--border-light)}.bike-card-price{font-size:1.5rem;font-weight:700;color:var(--primary-black);margin:0}.bike-card-view-btn{background:var(--primary-black);color:var(--text-white);padding:10px 16px;border-radius:var(--radius-md);font-size:14px;font-weight:700;transition:.2s ease;border:2px solid var(--primary-black);text-align:center;width:100%;display:block}.bike-card:hover .bike-card-view-btn{background:var(--primary-yellow);color:var(--primary-black);border-color:var(--primary-yellow)}.bike-card-login-prompt{margin-top:12px;padding:12px;background:var(--bg-light);border-radius:var(--radius-md);text-align:center;border:1px solid var(--border-light)}.bike-card-login-text{font-size:14px;color:var(--text-secondary);font-weight:600;margin:0}@media (max-width: 768px){.bike-card-image-wrapper{height:180px}.bike-card-content{padding:1.25rem}.bike-card-title{font-size:1.15rem}.bike-card-price{font-size:1.35rem}.bike-card-view-btn{padding:9px 14px;font-size:13px}}@media (max-width: 640px){.bike-card-image-wrapper{height:160px}.bike-card-content{padding:1rem}.bike-card-title{font-size:1.05rem}.bike-card-info,.bike-card-location{font-size:.875rem}.bike-card-price{font-size:1.25rem}.bike-card-view-btn{padding:8px 12px;font-size:12px}.bike-card-rating{font-size:12px;padding:5px 8px}.bike-card-bookings{font-size:11px;padding:5px 8px}.bike-card-features{margin-top:8px;gap:4px}.bike-feature-badge{font-size:10px;padding:3px 6px}.bike-card-footer{gap:10px;margin-top:12px;padding-top:12px}}@media (max-width: 480px){.bike-card-image-wrapper{height:150px}.bike-card-content{padding:.875rem}.bike-card-title{font-size:1rem}.bike-card-info,.bike-card-location{font-size:.8125rem}.bike-card-price{font-size:1.15rem}.bike-card-view-btn{padding:8px 12px}}@media (max-width: 360px){.bike-card-image-wrapper{height:140px}.bike-card-content{padding:.75rem}.bike-card-title{font-size:.95rem}.bike-card-info,.bike-card-location{font-size:.75rem}.bike-card-location svg{width:14px;height:14px}.bike-card-price{font-size:1.05rem}.bike-card-view-btn{padding:7px 10px;font-size:11px}.bike-card-rating{font-size:11px;padding:4px 7px;top:8px;right:8px}.bike-card-rating svg{width:12px;height:12px}.bike-card-bookings{font-size:10px;padding:4px 7px;top:8px;left:8px}.bike-card-footer{gap:8px;margin-top:10px;padding-top:10px}.bike-card-login-prompt{padding:8px;margin-top:8px}.bike-card-login-text{font-size:12px}}.hero{height:600px;background:linear-gradient(135deg,#0009,#000000b3),url(/banner.png) center/cover;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;position:relative}.hero:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at center,transparent 0%,rgba(0,0,0,.3) 100%)}.hero-content{max-width:800px;margin:0 auto;padding:0 2rem;position:relative;z-index:1}.hero-title{font-size:3.5rem;font-weight:700;margin-bottom:1rem;line-height:1.2;text-shadow:2px 2px 8px rgba(0,0,0,.5);color:var(--primary-yellow)}.hero-subtitle{font-size:1.35rem;margin-bottom:2rem;opacity:.95;font-weight:400;color:#fff;text-shadow:1px 1px 4px rgba(0,0,0,.5)}.btn-large{font-size:18px!important;padding:16px 32px!important}.featured-section{padding:80px 20px;background:var(--bg-light)}.container{max-width:1280px;margin:0 auto}.section-title{font-size:2.5rem;font-weight:700;text-align:center;margin-bottom:3rem;color:var(--text-primary)}.bikes-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:2rem;margin-bottom:2rem}.view-all-container{text-align:center;margin-top:3rem}.how-we-work-section{padding:80px 20px;background:#fff}.how-we-work-content{max-width:900px;margin:0 auto 4rem;text-align:center}.how-we-work-text{font-size:1.15rem;line-height:1.8;color:var(--text-secondary);margin-bottom:2rem;padding:0 20px}.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2.5rem;margin-top:3rem}.feature-card{text-align:center;padding:2.5rem 2rem;border-radius:var(--radius-lg);transition:.3s ease;background:var(--bg-white)}.feature-card:hover{transform:translateY(-8px);box-shadow:0 12px 35px #0000001f}.feature-icon{width:90px;height:90px;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;transition:.3s ease}.feature-icon img{height:130px;width:130px;object-fit:contain}.feature-icon.yellow{background:var(--primary-yellow);color:var(--primary-black);border:3px solid var(--primary-yellow)}.feature-icon.white{background:var(--primary-white);color:var(--primary-yellow);border:none}.feature-card:hover .feature-icon{transform:scale(1.1)}.feature-title{font-size:1.35rem;font-weight:700;margin-bottom:.75rem;color:var(--text-primary)}.feature-description{font-size:1rem;color:var(--text-light);line-height:1.6}.about-section{padding:80px 20px;background:var(--bg-light)}.about-content{max-width:900px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:2rem}.about-icon{width:120px;height:120px;background:var(--primary-yellow);border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;color:var(--primary-black);box-shadow:0 8px 20px #ffd7004d;border:4px solid var(--primary-black)}.about-text{text-align:center}.about-paragraph{font-size:1.15rem;line-height:1.9;color:var(--text-secondary);margin-bottom:1.5rem;padding:0 20px}.about-paragraph:first-child{margin-bottom:0;font-weight:500;color:var(--text-primary)}.btn-outline-yellow:hover{background:var(--primary-yellow);color:var(--primary-black);transform:translateY(-2px);box-shadow:0 4px 12px #ffd7004d}.card{background:var(--bg-white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);transition:.3s ease;border:1px solid var(--border-light)}.card:hover{transform:translateY(-5px);box-shadow:var(--shadow-xl)}.card-image{width:100%;height:220px;object-fit:cover}.card-content{padding:1.5rem}.card-title{font-size:1.25rem;font-weight:700;color:var(--text-primary);margin-bottom:.5rem}.card-info{font-size:.95rem;color:var(--text-light);margin-bottom:.25rem}.card-price{font-size:1.5rem;font-weight:700;color:var(--primary-yellow)}@media (max-width: 968px){.bikes-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}}@media (max-width: 768px){.hero{height:500px;padding:60px 20px}.hero-content{padding:0 1.5rem}.hero-title{font-size:2.5rem}.hero-subtitle{font-size:1.1rem}.btn-large{font-size:16px!important;padding:14px 28px!important}.featured-section,.how-we-work-section,.about-section{padding:60px 20px}.section-title{font-size:2rem}.bikes-grid{grid-template-columns:repeat(2,1fr);gap:1.25rem}.features-grid{grid-template-columns:1fr;gap:2rem}.feature-card{padding:2rem 1.5rem}.how-we-work-text,.about-paragraph{font-size:1.05rem}.about-icon{width:100px;height:100px}.about-icon svg{width:50px;height:50px}}@media (max-width: 640px){.bikes-grid{grid-template-columns:repeat(2,1fr);gap:1rem}}@media (max-width: 480px){.hero{height:450px;padding:50px 15px}.hero-content{padding:0 1rem}.hero-title{font-size:2rem}.hero-subtitle{font-size:1rem}.btn-large{font-size:15px!important;padding:12px 24px!important}.featured-section,.how-we-work-section,.about-section{padding:50px 15px}.section-title{font-size:1.75rem;margin-bottom:2rem}.bikes-grid{grid-template-columns:repeat(2,1fr);gap:.875rem}.features-grid{gap:1.5rem}.feature-icon{width:75px;height:75px}.feature-icon svg{width:35px;height:35px}.feature-title{font-size:1.15rem}.feature-description{font-size:.95rem}.how-we-work-text,.about-paragraph{font-size:1rem;padding:0 10px}.about-icon{width:90px;height:90px}.about-icon svg{width:45px;height:45px}}@media (max-width: 410px){.container{padding:0 .75rem}.bikes-grid{grid-template-columns:1fr;gap:1rem}.section-title{font-size:1.6rem}}@media (max-width: 360px){.container{padding:0 .625rem}.hero-title{font-size:1.75rem}.hero-subtitle{font-size:.95rem}.section-title{font-size:1.5rem}.bikes-grid{grid-template-columns:1fr;gap:.875rem}}.auth-page{min-height:80vh;display:flex;align-items:center;background:var(--bg-light);padding:3rem 0}.auth-container{max-width:1000px;margin:0 auto;background:var(--bg-white);border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-xl);display:grid;grid-template-columns:45% 55%;border:1px solid var(--border-light);min-height:600px}.auth-branding{background:linear-gradient(135deg,#000000e6,#000c),url(https://images.unsplash.com/photo-1558981852-426c6c22a060?w=600&fit=crop) center/cover;display:flex;align-items:center;justify-content:center;color:var(--text-white);padding:3rem 2.5rem;position:relative;overflow:hidden}.signup-branding{background:linear-gradient(135deg,#059669f2,#047857e6),url(https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?w=600&fit=crop) center/cover}.branding-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at top right,rgba(255,215,0,.15) 0%,transparent 60%);animation:pulse 4s ease-in-out infinite}@keyframes pulse{0%,to{opacity:.5}50%{opacity:.8}}.branding-content{position:relative;z-index:1;text-align:center}.branding-logo{font-size:4rem;margin-bottom:1.5rem;animation:float 3s ease-in-out infinite}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}.branding-title{font-size:2.25rem;font-weight:700;margin-bottom:1rem;color:var(--text-white)}.branding-subtitle{font-size:1.05rem;opacity:.95;color:var(--text-white);line-height:1.7;margin-bottom:2rem}.branding-features{display:flex;flex-direction:column;gap:.875rem;text-align:left;max-width:300px;margin:0 auto}.feature-item{display:flex;align-items:center;font-size:.95rem;color:var(--text-white);opacity:.9;padding:.625rem 1rem;background:#ffffff1a;border-radius:var(--radius-md);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.auth-form-section{padding:3rem;display:flex;flex-direction:column;justify-content:center}.form-title{font-size:1.75rem;font-weight:700;margin-bottom:.5rem;color:var(--primary-black)}.form-subtitle{color:var(--text-secondary);margin-bottom:2rem;font-size:.95rem}.auth-form{display:flex;flex-direction:column;gap:1rem}.form-label{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:600;color:var(--primary-black);margin-bottom:.5rem}.form-label svg{color:var(--text-light)}.password-input-wrapper{position:relative}.password-input-wrapper .form-control{padding-right:3rem}.password-toggle{position:absolute;right:.75rem;top:50%;transform:translateY(-50%);background:transparent;border:none;cursor:pointer;color:var(--text-light);padding:.5rem;display:flex;align-items:center;transition:.2s ease}.password-toggle:hover{color:var(--primary-yellow)}.form-control.error{border-color:#ef4444}.form-control.error:focus{border-color:#ef4444;box-shadow:0 0 0 3px #ef44441a}.error-text{display:block;color:#ef4444;font-size:.8125rem;margin-top:.375rem;font-weight:500}.forgot-password-link{text-align:right;margin-top:-.5rem}.link-button{background:transparent;border:none;color:var(--primary-yellow);font-size:.875rem;font-weight:600;cursor:pointer;text-decoration:none;transition:.2s ease}.link-button:hover{color:var(--secondary-yellow);text-decoration:underline}.btn-submit{width:100%;margin-top:1.5rem;padding:.875rem;font-size:1rem}.demo-note{margin-top:1.5rem;text-align:center;padding:1rem;background:#fef3c7;border-radius:var(--radius-md);border:1px solid var(--primary-yellow)}.demo-note p{font-size:.875rem;margin:0;color:var(--primary-black)}.demo-note strong{font-weight:700}.toggle-section{margin-top:1.5rem;text-align:center;padding-top:1.5rem;border-top:1px solid var(--border-light)}.toggle-text{margin:0;font-size:.95rem;color:var(--text-secondary)}.toggle-button{background:transparent;border:none;color:var(--primary-yellow);font-weight:700;cursor:pointer;text-decoration:none;font-size:.95rem;transition:.2s ease}.toggle-button:hover{color:var(--secondary-yellow);text-decoration:underline}.success-message{text-align:center;padding:2rem 0}.success-icon{font-size:4rem;margin-bottom:1.5rem}.success-title{font-size:1.75rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem}.success-text{font-size:1rem;color:var(--text-secondary);margin-bottom:.5rem;line-height:1.6}.success-text strong{color:var(--primary-yellow);font-weight:700}.success-subtext{font-size:.875rem;color:var(--text-light);font-style:italic}@media (max-width: 968px){.auth-container{grid-template-columns:1fr}.auth-branding{min-height:300px}}@media (max-width: 768px){.auth-page{padding:2rem 0}.auth-branding{padding:2.5rem 2rem;min-height:250px}.branding-logo{font-size:3rem;margin-bottom:1rem}.branding-title{font-size:2rem}.branding-subtitle{font-size:.95rem}.branding-features{gap:.625rem}.feature-item{font-size:.875rem;padding:.5rem .875rem}.auth-form-section{padding:2.5rem 2rem}.form-title{font-size:1.5rem}.form-subtitle{font-size:.875rem}}@media (max-width: 480px){.auth-page{padding:1.5rem 0}.auth-container{margin:0 .5rem;border-radius:var(--radius-lg)}.auth-branding{padding:2rem 1.5rem;min-height:220px}.branding-logo{font-size:2.5rem}.branding-title{font-size:1.75rem}.branding-subtitle{font-size:.875rem;margin-bottom:1.5rem}.branding-features{max-width:100%}.feature-item{font-size:.8125rem}.auth-form-section{padding:2rem 1.5rem}.form-title{font-size:1.35rem;margin-bottom:.375rem}.form-subtitle{font-size:.8125rem;margin-bottom:1.5rem}.auth-form{gap:.875rem}.form-label{font-size:.8125rem}.form-label svg{width:16px;height:16px}.form-control{padding:.625rem .875rem;font-size:.875rem}.password-input-wrapper .form-control{padding-right:2.75rem}.password-toggle{right:.625rem;padding:.375rem}.password-toggle svg{width:16px;height:16px}.error-text{font-size:.75rem}.forgot-password-link{margin-top:-.375rem}.link-button{font-size:.8125rem}.btn-submit{margin-top:1.25rem;padding:.75rem;font-size:.95rem}.demo-note{margin-top:1.25rem;padding:.875rem}.demo-note p{font-size:.8125rem}.toggle-section{margin-top:1.25rem;padding-top:1.25rem}.toggle-text,.toggle-button{font-size:.875rem}}@media (max-width: 360px){.auth-branding{padding:1.75rem 1.25rem;min-height:200px}.branding-logo{font-size:2rem}.branding-title{font-size:1.5rem}.branding-subtitle{font-size:.8125rem}.auth-form-section{padding:1.75rem 1.25rem}.form-title{font-size:1.25rem}.form-subtitle{font-size:.75rem}}.social-login-buttons{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.5rem}.btn-social{display:flex;align-items:center;justify-content:center;gap:.75rem;padding:.875rem 1.25rem;font-size:.95rem;font-weight:600;border-radius:var(--radius-md);border:2px solid var(--border-light);background:var(--bg-white);color:var(--text-primary);cursor:pointer;transition:.2s ease;width:100%}.btn-social:hover{transform:translateY(-2px);box-shadow:0 4px 12px #0000001a;border-color:var(--border-gray)}.btn-social svg{flex-shrink:0}.btn-google:hover{background:#f8f9fa}.btn-facebook:hover{background:#f0f2f5}.divider{display:flex;align-items:center;text-align:center;margin:1.5rem 0;position:relative}.divider:before,.divider:after{content:"";flex:1;border-bottom:1px solid var(--border-light)}.divider span{padding:0 1rem;color:var(--text-light);font-size:.875rem;font-weight:600;background:var(--bg-white)}@media (max-width: 480px){.btn-social{padding:.75rem 1rem;font-size:.875rem}.btn-social svg{width:16px;height:16px}.divider{margin:1.25rem 0}.divider span{padding:0 .75rem;font-size:.8125rem}}.membership-promo-banner{margin:1.5rem 0;padding:1.25rem 1.5rem;background:#ffd70026;border:2px solid rgba(255,215,0,.4);border-radius:var(--radius-lg);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.promo-highlight{font-size:1rem;font-weight:600;color:var(--text-white);line-height:1.5;margin:0 0 .5rem;text-shadow:1px 1px 3px rgba(0,0,0,.3)}.promo-price-tag{font-size:1.1rem;font-weight:500;color:var(--text-white);margin:0;text-shadow:1px 1px 3px rgba(0,0,0,.3)}.price-highlight{font-size:1.5rem;font-weight:800;color:var(--primary-yellow);display:inline-block;padding:0 .25rem;text-shadow:2px 2px 4px rgba(0,0,0,.5)}@media (max-width: 768px){.membership-promo-banner{padding:1rem 1.25rem}.promo-highlight{font-size:.95rem}.promo-price-tag{font-size:1rem}.price-highlight{font-size:1.3rem}}@media (max-width: 480px){.membership-promo-banner{padding:.875rem 1rem;margin:1.25rem 0}.promo-highlight{font-size:.875rem}.promo-price-tag{font-size:.95rem}.price-highlight{font-size:1.2rem}}@media (max-width: 360px){.promo-highlight{font-size:.8125rem}.promo-price-tag{font-size:.875rem}.price-highlight{font-size:1.1rem}}.role-selection-page{min-height:80vh;display:flex;align-items:center;background:var(--bg-light);padding:3rem 0}.role-selection-container{max-width:900px;margin:0 auto;text-align:center}.welcome-title{font-size:2.625rem;font-weight:700;margin-bottom:1rem;color:var(--primary-black)}.welcome-subtitle{font-size:1.125rem;color:var(--text-secondary);margin-bottom:3rem}.roles-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:3rem}.role-card{background:var(--bg-white);padding:3rem 2rem;border-radius:var(--radius-xl);cursor:pointer;transition:all .3s ease;border:2px solid var(--border-light);box-shadow:var(--shadow-md)}.role-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-xl)}.owner-card:hover,.rider-card:hover{border-color:var(--primary-yellow)}.role-icon{width:80px;height:80px;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}.owner-icon,.rider-icon{background:var(--primary-yellow);color:var(--primary-black)}.rider-icon-img img{height:150px;width:150px;object-fit:contain}.role-title{font-size:1.75rem;font-weight:700;margin-bottom:1rem;color:var(--primary-black)}.role-description{color:var(--text-secondary);margin-bottom:1.5rem;line-height:1.6;font-size:.95rem}.role-features{list-style:none;text-align:left;color:var(--text-secondary);margin-bottom:1.5rem;padding:0}.role-features li{margin-bottom:.5rem;font-size:.95rem}.role-button{width:100%;padding:.875rem 1.5rem;border-radius:var(--radius-md);font-weight:700;font-size:1rem;transition:.2s ease;text-align:center}.owner-button{background:var(--primary-black);color:var(--text-white)}.owner-button:hover{background:var(--dark-gray);transform:scale(1.02)}.rider-button{background:var(--primary-black);color:var(--text-white)}.rider-button:hover{background:var(--dark-gray);transform:scale(1.02)}.switch-note{margin-top:2rem;color:var(--text-light);font-size:.875rem}@media (max-width: 768px){.role-selection-page{padding:2rem 0}.welcome-title{font-size:2rem}.welcome-subtitle{font-size:1rem;margin-bottom:2rem}.roles-grid{grid-template-columns:1fr;gap:1.5rem;margin-top:2rem}.role-card{padding:2.5rem 1.75rem}.role-icon{width:70px;height:70px}.role-icon svg{width:35px;height:35px}.role-title{font-size:1.5rem}.role-description{font-size:.9rem}.role-features{margin-bottom:1.25rem}.role-features li{font-size:.875rem}.switch-note{margin-top:1.5rem}}@media (max-width: 480px){.role-selection-page{padding:1.5rem 0}.role-selection-container{padding:0 .5rem}.welcome-title{font-size:1.75rem}.welcome-subtitle{font-size:.95rem;margin-bottom:1.5rem}.roles-grid{gap:1.25rem;margin-top:1.5rem}.role-card{padding:2rem 1.5rem}.role-icon{width:60px;height:60px;margin-bottom:1.25rem}.role-icon svg{width:30px;height:30px}.role-title{font-size:1.35rem;margin-bottom:.875rem}.role-description{font-size:.875rem;margin-bottom:1.25rem}.role-features{margin-bottom:1rem}.role-features li{font-size:.8125rem;margin-bottom:.375rem}.role-button{padding:.75rem 1.25rem;font-size:.95rem}.switch-note{margin-top:1.25rem;font-size:.8125rem}}@media (max-width: 360px){.welcome-title{font-size:1.5rem}.welcome-subtitle{font-size:.875rem}.role-card{padding:1.75rem 1.25rem}.role-icon{width:55px;height:55px}.role-icon svg{width:28px;height:28px}.role-title{font-size:1.25rem}.role-description{font-size:.8125rem}.role-features li{font-size:.75rem}.role-button{padding:.625rem 1rem;font-size:.875rem}}.bikes-page{background:var(--bg-light);min-height:80vh;padding-bottom:3rem}.bikes-header{background:var(--bg-white);padding:3rem 0;margin-bottom:2rem;box-shadow:var(--shadow-sm);border-bottom:2px solid var(--primary-yellow)}.bikes-title{font-size:2.25rem;font-weight:700;color:var(--primary-black);margin-bottom:.5rem}.bikes-count{color:var(--text-light);font-size:1rem;margin:0}.login-prompt{background:#fef3c7;padding:1rem 1.5rem;border-radius:var(--radius-lg);margin-bottom:1.5rem;border:2px solid var(--primary-yellow);display:flex;justify-content:space-between;align-items:center;gap:1rem}.login-prompt-text{margin:0;color:var(--primary-black);font-size:.95rem}.login-prompt-text strong{font-weight:700}.filters-section{background:var(--bg-white);padding:1.5rem;border-radius:var(--radius-lg);margin-bottom:2rem;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.filters-header{display:flex;align-items:center;gap:.5rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem;font-size:1.05rem}.filters-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;align-items:end}.filter-group{display:flex;flex-direction:column}.filter-label{font-size:.875rem;font-weight:600;color:var(--primary-black);margin-bottom:.5rem}.reset-btn{align-self:end}.bikes-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:2rem}.no-results{background:var(--bg-white);padding:3rem 2rem;border-radius:var(--radius-lg);text-align:center;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.no-results-text{font-size:1.125rem;color:var(--text-secondary);margin-bottom:1.5rem}@media (max-width: 968px){.bikes-header{padding:2.5rem 0}.bikes-title{font-size:2rem}.bikes-grid{grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}}@media (max-width: 768px){.bikes-header{padding:2rem 0}.back-button{margin-bottom:.75rem}.bikes-title{font-size:1.75rem}.bikes-count{font-size:.95rem}.login-prompt{flex-direction:column;align-items:stretch;padding:1.25rem}.login-prompt .btn{width:100%}.filters-section{padding:1.25rem}.filters-grid{grid-template-columns:1fr}.reset-btn{align-self:stretch}.bikes-grid{grid-template-columns:repeat(2,1fr);gap:1.25rem}.no-results{padding:2.5rem 1.5rem}}@media (max-width: 640px){.bikes-header{padding:1.75rem 0}.bikes-title{font-size:1.6rem}.bikes-grid{grid-template-columns:repeat(2,1fr);gap:1rem}}@media (max-width: 480px){.bikes-header{padding:1.5rem 0}.bikes-title{font-size:1.5rem}.bikes-count{font-size:.875rem}.login-prompt{padding:1rem}.login-prompt-text{font-size:.875rem}.filters-section{padding:1rem}.filters-header{font-size:.95rem}.filter-label{font-size:.8125rem}.form-control{padding:.625rem .875rem;font-size:.875rem}.bikes-grid{grid-template-columns:repeat(2,1fr);gap:.875rem}.no-results{padding:2rem 1rem}.no-results-text{font-size:1rem}}@media (max-width: 430px){.bikes-page .container{padding:0 .75rem}.bikes-header{padding:1.5rem 0}.bikes-title{font-size:1.4rem}.bikes-count{font-size:.8125rem}.filters-section{padding:.875rem}.filters-header{font-size:.9rem}.filters-header svg{width:18px;height:18px}.bikes-grid{grid-template-columns:1fr;gap:1rem}.no-results{padding:1.75rem .875rem}.no-results-text{font-size:.95rem}}@media (max-width: 360px){.bikes-page .container{padding:0 .625rem}.bikes-title{font-size:1.35rem}.bikes-grid{grid-template-columns:1fr;gap:.875rem}}.bike-details-page{background:var(--bg-light);min-height:80vh;padding:2rem 0 3rem}.bike-image-container{position:relative;width:100%;height:350px;overflow:hidden;border-radius:10px}.bike-image{width:100%;height:100%;object-fit:cover}.slider-btn{position:absolute;top:50%;transform:translateY(-50%);background:#00000080;color:#fff;border:none;font-size:30px;padding:6px 12px;cursor:pointer;border-radius:50%}.bike-details-page .container{max-width:1280px;margin:0 auto;padding:0 1rem}.not-found{padding:3rem 1rem;text-align:center}.not-found h2{margin-bottom:1rem;color:var(--text-primary)}.back-button{margin-bottom:1.5rem;display:inline-flex;align-items:center;gap:.5rem}.details-card{background:var(--bg-white);border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-lg);border:1px solid var(--border-light)}.bike-image-container{position:relative;width:100%;height:500px;overflow:hidden}.bike-image{width:100%;height:100%;object-fit:cover;transition:.3s ease}.bike-image:hover{transform:scale(1.05)}.rating-badge{position:absolute;top:1.5rem;right:1.5rem;background:var(--bg-white);padding:.5rem 1rem;border-radius:var(--radius-full);display:flex;align-items:center;gap:.25rem;font-weight:600;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.rating-badge svg{color:#f59e0b}.details-content{padding:2rem}.title-section{margin-bottom:2rem;padding-bottom:2rem;border-bottom:2px solid var(--border-gray)}.bike-title{font-size:2rem;font-weight:700;color:var(--primary-black);margin-bottom:.5rem}.bike-info{font-size:1.125rem;color:var(--text-light);margin-bottom:1rem}.bike-price{font-size:2.25rem;font-weight:700;color:var(--primary-black)}.action-buttons{display:flex;gap:.75rem;margin-bottom:2rem;flex-wrap:wrap}.btn-large{padding:.875rem 1.75rem!important;font-size:1rem!important}.btn-outline-yellow{background:transparent;color:var(--primary-black);border-color:var(--border-gray)}.btn-outline-yellow:hover{background:var(--primary-black);color:var(--text-white);border-color:var(--primary-black);transform:translateY(-2px);box-shadow:0 4px 12px #00000026}.content-grid{display:grid;grid-template-columns:2fr 1fr;gap:2rem}.left-column{display:flex;flex-direction:column;gap:2rem}.section{display:flex;flex-direction:column}.section-heading{font-size:1.25rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid var(--border-gray)}.description-text{color:var(--text-secondary);line-height:1.8;font-size:1rem}.features-list{display:flex;flex-wrap:wrap;gap:.5rem}.feature-badge{display:inline-block;background:var(--bg-light);color:var(--primary-black);padding:.5rem 1rem;border-radius:var(--radius-md);font-size:.875rem;font-weight:600;border:1px solid var(--border-light);transition:.2s ease}.feature-badge:hover{background:var(--primary-black);color:var(--text-white);border-color:var(--primary-black);transform:translateY(-2px)}.specs-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}.spec-item{display:flex;flex-direction:column;padding:1rem;background:var(--bg-light);border-radius:var(--radius-md);border:1px solid var(--border-light);transition:.2s ease}.spec-item:hover{border-color:var(--border-gray);box-shadow:var(--shadow-sm)}.spec-label{color:var(--text-light);font-size:.875rem;margin-bottom:.25rem;font-weight:500}.spec-value{font-weight:700;color:var(--primary-black);font-size:1rem}.map-container{width:100%;height:400px;border-radius:var(--radius-lg);overflow:hidden;border:2px solid var(--border-light);box-shadow:var(--shadow-md)}.map-container iframe{width:100%;height:100%;border:none}.right-column{display:flex;flex-direction:column;gap:1.25rem}.info-card{background:var(--bg-light);padding:1.5rem;border-radius:var(--radius-lg);border:1px solid var(--border-light);transition:.2s ease}.info-card:hover{border-color:var(--border-gray);box-shadow:var(--shadow-sm)}.info-card-title{font-size:1rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem}.location-text{display:flex;align-items:center;gap:.5rem;color:var(--text-secondary);font-size:.95rem}.location-text svg{flex-shrink:0;color:var(--text-secondary)}.owner-info{display:flex;gap:.75rem;margin-bottom:1rem}.owner-avatar{width:48px;height:48px;border-radius:var(--radius-full);border:2px solid var(--border-gray);object-fit:cover}.owner-details{flex:1}.owner-name{font-weight:700;color:var(--primary-black);margin-bottom:.125rem;font-size:.95rem}.owner-role{font-size:.8125rem;color:var(--text-light)}.contact-details{display:flex;flex-direction:column;gap:.5rem}.contact-item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--text-secondary)}.contact-item svg{flex-shrink:0;color:var(--text-secondary)}.contact-item span{word-break:break-word}.login-prompt-card{background:var(--bg-light);padding:1.5rem;border-radius:var(--radius-lg);border:1px solid var(--border-light);text-align:center}.login-prompt-text{margin-bottom:1rem;font-weight:600;color:var(--primary-black);font-size:1rem}.btn-full{width:100%}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.5rem;font-size:1rem;font-weight:700;border-radius:var(--radius-md);border:2px solid transparent;cursor:pointer;transition:.2s ease;text-decoration:none;white-space:nowrap}.btn-primary{background:var(--primary-yellow);color:var(--primary-black);border-color:var(--primary-yellow)}.btn-primary:hover{background:var(--secondary-yellow);border-color:var(--secondary-yellow);transform:translateY(-2px);box-shadow:0 4px 12px #ffd70066}.btn-outline:hover{background:var(--bg-gray);border-color:var(--text-primary)}@media (max-width: 968px){.content-grid{grid-template-columns:1fr;gap:1.5rem}.right-column{order:-1}}@media (max-width: 768px){.bike-details-page{padding:1.5rem 0 2rem}.bike-image-container{height:350px}.details-content{padding:1.5rem}.bike-title{font-size:1.75rem}.bike-info{font-size:1rem}.bike-price{font-size:2rem}.title-section{padding-bottom:1.5rem}.map-container{height:300px}.action-buttons{flex-direction:column}.action-buttons .btn{width:100%}.specs-grid{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}}@media (max-width: 480px){.bike-details-page{padding:1rem 0}.bike-details-page .container{padding:0 .75rem}.back-button{margin-bottom:1rem}.bike-image-container{height:250px}.rating-badge{top:1rem;right:1rem;padding:.4rem .75rem;font-size:.875rem}.details-content{padding:1.25rem}.bike-title{font-size:1.5rem}.bike-info{font-size:.95rem}.bike-price{font-size:1.75rem}.title-section{margin-bottom:1.5rem;padding-bottom:1.25rem}.action-buttons{margin-bottom:1.5rem}.section{gap:1rem}.section-heading{font-size:1.125rem}.description-text{font-size:.95rem}.feature-badge{padding:.4rem .75rem;font-size:.8125rem}.specs-grid{grid-template-columns:1fr 1fr;gap:.75rem}.spec-item{padding:.75rem}.spec-label{font-size:.8125rem}.spec-value{font-size:.95rem}.map-container{height:250px}.info-card{padding:1.25rem}.info-card-title{font-size:.95rem}.owner-avatar{width:42px;height:42px}.contact-item{font-size:.8125rem}.login-prompt-text{font-size:.95rem}}@media (max-width: 360px){.bike-image-container{height:200px}.bike-title{font-size:1.25rem}.bike-price{font-size:1.5rem}.specs-grid{grid-template-columns:1fr}.rating-badge{padding:.375rem .625rem;font-size:.8125rem}}.payment-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#0009;display:flex;align-items:center;justify-content:center;z-index:9999;padding:1rem;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.payment-modal-content{background:var(--bg-white);border-radius:var(--radius-xl);width:100%;max-width:500px;max-height:90vh;overflow-y:auto;box-shadow:0 20px 60px #0000004d;padding:2rem;border:1px solid var(--border-light)}.modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.modal-title{font-size:1.5rem;font-weight:700;color:var(--primary-black);margin:0}.modal-close-btn{background:transparent;border:none;cursor:pointer;padding:.5rem;border-radius:var(--radius-md);transition:.2s ease;color:var(--text-secondary)}.modal-close-btn:hover{background:var(--bg-light);color:var(--primary-black)}.payment-summary{background:var(--bg-light);padding:1.5rem;border-radius:var(--radius-lg);margin-bottom:1.5rem;border:1px solid var(--border-light)}.summary-title{font-size:1rem;font-weight:600;color:var(--primary-black);margin-bottom:1rem}.summary-row{display:flex;justify-content:space-between;margin-bottom:.75rem}.summary-label{color:var(--text-secondary);font-size:.95rem}.summary-value{font-weight:600;color:var(--primary-black);font-size:.95rem}.summary-total{display:flex;justify-content:space-between;border-top:2px solid var(--border-gray);margin-top:1rem;padding-top:1rem}.total-label{font-weight:600;font-size:1.125rem;color:var(--primary-black)}.total-value{font-weight:700;font-size:1.5rem;color:var(--primary-black)}.payment-methods{margin-bottom:1.5rem}.methods-title{font-size:1rem;font-weight:600;color:var(--primary-black);margin-bottom:1rem}.methods-buttons{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}.method-btn{padding:1rem;border:2px solid var(--border-light);border-radius:var(--radius-md);background:var(--bg-white);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.5rem;font-weight:600;font-size:.95rem;color:var(--text-primary);transition:.2s ease}.method-btn:hover{border-color:var(--primary-black);background:var(--bg-light)}.method-btn.active{border-color:var(--primary-yellow);background:#ffd7001a;color:var(--primary-black)}.payment-form{display:flex;flex-direction:column;gap:1rem}.payment-error{color:#dc2626;font-size:.9rem;margin:0}.payment-loading{text-align:center;font-size:.95rem;color:var(--text-secondary);margin:1rem 0}.btn-payment{width:100%;margin-top:.5rem;padding:.875rem!important;font-size:1rem!important}.btn-payment:disabled{opacity:.6;cursor:not-allowed}.paypal-container{text-align:center;padding:2rem 1rem}.paypal-text{color:var(--text-secondary);margin-bottom:1.5rem;line-height:1.6}.security-text{text-align:center;font-size:.8125rem;color:var(--text-light);margin-top:1.25rem;margin-bottom:0}.success-container{text-align:center;padding:2.5rem 1rem}.success-icon{width:80px;height:80px;background:#d1fae5;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;color:#059669}.success-title{font-size:1.5rem;font-weight:700;color:var(--primary-black);margin-bottom:.75rem}.success-text{color:var(--text-secondary);margin:0}@media (max-width: 768px){.payment-modal-content{padding:1.75rem}.modal-title{font-size:1.35rem}.payment-summary{padding:1.25rem}.total-value{font-size:1.35rem}}@media (max-width: 480px){.payment-modal-overlay{padding:.5rem}.payment-modal-content{padding:1.5rem;max-height:95vh}.modal-header{margin-bottom:1.25rem}.modal-title{font-size:1.25rem}.modal-close-btn{padding:.375rem}.payment-summary{padding:1rem;margin-bottom:1.25rem}.summary-title,.methods-title{font-size:.95rem}.summary-label,.summary-value{font-size:.875rem}.total-label{font-size:1rem}.total-value{font-size:1.25rem}.methods-buttons{grid-template-columns:1fr;gap:.625rem}.method-btn{padding:.875rem;font-size:.9rem}.form-row{grid-template-columns:1fr;gap:.75rem}.btn-payment{padding:.75rem!important;font-size:.95rem!important}.paypal-container{padding:1.5rem .5rem}.paypal-text{font-size:.9rem;margin-bottom:1.25rem}.security-text{font-size:.75rem;margin-top:1rem}.success-container{padding:2rem .5rem}.success-icon{width:70px;height:70px}.success-icon svg{width:42px;height:42px}.success-title{font-size:1.25rem}.success-text{font-size:.9rem}}@media (max-width: 360px){.payment-modal-content{padding:1.25rem}.modal-title{font-size:1.15rem}.payment-summary{padding:.875rem}.total-value{font-size:1.15rem}.success-icon{width:60px;height:60px}.success-icon svg{width:36px;height:36px}}.post-bike-page{background:var(--bg-light);min-height:80vh;padding-bottom:3rem}.post-bike-header{background:var(--bg-white);padding:1.5rem 0;margin-bottom:2rem;box-shadow:var(--shadow-sm);border-bottom:2px solid var(--primary-yellow)}.image-preview-container{display:flex;flex-wrap:wrap;gap:10px;margin-top:15px}.image-wrapper{width:70px;height:70px}.image-preview.small{width:100%;height:100%;object-fit:cover;border-radius:6px;border:1px solid #ddd}.preview-image-slider{position:relative;width:100%;height:260px;overflow:hidden;border-radius:12px;margin-bottom:16px}.preview-image{width:100%;height:100%;object-fit:cover}.slider-btn{position:absolute;top:50%;transform:translateY(-50%);background:#0009;color:#fff;border:none;font-size:26px;padding:4px 10px;cursor:pointer;border-radius:50%}.slider-btn.left{left:10px}.slider-btn.right{right:10px}.image-preview-container{display:flex;flex-wrap:wrap;justify-content:center}.image-preview{width:250px;height:250px;border-radius:8px;object-fit:cover;border:1px solid #ddd}.page-title{font-size:2.25rem;font-weight:700;color:var(--primary-black);margin:0}.post-bike-error{background:var(--bg-light);min-height:80vh;display:flex;align-items:center;justify-content:center;padding:2rem 1rem}.error-card{background:var(--bg-white);padding:3rem 2rem;border-radius:var(--radius-xl);box-shadow:var(--shadow-lg);text-align:center;max-width:500px;border:1px solid var(--border-light)}.error-title{font-size:1.75rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem}.error-text{color:var(--text-secondary);margin-bottom:1.5rem;line-height:1.6}.progress-steps{background:var(--bg-white);padding:1.5rem;border-radius:var(--radius-lg);margin-bottom:2rem;display:flex;justify-content:center;gap:3rem;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.step-item{display:flex;align-items:center;gap:.75rem;opacity:.5;transition:.3s ease}.step-item.active{opacity:1}.step-circle{width:40px;height:40px;border-radius:var(--radius-full);background:var(--border-gray);color:var(--text-white);display:flex;align-items:center;justify-content:center;font-weight:700;transition:.3s ease}.step-item.active .step-circle{background:var(--primary-yellow);color:var(--primary-black)}.step-label{font-weight:600;color:var(--text-secondary);font-size:.95rem}.step-item.active .step-label{color:var(--primary-black)}.form-container{background:var(--bg-white);padding:2rem;border-radius:var(--radius-lg);max-width:800px;margin:0 auto;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.form-step{min-height:400px}.step-title{font-size:1.5rem;font-weight:700;color:var(--primary-black);margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:2px solid var(--primary-yellow)}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.mt-2{margin-top:.5rem}.upload-area{border:2px dashed var(--border-gray);border-radius:var(--radius-lg);padding:2rem;text-align:center;transition:.2s ease}.upload-area:hover{border-color:var(--primary-yellow);background:#ffd7000d}.upload-icon{color:var(--border-gray);margin-bottom:1rem}.upload-text{font-size:1rem;font-weight:600;color:var(--text-primary);margin-bottom:.5rem}.upload-subtext{font-size:.875rem;color:var(--text-light);margin-bottom:1.5rem}.preview-card{border:1px solid var(--border-light);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md)}.preview-image{width:100%;height:300px;object-fit:cover}.preview-content{padding:1.5rem}.preview-title{font-size:1.5rem;font-weight:700;color:var(--primary-black);margin-bottom:.5rem}.preview-info{font-size:1rem;color:var(--text-secondary);margin-bottom:.5rem}.preview-location{font-size:.95rem;color:var(--text-light);margin-bottom:1rem}.preview-pricing{margin-bottom:1rem}.preview-price{font-size:2rem;font-weight:700;color:var(--primary-yellow);margin-bottom:.5rem}.preview-rate-detail{font-size:.95rem;color:var(--text-secondary);margin-bottom:.25rem;font-weight:500}.preview-availability{font-size:.95rem;color:var(--text-secondary);margin-bottom:1rem;font-weight:500}.preview-description{font-size:.95rem;color:var(--text-secondary);line-height:1.7;margin:0}.form-navigation{display:flex;justify-content:space-between;margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--border-light)}.btn-next{margin-left:auto}@media (max-width: 768px){.post-bike-header{padding:1.25rem 0}.page-title{font-size:1.75rem}.progress-steps{gap:1.5rem;padding:1.25rem}.step-circle{width:36px;height:36px}.step-label{font-size:.875rem}.form-container{padding:1.5rem}.step-title{font-size:1.35rem}.form-row{grid-template-columns:1fr}.preview-image{height:250px}.preview-title{font-size:1.35rem}.preview-price{font-size:1.75rem}}@media (max-width: 480px){.post-bike-header{padding:1rem 0}.back-button{margin-bottom:.75rem}.page-title{font-size:1.5rem}.progress-steps{gap:1rem;padding:1rem;overflow-x:auto}.step-item{gap:.5rem;flex-shrink:0}.step-circle{width:32px;height:32px;font-size:.875rem}.step-label{font-size:.8125rem}.form-container{padding:1.25rem}.form-step{min-height:300px}.step-title{font-size:1.25rem;margin-bottom:1.25rem}.form-group{margin-bottom:1rem}.upload-area{padding:2rem 1rem}.upload-icon{width:40px;height:40px}.upload-text{font-size:.95rem}.upload-subtext{font-size:.8125rem}.preview-image{height:200px}.preview-content{padding:1.25rem}.preview-title{font-size:1.25rem}.preview-info{font-size:.95rem}.preview-price{font-size:1.5rem}.preview-rate-detail,.preview-availability,.preview-description{font-size:.875rem}.form-navigation{margin-top:1.5rem;padding-top:1.25rem}.form-navigation .btn{padding:.625rem 1rem;font-size:.875rem}.error-card{padding:2rem 1.5rem}.error-title{font-size:1.5rem}}@media (max-width: 360px){.page-title{font-size:1.35rem}.step-circle{width:28px;height:28px;font-size:.75rem}.step-label{display:none}.preview-title{font-size:1.15rem}.preview-price{font-size:1.35rem}}.membership-page{background:var(--bg-light);min-height:80vh;padding-bottom:3rem}.membership-hero{color:var(--text-white);padding:5rem 0;text-align:center;position:relative}.membership-hero .container{position:relative}.back-button-hero{position:absolute;top:-3rem;left:0;background:#fff3;color:var(--text-white);border-color:#fff6;z-index:10}.back-button-hero:hover{background:var(--primary-yellow);color:var(--primary-black);border-color:var(--primary-yellow)}.hero-title{font-size:3rem;font-weight:700;margin-bottom:1rem;color:var(--secondary-yellow)}.hero-subtitle{font-size:1.25rem;opacity:.9;color:#fff}.membership-card{max-width:800px;margin:-3rem auto 3rem;background:var(--bg-white);border-radius:var(--radius-xl);padding:3rem;text-align:center;box-shadow:var(--shadow-xl);border:1px solid var(--border-light)}.membership-title{font-size:2rem;font-weight:700;color:var(--primary-black);margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid var(--primary-yellow)}.price-section{margin-bottom:2rem}.price-amount{font-size:3rem;font-weight:700;color:var(--primary-yellow)}.price-period{font-size:1.125rem;color:var(--text-light)}.signup-fee-note{font-size:.95rem;color:var(--text-secondary);margin-top:-.5rem;margin-bottom:1.5rem}.membership-status{display:flex;align-items:center;gap:.75rem;padding:1rem;border-radius:var(--radius-lg);margin-bottom:1rem;border:1px solid transparent}.membership-status.active{background:#22c55e1a;border-color:#22c55e33;color:#15803d}.membership-status.expired{background:#f871711a;border-color:#f8717133;color:#b91c1c}.status-title{font-weight:600;margin-bottom:.25rem}.status-dates{margin:0;color:inherit}.link-button{background:none;border:none;color:var(--primary-yellow);cursor:pointer;font-weight:600;padding:0}.link-button:hover{text-decoration:underline}.benefits-section{margin-bottom:2rem;text-align:left}.benefits-title{font-size:1.25rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem}.benefits-list{list-style:none;padding:0;margin:0}.benefit-item{display:flex;align-items:center;gap:.75rem;padding:.75rem 0;border-bottom:1px solid var(--border-light)}.benefit-item:last-child{border-bottom:none}.benefit-icon{color:var(--primary-yellow);flex-shrink:0}.benefit-item span{color:var(--text-secondary);font-size:.95rem}.btn-join{width:100%;font-size:1.125rem;padding:1rem;margin-bottom:1rem}.membership-note{font-size:.875rem;color:var(--text-light);font-style:italic;margin:0}.payment-loading{text-align:center;color:var(--text-secondary);margin:1rem 0}.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1000px;margin:0 auto}.feature-box{background:var(--bg-white);padding:2rem;border-radius:var(--radius-lg);text-align:center;box-shadow:var(--shadow-md);border:1px solid var(--border-light);transition:.3s ease}.feature-box:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--primary-yellow)}.feature-icon-box{font-size:3rem;margin-bottom:1rem}.feature-title{font-size:1.25rem;font-weight:700;color:var(--primary-black);margin-bottom:.75rem}.feature-text{font-size:.95rem;color:var(--text-secondary);line-height:1.6;margin:0}@media (max-width: 968px){.membership-hero{padding:4rem 0 5rem}.back-button-hero{top:-2.5rem}}@media (max-width: 768px){.membership-hero{padding:2rem 0 4rem}.back-button-hero{position:static;display:inline-flex;margin-bottom:1.5rem}.hero-title{font-size:2.5rem}.hero-subtitle{font-size:1.1rem}.membership-card{margin:-2rem 1rem 2rem;padding:2rem}.membership-title{font-size:1.75rem}.price-amount{font-size:2.5rem}.price-period{font-size:1rem}.benefits-title{font-size:1.15rem}.btn-join{font-size:1rem;padding:.875rem}.features-grid{grid-template-columns:1fr;gap:1.5rem}}@media (max-width: 480px){.membership-hero{padding:1.5rem 0 3rem}.back-button-hero{margin-bottom:1rem}.hero-title{font-size:2rem}.hero-subtitle{font-size:1rem}.membership-card{margin:-1.5rem .5rem 2rem;padding:1.5rem}.membership-title{font-size:1.5rem;margin-bottom:1.5rem}.price-section{margin-bottom:1.5rem}.price-amount{font-size:2rem}.price-period{font-size:.95rem}.benefits-section{margin-bottom:1.5rem}.benefits-title{font-size:1.05rem;margin-bottom:.75rem}.benefit-item{padding:.625rem 0}.benefit-icon{width:18px;height:18px}.benefit-item span{font-size:.875rem}.btn-join{font-size:.95rem;padding:.75rem}.membership-note{font-size:.8125rem}.feature-box{padding:1.5rem}.feature-icon-box{font-size:2.5rem}.feature-title{font-size:1.15rem}.feature-text{font-size:.875rem}}@media (max-width: 360px){.hero-title{font-size:1.75rem}.membership-card{padding:1.25rem}.membership-title{font-size:1.35rem}.price-amount{font-size:1.75rem}.feature-icon-box{font-size:2rem}}.dashboard-header{background:var(--primary-black);padding:3rem 0;color:var(--text-white)}.badge-owner{background:#ffd70033;color:var(--primary-yellow);border:1px solid var(--primary-yellow);margin-bottom:.75rem;display:inline-block}.dashboard-title{font-size:2.25rem;margin-bottom:.5rem;font-weight:700;color:var(--text-white)}.dashboard-subtitle{opacity:.9;font-size:1.05rem;color:var(--text-white)}.btn-switch{background:var(--secondary-yellow)!important;color:var(--primary-black);border-color:var(--secondary-yellow);font-weight:700;max-width:12rem}.btn-switch:hover{background:var(--secondary-yellow);border-color:var(--secondary-yellow);color:var(--primary-black);transform:translateY(-2px);box-shadow:0 4px 12px #ffd70066}.current-listings-section{background:var(--bg-white);padding:1.5rem;border-radius:var(--radius-lg);margin-bottom:2rem;box-shadow:var(--shadow-md);border:1px solid var(--border-light);text-align:center}.owner-dashboard-page{background:var(--bg-light);min-height:80vh;padding-bottom:3rem}.dashboard-header{background:var(--primary-black)!important;padding:3rem 0;color:var(--text-white)}.header-content{display:flex;justify-content:space-between;align-items:center}.header-left{flex:1}.badge-owner{background:#ffd70033!important;color:var(--primary-yellow)!important;border:1px solid var(--primary-yellow)!important;margin-bottom:.75rem;display:inline-block}.dashboard-title{font-size:2.25rem;margin-bottom:.5rem;font-weight:700;color:var(--text-white)!important}.dashboard-subtitle{opacity:.9;font-size:1.05rem;color:var(--text-white)!important}.btn-switch{background:var(--primary-yellow)!important;color:var(--primary-black)!important;border-color:var(--primary-yellow)!important;font-weight:700}.btn-switch:hover{background:var(--secondary-yellow)!important;border-color:var(--secondary-yellow)!important;color:var(--primary-black)!important;transform:translateY(-2px);box-shadow:0 4px 12px #ffd70066}.dashboard-container{margin-top:-2.5rem}.stat-icon.earnings{background:#d1fae5;color:#059669}.stat-icon.listings{background:#dbeafe;color:#2563eb}.stat-icon.bookings{background:#ede9fe;color:#7c3aed}.stat-icon.pending{background:#fef3c7;color:#d97706}.actions-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}.current-listings-section{background:var(--bg-white);padding:1.5rem;border-radius:var(--radius-lg);margin-bottom:2rem;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.listings-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}.listing-card{background:var(--bg-white);border:1px solid var(--border-light);border-radius:var(--radius-lg);overflow:hidden;transition:.3s ease;box-shadow:var(--shadow-sm)}.listing-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--primary-yellow)}.listing-image{width:100%;height:180px;object-fit:cover}.listing-content{padding:1rem}.listing-name{font-size:1.05rem;font-weight:700;color:var(--primary-black);margin-bottom:.25rem}.listing-info{font-size:.875rem;color:var(--text-secondary);margin-bottom:.25rem}.listing-location{font-size:.8125rem;color:var(--text-light);margin-bottom:.75rem}.listing-price{font-size:1.25rem;font-weight:700;color:var(--primary-yellow);margin-bottom:1rem}.listing-actions{display:flex;flex-direction:column;gap:.5rem}.listing-action-btn{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;width:100%}.btn-outline-secondary{background:transparent;color:var(--text-secondary);border:2px solid var(--border-gray)}.btn-outline-secondary:hover{background:var(--bg-gray);border-color:var(--text-secondary);color:var(--text-primary)}.btn-outline-danger{background:transparent;color:var(--error-red);border:2px solid var(--error-red)}.btn-outline-danger:hover{background:var(--error-red);color:var(--text-white);border-color:var(--error-red)}.bookings-section{background:var(--bg-white);padding:1.5rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.bookings-list{display:flex;flex-direction:column}.booking-item{padding:1rem;border-bottom:1px solid var(--border-light);display:flex;gap:1rem;align-items:center;transition:.2s ease}.booking-item:last-child{border-bottom:none}.booking-item:hover{background:var(--bg-light);border-radius:var(--radius-md)}.booking-bike-image{width:80px;height:80px;border-radius:var(--radius-md);object-fit:cover;border:2px solid var(--border-light)}.booking-details{flex:1}.booking-bike-name{font-size:1rem;font-weight:600;color:var(--primary-black);margin-bottom:.25rem}.booking-renter{font-size:.875rem;color:var(--text-secondary);margin-bottom:.125rem}.booking-dates{font-size:.8125rem;color:var(--text-light)}.booking-right{text-align:right;display:flex;flex-direction:column;gap:.5rem;align-items:flex-end}.booking-amount{font-size:1.125rem;font-weight:700;color:#059669}@media (max-width: 968px){.stats-grid,.actions-grid,.listings-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width: 768px){.dashboard-header{padding:2rem 0}.header-content{flex-direction:column;gap:1.5rem;align-items:flex-start}.dashboard-title{font-size:1.75rem}.dashboard-subtitle{font-size:.95rem}.btn-switch{width:100%}.dashboard-container{margin-top:-1.5rem}.stats-grid{gap:1rem}.stat-card{padding:1.25rem}.stat-icon{width:48px;height:48px}.stat-icon svg{width:28px;height:28px}.stat-value{font-size:1.5rem}.quick-actions-section,.current-listings-section,.bookings-section{padding:1.25rem}.section-title{font-size:1.15rem}.actions-grid{gap:.75rem}.listings-grid{grid-template-columns:1fr;gap:1rem}.booking-bike-image{width:70px;height:70px}}@media (max-width: 480px){.dashboard-header{padding:1.5rem 0}.dashboard-title{font-size:1.5rem}.dashboard-subtitle{font-size:.9rem}.stats-grid{grid-template-columns:1fr;gap:.75rem}.stat-card{padding:1rem}.stat-icon{width:44px;height:44px}.stat-icon svg{width:24px;height:24px}.stat-value{font-size:1.35rem}.stat-label{font-size:.8125rem}.quick-actions-section,.current-listings-section,.bookings-section{padding:1rem}.section-title{font-size:1.05rem;margin-bottom:1rem}.actions-grid{grid-template-columns:1fr;gap:.625rem}.action-btn{padding:.625rem 1rem;font-size:.9rem}.listings-grid{gap:.875rem}.listing-image{height:160px}.listing-name{font-size:1rem}.listing-price{font-size:1.15rem}.listing-action-btn{padding:.5rem .875rem;font-size:.8125rem}.booking-item{padding:.875rem;gap:.75rem}.booking-bike-image{width:60px;height:60px}.booking-bike-name{font-size:.95rem}.booking-renter{font-size:.8125rem}.booking-dates{font-size:.75rem}.booking-amount{font-size:1rem}}@media (max-width: 360px){.dashboard-title{font-size:1.35rem}.stat-value{font-size:1.25rem}.listing-image{height:140px}.booking-bike-image{width:50px;height:50px}.booking-right{align-items:center}}.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-bottom:2rem}.stat-card{background:var(--bg-white);padding:1.5rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);border:1px solid var(--border-light);transition:.2s ease}.stat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--primary-yellow)}.stat-icon{width:56px;height:56px;border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;margin-bottom:.75rem}.stat-icon.rentals{background:#d1fae5;color:#059669}.stat-icon.trips{background:#dbeafe;color:#2563eb}.stat-icon.favorites{background:#fef3c7;color:#d97706}.stat-icon.chats{background:#ede9fe;color:#7c3aed}.stat-value{font-size:1.75rem;font-weight:700;color:var(--primary-black);margin-bottom:.25rem}.stat-label{font-size:.875rem;color:var(--text-light);font-weight:500}.quick-actions-section{background:var(--bg-white);padding:1.5rem;border-radius:var(--radius-lg);margin-bottom:2rem;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.section-title{font-size:1.25rem;font-weight:700;color:var(--primary-black);margin-bottom:1.25rem}.actions-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}.action-btn{display:flex;align-items:center;gap:.5rem;justify-content:center;padding:.75rem 1rem}.rentals-section{background:var(--bg-white);padding:1.5rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.rentals-list{display:flex;flex-direction:column}.rental-item{padding:1rem;border-bottom:1px solid var(--border-light);display:flex;gap:1rem;align-items:center;transition:.2s ease}.rental-item:last-child{border-bottom:none}.rental-item:hover{background:var(--bg-light);border-radius:var(--radius-md)}.rental-bike-image{width:80px;height:80px;border-radius:var(--radius-md);object-fit:cover;border:2px solid var(--border-light)}.rental-details{flex:1}.rental-bike-name{font-size:1rem;font-weight:600;color:var(--primary-black);margin-bottom:.25rem}.rental-owner{font-size:.875rem;color:var(--text-secondary);margin-bottom:.125rem}.rental-dates{font-size:.8125rem;color:var(--text-light)}.rental-right{text-align:right;display:flex;flex-direction:column;gap:.5rem;align-items:flex-end}.rental-amount{font-size:1.125rem;font-weight:700;color:#059669}.badge-warning{background:#fef3c7;color:#92400e;border:1px solid #FCD34D}@media (max-width: 968px){.stats-grid,.actions-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width: 768px){.dashboard-header{padding:2rem 0}.header-content{flex-direction:column;gap:1.5rem;align-items:flex-start}.dashboard-title{font-size:1.75rem}.dashboard-subtitle{font-size:.95rem}.btn-switch{width:100%}.dashboard-container{margin-top:-1.5rem}.stats-grid{gap:1rem}.stat-card{padding:1.25rem}.stat-icon{width:48px;height:48px}.stat-icon svg{width:28px;height:28px}.stat-value{font-size:1.5rem}.quick-actions-section,.rentals-section{padding:1.25rem}.section-title{font-size:1.15rem}.actions-grid{gap:.75rem}.rental-bike-image{width:70px;height:70px}}@media (max-width: 480px){.dashboard-header{padding:1.5rem 0}.dashboard-title{font-size:1.5rem}.dashboard-subtitle{font-size:.9rem}.stats-grid{grid-template-columns:1fr;gap:.75rem}.stat-card{padding:1rem}.stat-icon{width:44px;height:44px}.stat-icon svg{width:24px;height:24px}.stat-value{font-size:1.35rem}.stat-label{font-size:.8125rem}.quick-actions-section,.rentals-section{padding:1rem}.section-title{font-size:1.05rem;margin-bottom:1rem}.actions-grid{grid-template-columns:1fr;gap:.625rem}.action-btn{padding:.625rem 1rem;font-size:.9rem}.rental-item{padding:.875rem;gap:.75rem}.rental-bike-image{width:60px;height:60px}.rental-bike-name{font-size:.95rem}.rental-owner{font-size:.8125rem}.rental-dates{font-size:.75rem}.rental-amount{font-size:1rem}}@media (max-width: 360px){.dashboard-title{font-size:1.35rem}.stat-value{font-size:1.25rem}.rental-bike-image{width:50px;height:50px}.rental-right{align-items:center}}.messages-page{background:var(--bg-light);min-height:80vh;padding-bottom:3rem}.messages-header{background:var(--bg-white);padding:1.5rem 0;margin-bottom:2rem;box-shadow:var(--shadow-sm);border-bottom:2px solid var(--primary-yellow)}.messages-header .back-button{margin-bottom:1rem;display:inline-flex;align-items:center;gap:.5rem}.messages-title{font-size:2rem;font-weight:700;color:var(--primary-black);margin:0}.chat-container{display:grid;grid-template-columns:380px 1fr;background:var(--bg-white);border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-lg);border:1px solid var(--border-light);height:70vh}.chat-sidebar{border-right:1px solid var(--border-light);display:flex;flex-direction:column;background:var(--bg-white);height:calc(70vh - 5px)}.sidebar-search{padding:1.25rem;border-bottom:1px solid var(--border-light)}.search-wrapper{position:relative}.search-icon{position:absolute;left:.75rem;top:50%;transform:translateY(-50%);color:var(--text-light);pointer-events:none}.search-input{width:100%;padding:.625rem .625rem .625rem 2.5rem;border:1px solid var(--border-light);border-radius:var(--radius-md);font-size:.95rem;transition:.2s ease}.search-input:focus{outline:none;border-color:var(--primary-yellow);box-shadow:0 0 0 3px #ffd7001a}.chat-list{overflow-y:auto;flex:1}.chat-item{padding:1rem 1.25rem;border-bottom:1px solid var(--border-light);cursor:pointer;background:var(--bg-white);transition:.2s ease}.chat-item:hover{background:var(--bg-light)}.chat-item.active{background:#ffd7001a;border-left:3px solid var(--primary-yellow)}.chat-item-content{display:flex;gap:.75rem}.chat-avatar-wrapper{position:relative;flex-shrink:0}.chat-avatar{width:48px;height:48px;border-radius:var(--radius-full);object-fit:cover;border:2px solid var(--border-light)}.unread-badge{position:absolute;top:-4px;right:-4px;width:20px;height:20px;background:var(--primary-yellow);color:var(--primary-black);border-radius:var(--radius-full);font-size:.6875rem;display:flex;align-items:center;justify-content:center;font-weight:700;border:2px solid var(--bg-white)}.chat-info{flex:1;min-width:0}.chat-header-row{display:flex;justify-content:space-between;margin-bottom:.25rem}.chat-name{font-size:.9375rem;font-weight:600;color:var(--primary-black);margin:0}.chat-time{font-size:.75rem;color:var(--text-light);flex-shrink:0}.chat-bike-name{font-size:.8125rem;color:var(--text-secondary);margin-bottom:.125rem}.chat-last-message{font-size:.8125rem;color:var(--text-light);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin:0}.chat-main{display:flex;flex-direction:column;height:calc(70vh - 5px)}.chat-main-header{padding:1rem 1.25rem;border-bottom:1px solid var(--border-light);display:flex;justify-content:space-between;align-items:center;background:var(--bg-white)}.header-user-info{display:flex;gap:.75rem;align-items:center}.header-avatar{width:48px;height:48px;border-radius:var(--radius-full);object-fit:cover;border:2px solid var(--primary-yellow)}.header-details{flex:1}.header-name{font-size:1.125rem;font-weight:700;color:var(--primary-black);margin-bottom:.125rem}.header-bike{font-size:.8125rem;color:var(--text-light);margin:0}.header-more-btn{background:transparent;border:none;cursor:pointer;padding:.5rem;border-radius:var(--radius-md);color:var(--text-secondary);transition:.2s ease}.header-more-btn:hover{background:var(--bg-light);color:var(--primary-black)}.chat-messages{flex:1;overflow-y:auto;padding:1.5rem;background:var(--bg-light);display:flex;flex-direction:column;gap:1rem}.message{display:flex;gap:.5rem;max-width:70%}.message-sent{align-self:flex-end;flex-direction:row-reverse}.message-received{align-self:flex-start}.message-avatar{width:32px;height:32px;border-radius:var(--radius-full);object-fit:cover;flex-shrink:0}.message-content{display:flex;flex-direction:column;gap:.25rem}.single-check{font-size:12px;color:gray;margin-left:6px}.double-check{font-size:12px;color:#2b8cff;margin-left:6px}.message-bubble{padding:.75rem 1rem;border-radius:var(--radius-lg);font-size:.95rem;line-height:1.5;word-wrap:break-word}.message-sent .message-bubble{background:var(--primary-black);color:var(--text-white);border-bottom-right-radius:.25rem}.message-received .message-bubble{background:var(--bg-white);color:var(--primary-black);border:1px solid var(--border-light);border-bottom-left-radius:.25rem}.message-time{font-size:.6875rem;color:var(--text-light);padding:0 .25rem}.message-sent .message-time{text-align:right}.message-received .message-time{text-align:left}.chat-input-area{padding:1rem 1.25rem;border-top:1px solid var(--border-light);background:var(--bg-white)}.chat-input-wrapper{display:flex;gap:.75rem;align-items:center}.chat-input{flex:1;padding:.75rem 1rem;border:1px solid var(--border-light);border-radius:var(--radius-md);font-size:.95rem;transition:.2s ease}.chat-input:focus{outline:none;border-color:var(--primary-yellow);box-shadow:0 0 0 3px #ffd7001a}.send-btn{padding:.75rem 1.5rem;flex-shrink:0}.chat-empty{display:flex;align-items:center;justify-content:center;height:100%;color:var(--text-light);font-size:1rem}.chat-list::-webkit-scrollbar,.chat-messages::-webkit-scrollbar{width:6px}.chat-list::-webkit-scrollbar-track,.chat-messages::-webkit-scrollbar-track{background:var(--bg-light)}.chat-list::-webkit-scrollbar-thumb,.chat-messages::-webkit-scrollbar-thumb{background:var(--border-gray);border-radius:3px}.chat-list::-webkit-scrollbar-thumb:hover,.chat-messages::-webkit-scrollbar-thumb:hover{background:var(--text-light)}@media (max-width: 968px){.chat-container{grid-template-columns:320px 1fr;height:65vh}}@media (max-width: 768px){.messages-header{padding:1.25rem 0}.messages-header .back-button{margin-bottom:.75rem}.messages-title{font-size:1.75rem}.chat-container{grid-template-columns:1fr;height:auto;min-height:65vh}.chat-sidebar{border-right:none;border-bottom:1px solid var(--border-light);max-height:50vh}.chat-main{min-height:50vh}.message{max-width:85%}}@media (max-width: 480px){.messages-header{padding:1rem 0}.messages-title{font-size:1.5rem}.chat-container{border-radius:var(--radius-lg)}.sidebar-search{padding:1rem}.search-input{font-size:.875rem;padding:.5rem .5rem .5rem 2.25rem}.chat-item{padding:.875rem 1rem}.chat-avatar{width:42px;height:42px}.chat-name{font-size:.875rem}.chat-time{font-size:.6875rem}.chat-bike-name,.chat-last-message{font-size:.75rem}.chat-main-header{padding:.875rem 1rem}.header-avatar{width:42px;height:42px}.header-name{font-size:1rem}.header-bike{font-size:.75rem}.chat-messages{padding:1rem;gap:.75rem}.message{max-width:90%}.message-bubble{padding:.625rem .875rem;font-size:.875rem}.message-time{font-size:.625rem}.chat-input-area{padding:.875rem 1rem}.chat-input-wrapper{gap:.5rem}.chat-input{padding:.625rem .875rem;font-size:.875rem}.send-btn{padding:.625rem 1rem}.send-btn svg{width:16px;height:16px}}.settings-page{background:var(--bg-light);min-height:80vh;padding-bottom:3rem}.settings-header{background:var(--bg-white);padding:1.5rem 0;margin-bottom:2rem;box-shadow:var(--shadow-sm);border-bottom:2px solid var(--primary-yellow)}.back-button{margin-bottom:1rem;display:inline-flex;align-items:center;gap:.5rem}.settings-title{font-size:2rem;font-weight:700;color:var(--primary-black);margin:0}.settings-container{max-width:800px;margin:0 auto}.settings-tabs{display:flex;gap:1rem;margin-bottom:2rem;border-bottom:2px solid var(--border-light)}.tab-button{padding:.75rem 1.5rem;background:transparent;border:none;border-bottom:3px solid transparent;color:var(--text-light);font-weight:600;cursor:pointer;margin-bottom:-2px;display:flex;align-items:center;gap:.5rem;font-size:.95rem;transition:.2s ease}.tab-button:hover{color:var(--primary-black)}.tab-button.active{border-bottom-color:var(--primary-yellow);color:var(--primary-black)}.settings-form{background:var(--bg-white);padding:2rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.form-title{font-size:1.5rem;font-weight:700;color:var(--primary-black);margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:2px solid var(--primary-yellow)}.btn-full{width:100%;margin-top:1.5rem}.profile-picture-section{display:flex;align-items:center;gap:1rem;padding:1rem;background:var(--bg-light);border-radius:var(--radius-md);border:1px solid var(--border-light)}.profile-picture{width:80px;height:80px;border-radius:var(--radius-full);border:3px solid var(--primary-yellow);object-fit:cover}.password-tip{margin-top:1.5rem;padding:1rem;background:#fef3c7;border-radius:var(--radius-md);border:1px solid var(--primary-yellow)}.tip-text{font-size:.875rem;margin:0;color:var(--text-primary);line-height:1.6}.tip-text strong{color:var(--primary-black)}@media (max-width: 768px){.settings-header{padding:1.25rem 0}.settings-title{font-size:1.75rem}.settings-tabs{gap:.5rem}.tab-button{padding:.625rem 1rem;font-size:.875rem}.tab-button svg{width:16px;height:16px}.settings-form{padding:1.5rem}.form-title{font-size:1.35rem}.profile-picture-section{flex-direction:column;align-items:flex-start;gap:1rem}.profile-picture-section .btn{width:100%}}@media (max-width: 480px){.settings-header{padding:1rem 0}.back-button{margin-bottom:.75rem}.settings-title{font-size:1.5rem}.settings-container{padding:0 .5rem}.settings-tabs{margin-bottom:1.5rem}.tab-button{padding:.5rem .75rem;font-size:.8125rem;flex:1;justify-content:center}.settings-form{padding:1.25rem}.form-title{font-size:1.25rem;margin-bottom:1.25rem}.form-group{margin-bottom:1rem}.form-label{font-size:.875rem}.form-control{padding:.625rem .875rem;font-size:.95rem}.form-help{font-size:.75rem}.profile-picture{width:70px;height:70px}.btn-full{margin-top:1.25rem;padding:.75rem}.password-tip{padding:.875rem;margin-top:1.25rem}.tip-text{font-size:.8125rem}}@media (max-width: 360px){.settings-title{font-size:1.35rem}.tab-button{padding:.5rem;font-size:.75rem;gap:.25rem}.form-title{font-size:1.15rem}.profile-picture{width:60px;height:60px}}.faq-page{background:var(--bg-light);min-height:80vh;padding:80px 20px}.faq-header{text-align:center;margin-bottom:4rem}.faq-title{font-size:2.75rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem}.faq-subtitle{font-size:1.15rem;color:var(--text-secondary);max-width:600px;margin:0 auto}.faq-list{max-width:900px;margin:0 auto 4rem}.faq-item{background:var(--bg-white);border:1px solid var(--border-light);border-radius:var(--radius-lg);margin-bottom:1rem;transition:.3s ease;overflow:hidden}.faq-item:hover,.faq-item.active{border-color:var(--primary-yellow);box-shadow:var(--shadow-md)}.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;padding:1.5rem;background:none;border:none;cursor:pointer;font-size:1.1rem;font-weight:600;color:var(--primary-black);text-align:left;transition:.2s ease}.faq-question:hover{color:var(--primary-yellow)}.faq-question span{flex:1;padding-right:1rem}.faq-icon{flex-shrink:0;color:var(--primary-yellow);transition:.3s ease}.faq-answer{padding:0 1.5rem 1.5rem;color:var(--text-secondary);line-height:1.8;animation:fadeIn .3s ease}.faq-answer p{margin:0;font-size:1rem}.faq-download-link{display:inline-flex;align-items:center;gap:.5rem;color:var(--primary-yellow);background:none;border:none;cursor:pointer;font-size:1rem;font-weight:600;text-decoration:underline;padding:0;margin-top:.5rem;transition:.2s ease}.faq-download-link:hover{color:var(--secondary-yellow);transform:translate(2px)}.faq-download-btn-container{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border-light)}.faq-contact{background:var(--bg-white);padding:3rem 2rem;border-radius:var(--radius-xl);text-align:center;max-width:700px;margin:0 auto;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.faq-contact-title{font-size:1.75rem;font-weight:700;color:var(--primary-black);margin-bottom:1rem}.faq-contact-text{color:var(--text-secondary);font-size:1rem;line-height:1.6;margin-bottom:1.5rem}@keyframes fadeIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}@media (max-width: 768px){.faq-page{padding:60px 20px}.faq-header{margin-bottom:3rem}.faq-title{font-size:2.25rem}.faq-subtitle{font-size:1rem}.faq-list{margin-bottom:3rem}.faq-question{padding:1.25rem;font-size:1rem}.faq-answer{padding:0 1.25rem 1.25rem;font-size:.95rem}.faq-download-link{font-size:.95rem}.faq-contact{padding:2.5rem 1.75rem}.faq-contact-title{font-size:1.5rem}.faq-contact-text{font-size:.95rem}}@media (max-width: 480px){.faq-page{padding:50px 15px}.faq-header{margin-bottom:2.5rem}.faq-title{font-size:1.875rem}.faq-subtitle{font-size:.95rem}.faq-list{margin-bottom:2.5rem}.faq-item{margin-bottom:.75rem}.faq-question{padding:1rem;font-size:.95rem}.faq-question span{padding-right:.75rem}.faq-icon{width:20px;height:20px}.faq-answer{padding:0 1rem 1rem;font-size:.9rem;line-height:1.7}.faq-download-link{font-size:.9rem}.faq-download-btn-container{margin-top:.75rem;padding-top:.75rem}.faq-contact{padding:2rem 1.5rem}.faq-contact-title{font-size:1.35rem}.faq-contact-text{font-size:.9rem}.btn{font-size:.9rem;padding:.625rem 1.25rem}}@media (max-width: 360px){.faq-title{font-size:1.625rem}.faq-subtitle{font-size:.875rem}.faq-question{padding:.875rem;font-size:.875rem}.faq-answer{padding:0 .875rem .875rem;font-size:.875rem}.faq-download-link{font-size:.875rem}.faq-contact{padding:1.75rem 1.25rem}.faq-contact-title{font-size:1.25rem}}.legal-page{min-height:100vh;padding:80px 20px;background:var(--bg-light)}.legal-page .container{max-width:900px;margin:0 auto}.legal-header{text-align:center;margin-bottom:3rem;padding-bottom:2rem;border-bottom:3px solid var(--primary-yellow)}.legal-title{font-size:3rem;font-weight:700;color:var(--primary-black);margin-bottom:.5rem}.legal-date{font-size:1rem;color:var(--text-light);font-style:italic}.legal-content{background:var(--bg-white);border-radius:var(--radius-lg);padding:3rem;box-shadow:var(--shadow-md);border:1px solid var(--border-light)}.legal-intro{margin-bottom:3rem;padding:1.5rem;background:#ffd7001a;border-left:4px solid var(--primary-yellow);border-radius:var(--radius-md)}.legal-intro p{color:var(--text-secondary);line-height:1.8;font-size:1.05rem;margin-bottom:1rem}.legal-intro p:last-child{margin-bottom:0}.legal-section{margin-bottom:2.5rem;padding-bottom:2rem;border-bottom:1px solid var(--border-light)}.legal-section:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}.legal-section-title{font-size:1.75rem;font-weight:700;color:var(--primary-black);margin-bottom:1.25rem}.legal-subsection-title{font-size:1.25rem;font-weight:600;color:var(--primary-black);margin-top:1.5rem;margin-bottom:1rem}.legal-section p{color:var(--text-secondary);line-height:1.8;font-size:1rem;margin-bottom:1rem}.legal-section p:last-child{margin-bottom:0}.legal-section ul{margin:1rem 0;padding-left:1.5rem}.legal-section li{color:var(--text-secondary);line-height:1.8;font-size:1rem;margin-bottom:.75rem}.legal-section li:last-child{margin-bottom:0}.legal-section.highlight{background:#ffd7001a;padding:2rem;border-radius:var(--radius-lg);border:2px solid var(--primary-yellow);border-bottom:2px solid var(--primary-yellow)}.highlight-text{font-weight:600;color:var(--primary-black);background:#ffd70033;padding:.75rem 1rem;border-radius:var(--radius-md);border-left:4px solid var(--primary-yellow)}.contact-email{font-weight:600;color:var(--primary-yellow);font-size:1.1rem;margin-top:.5rem}@media (max-width: 768px){.legal-page{padding:60px 20px}.legal-title{font-size:2.5rem}.legal-content{padding:2rem}.legal-section-title{font-size:1.5rem}.legal-subsection-title{font-size:1.15rem}.legal-intro p,.legal-section p,.legal-section li{font-size:.95rem}}@media (max-width: 480px){.legal-page{padding:50px 15px}.legal-title{font-size:2rem}.legal-date{font-size:.9rem}.legal-content{padding:1.5rem}.legal-intro{padding:1rem}.legal-section{margin-bottom:2rem;padding-bottom:1.5rem}.legal-section-title{font-size:1.35rem}.legal-subsection-title{font-size:1.1rem}.legal-intro p,.legal-section p,.legal-section li{font-size:.9rem;line-height:1.7}.legal-section ul{padding-left:1.25rem}.legal-section.highlight{padding:1.5rem}.highlight-text{padding:.625rem .875rem;font-size:.9rem}.contact-email{font-size:1rem}}@media print{.legal-page{background:#fff;padding:20px}.legal-header{border-bottom:2px solid black}.legal-content{box-shadow:none;border:1px solid black}.legal-section.highlight{border:2px solid black;background:#f5f5f5}}.payment-status-page{min-height:70vh;display:flex;align-items:center;justify-content:center;padding:2rem 1rem;background:#f7f8fb}.status-card{background:#fff;border-radius:16px;padding:2.5rem;max-width:520px;width:100%;box-shadow:0 20px 60px #0f172a1a;text-align:center}.status-icon{width:96px;height:96px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}.status-icon.success{background:#22c55e1a;color:#16a34a}.status-icon.cancelled{background:#ef44441a;color:#dc2626}.status-card h1{font-size:1.75rem;margin-bottom:1rem;color:#0f172a}.status-card p{color:#475569;margin-bottom:.5rem}.session-id{font-size:.9rem;color:#94a3b8;word-break:break-all;margin-top:.5rem}.status-actions{margin-top:2rem;display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}.status-actions .btn{min-width:150px}:root{--primary-yellow: #FFD700;--primary-black: #000000;--secondary-yellow: #FFC700;--dark-gray: #1a1a1a;--bg-white: #ffffff;--bg-light: #f9f9f9;--bg-gray: #f3f4f6;--bg-dark: #0a0a0a;--text-primary: #000000;--text-secondary: #4a4a4a;--text-light: #6b7280;--text-white: #ffffff;--border-light: #e5e7eb;--border-gray: #d1d5db;--border-dark: #374151;--success-green: #10b981;--error-red: #ef4444;--warning-orange: #f59e0b;--info-blue: #3b82f6;--shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);--shadow-md: 0 4px 6px rgba(0, 0, 0, .1);--shadow-lg: 0 10px 15px rgba(0, 0, 0, .1);--shadow-xl: 0 20px 25px rgba(0, 0, 0, .15);--radius-sm: .375rem;--radius-md: .5rem;--radius-lg: .75rem;--radius-xl: 1rem;--radius-full: 9999px;--spacing-xs: .25rem;--spacing-sm: .5rem;--spacing-md: 1rem;--spacing-lg: 1.5rem;--spacing-xl: 2rem;--spacing-2xl: 3rem;--text-xs: .75rem;--text-sm: .875rem;--text-base: 1rem;--text-lg: 1.125rem;--text-xl: 1.25rem;--text-2xl: 1.5rem;--text-3xl: 1.875rem;--text-4xl: 2.25rem;--text-5xl: 3rem;--transition-fast: .15s ease;--transition-base: .2s ease;--transition-slow: .3s ease;--z-dropdown: 1000;--z-sticky: 1020;--z-fixed: 1030;--z-modal-backdrop: 1040;--z-modal: 1050;--z-popover: 1060;--z-tooltip: 1070}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;background-color:var(--bg-white);color:var(--text-primary);line-height:1.6;font-size:var(--text-base);min-height:100vh}h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2;color:var(--text-primary);margin-bottom:var(--spacing-md)}h1{font-size:var(--text-4xl)}h2{font-size:var(--text-3xl)}h3{font-size:var(--text-2xl)}h4{font-size:var(--text-xl)}h5{font-size:var(--text-lg)}h6{font-size:var(--text-base)}p{margin-bottom:var(--spacing-md);color:var(--text-secondary)}a{color:var(--primary-yellow);text-decoration:none;transition:var(--transition-base)}a:hover{color:var(--secondary-yellow)}.container{width:100%;max-width:1280px;margin:0 auto;padding:0 var(--spacing-md)}.container-fluid{width:100%;padding:0 var(--spacing-md)}.container-sm{max-width:640px}.container-md{max-width:768px}.container-lg{max-width:1024px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:var(--spacing-sm);padding:.625rem 1.25rem;font-size:var(--text-base);font-weight:600;border-radius:var(--radius-md);border:2px solid transparent;cursor:pointer;transition:var(--transition-base);text-decoration:none;white-space:nowrap;background:transparent;font-family:inherit}.btn:disabled{opacity:.5;cursor:not-allowed}.btn-primary{background:var(--primary-yellow);color:var(--primary-black);border-color:var(--primary-yellow);font-weight:700}.btn-primary:hover:not(:disabled){background:var(--secondary-yellow);border-color:var(--secondary-yellow);transform:translateY(-1px);box-shadow:var(--shadow-md);color:#000}.btn-secondary{background:var(--primary-black);color:var(--text-white);border-color:var(--primary-black)}.btn-secondary:hover:not(:disabled){background:var(--dark-gray);border-color:var(--dark-gray)}.btn-outline{background:transparent;color:var(--text-primary);border-color:var(--border-gray)}.btn-outline:hover:not(:disabled){background:var(--bg-gray);border-color:var(--text-primary)}.btn-outline-yellow{background:transparent;color:var(--primary-yellow);border-color:var(--primary-yellow)}.btn-outline-yellow:hover:not(:disabled){background:var(--primary-yellow);color:var(--primary-black)}.btn-sm{padding:.375rem .875rem;font-size:var(--text-sm)}.btn-lg{padding:.875rem 1.75rem;font-size:var(--text-lg)}.btn-block{width:100%}.card{background:var(--bg-white);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);padding:var(--spacing-lg);transition:var(--transition-base);border:1px solid var(--border-light)}.card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}.card-header{padding-bottom:var(--spacing-md);margin-bottom:var(--spacing-md);border-bottom:2px solid var(--primary-yellow)}.card-title{font-size:var(--text-xl);font-weight:700;color:var(--text-primary);margin-bottom:var(--spacing-sm)}.card-body{padding:var(--spacing-md) 0}.card-footer{padding-top:var(--spacing-md);margin-top:var(--spacing-md);border-top:1px solid var(--border-light)}.badge{display:inline-flex;align-items:center;padding:.375rem .75rem;border-radius:var(--radius-full);font-size:var(--text-sm);font-weight:600;white-space:nowrap}.badge-primary{background:var(--primary-yellow);color:var(--primary-black)}.badge-secondary{background:var(--primary-black);color:var(--text-white)}.badge-success{background:var(--success-green);color:var(--text-white)}.badge-error{background:var(--error-red);color:var(--text-white)}.badge-warning{background:var(--warning-orange);color:var(--text-white)}.badge-info{background:var(--info-blue);color:var(--text-white)}.form-group{margin-bottom:var(--spacing-lg)}.form-control{width:100%;padding:.625rem 1rem;font-size:var(--text-base);border:2px solid var(--border-light);border-radius:var(--radius-md);background:var(--bg-white);color:var(--text-primary);transition:var(--transition-base);font-family:inherit}.form-control:focus{outline:none;border-color:var(--primary-yellow);box-shadow:0 0 0 3px #ffd7001a}.form-control:disabled{background:var(--bg-gray);cursor:not-allowed;opacity:.6}textarea.form-control{min-height:100px;resize:vertical}.form-error{color:var(--error-red);font-size:var(--text-sm);margin-top:var(--spacing-xs);display:block}.form-help{color:var(--text-light);font-size:var(--text-sm);margin-top:var(--spacing-xs);display:block}.row{display:flex;flex-wrap:wrap;margin:0 calc(var(--spacing-md) * -.5)}.col{flex:1;padding:0 calc(var(--spacing-md) * .5)}.col-1{flex:0 0 8.333333%;max-width:8.333333%}.col-2{flex:0 0 16.666667%;max-width:16.666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.333333%;max-width:33.333333%}.col-6{flex:0 0 50%;max-width:50%}.col-8{flex:0 0 66.666667%;max-width:66.666667%}.col-12{flex:0 0 100%;max-width:100%}.m-0{margin:0}.m-1{margin:var(--spacing-sm)}.m-2{margin:var(--spacing-md)}.m-3{margin:var(--spacing-lg)}.m-4{margin:var(--spacing-xl)}.mt-0{margin-top:0}.mt-1{margin-top:var(--spacing-sm)}.mt-2{margin-top:var(--spacing-md)}.mt-3{margin-top:var(--spacing-lg)}.mt-4{margin-top:var(--spacing-xl)}.mb-0{margin-bottom:0}.mb-1{margin-bottom:var(--spacing-sm)}.mb-2{margin-bottom:var(--spacing-md)}.mb-3{margin-bottom:var(--spacing-lg)}.mb-4{margin-bottom:var(--spacing-xl)}.p-0{padding:0}.p-1{padding:var(--spacing-sm)}.p-2{padding:var(--spacing-md)}.p-3{padding:var(--spacing-lg)}.p-4{padding:var(--spacing-xl)}.pt-0{padding-top:0}.pt-1{padding-top:var(--spacing-sm)}.pt-2{padding-top:var(--spacing-md)}.pt-3{padding-top:var(--spacing-lg)}.pt-4{padding-top:var(--spacing-xl)}.pb-0{padding-bottom:0}.pb-1{padding-bottom:var(--spacing-sm)}.pb-2{padding-bottom:var(--spacing-md)}.pb-3{padding-bottom:var(--spacing-lg)}.pb-4{padding-bottom:var(--spacing-xl)}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-primary{color:var(--text-primary)}.text-secondary{color:var(--text-secondary)}.text-light{color:var(--text-light)}.text-white{color:var(--text-white)}.text-yellow{color:var(--primary-yellow)}.text-success{color:var(--success-green)}.text-error{color:var(--error-red)}.bg-white{background-color:var(--bg-white)}.bg-light{background-color:var(--bg-light)}.bg-gray{background-color:var(--bg-gray)}.bg-yellow{background-color:var(--primary-yellow)}.bg-black{background-color:var(--primary-black)}.d-none{display:none}.d-block{display:block}.d-inline{display:inline}.d-inline-block{display:inline-block}.d-flex{display:flex}.d-grid{display:grid}.flex-row{flex-direction:row}.flex-column{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.items-start{align-items:flex-start}.items-center{align-items:center}.items-end{align-items:flex-end}.items-stretch{align-items:stretch}.gap-1{gap:var(--spacing-sm)}.gap-2{gap:var(--spacing-md)}.gap-3{gap:var(--spacing-lg)}.gap-4{gap:var(--spacing-xl)}.border{border:1px solid var(--border-light)}.border-top{border-top:1px solid var(--border-light)}.border-bottom{border-bottom:1px solid var(--border-light)}.border-left{border-left:1px solid var(--border-light)}.border-right{border-right:1px solid var(--border-light)}.border-yellow{border-color:var(--primary-yellow)}.border-black{border-color:var(--primary-black)}.rounded{border-radius:var(--radius-md)}.rounded-sm{border-radius:var(--radius-sm)}.rounded-lg{border-radius:var(--radius-lg)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-full{border-radius:var(--radius-full)}.shadow-none{box-shadow:none}.shadow-sm{box-shadow:var(--shadow-sm)}.shadow-md{box-shadow:var(--shadow-md)}.shadow-lg{box-shadow:var(--shadow-lg)}.shadow-xl{box-shadow:var(--shadow-xl)}.font-light{font-weight:300}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.w-full{width:100%}.w-auto{width:auto}.h-full{height:100%}.h-auto{height:auto}.position-relative{position:relative}.position-absolute{position:absolute}.position-fixed{position:fixed}.position-sticky{position:sticky}.overflow-hidden{overflow:hidden}.overflow-auto{overflow:auto}.overflow-scroll{overflow:scroll}.cursor-pointer{cursor:pointer}.cursor-not-allowed{cursor:not-allowed}@media (max-width: 768px){.container{padding:0 var(--spacing-sm)}h1{font-size:var(--text-3xl)}h2{font-size:var(--text-2xl)}h3{font-size:var(--text-xl)}.col-1,.col-2,.col-3,.col-4,.col-6,.col-8{flex:0 0 100%;max-width:100%}.hide-mobile{display:none!important}}@media (max-width: 480px){:root{--spacing-md: .75rem;--spacing-lg: 1rem}h1{font-size:var(--text-2xl)}h2{font-size:var(--text-xl)}h3{font-size:var(--text-lg)}.btn{padding:.5rem 1rem;font-size:var(--text-sm)}.card{padding:var(--spacing-md)}}.spinner{width:40px;height:40px;border:4px solid var(--border-light);border-top-color:var(--primary-yellow);border-radius:var(--radius-full);animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes slideInRight{0%{opacity:0;transform:translate(20px)}to{opacity:1;transform:translate(0)}}.animate-fade-in{animation:fadeIn .3s ease}.animate-fade-in-up{animation:fadeInUp .4s ease}.animate-slide-in-right{animation:slideInRight .3s ease}@media print{.no-print{display:none!important}}
