:root {
    --primary: #34C759;
    --primary-dark: #28A745;
    --primary-light: rgba(52, 199, 89, 0.1);
    --primary-glow: rgba(52, 199, 89, 0.25);
    --white: #FFFFFF;
    --bg: #FFFFFF;
    --bg-section: #F7F9FC;
    --bg-card: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --text: #1A1A2E;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F1F1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Card */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links > li > a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: 4px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    margin-bottom: 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #F0FFF4 0%, #FFFFFF 50%, #F0FFF4 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(52, 199, 89, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(52, 199, 89, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}

.highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-icon:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.page-hero-sm {
    padding: 120px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #F0FFF4, #FFFFFF);
}

.page-hero-sm h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.page-hero-sm p {
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Divisions Grid */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.division-card {
    padding: 48px 32px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.division-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.division-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--primary);
}

.division-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.division-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.division-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.division-card:hover .division-cta {
    gap: 12px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.product-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    gap: 8px;
}

.product-img-placeholder i {
    font-size: 3rem;
    color: #D1D5DB;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.product-rating .fa-star {
    font-size: 0.75rem;
    color: #D1D5DB;
}

.product-rating .fa-star.filled {
    color: #F59E0B;
}

.product-rating span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #F0FFF4, #FFFFFF);
    border-radius: 0;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--white);
    color: var(--text-secondary);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
    box-shadow: var(--shadow);
}

.tab:hover,
.tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px var(--primary-glow);
}

/* Ride Card */
.ride-card .product-img {
    height: 200px;
}

.ride-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.ride-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ride-specs i {
    margin-right: 4px;
    color: var(--primary);
}

.ride-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Booking Layout */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.booking-form {
    padding: 32px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.booking-form h3,
.booking-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-section);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group input[readonly] {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-info {
    padding: 32px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.booking-info ul {
    list-style: none;
}

.booking-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.booking-info li i {
    color: var(--primary);
}

.booking-support {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
}

.booking-support i {
    font-size: 2rem;
    color: var(--primary);
}

.booking-support strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.booking-support p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Search */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    padding: 4px 4px 4px 20px;
    gap: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.search-icon {
    color: var(--text-muted);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-summary {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag {
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* Cart */
.empty-cart {
    text-align: center;
    padding: 80px 40px;
}

.empty-cart i {
    font-size: 4rem;
    color: #D1D5DB;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.empty-cart p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cart-table {
    padding: 24px;
    overflow-x: auto;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

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

.cart-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--glass-border);
}

.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.cart-total {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Payment */
.payment-methods {
    margin-bottom: 20px;
}

.payment-methods h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.payment-option:hover {
    border-color: var(--primary);
}

.payment-option input:checked + span {
    color: var(--primary);
}

.payment-option input:disabled + span {
    opacity: 0.5;
}

.payment-option input {
    accent-color: var(--primary);
}

.payment-option span i {
    margin-right: 8px;
}

/* Footer */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
    background: var(--bg-section);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col li i {
    margin-right: 8px;
    color: var(--primary);
    width: 16px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 80px;
    right: 24px;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px var(--primary-glow);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 24px;
        background: var(--white);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: var(--shadow);
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links > li > a {
        width: 100%;
        padding: 14px 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 16px;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

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

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .product-img {
        height: 180px;
    }

    .product-info {
        padding: 14px;
    }

    .product-info h3 {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .cart-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cart-total {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-img {
        height: 150px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .category-tabs {
        gap: 6px;
    }

    .tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ====== BOOK NOW MODAL ====== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.open {
    display: flex;
}
.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: modalIn 0.25s ease;
    margin: 16px;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #9ca3af;
    line-height: 1;
}
.modal-close:hover { color: #374151; }
.modal-box h2 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.modal-box .form-group {
    margin-bottom: 14px;
}
.modal-box .form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}
.modal-box .form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: .92rem;
    font-family: inherit;
}
.modal-box .form-group input:focus {
    outline: none;
    border-color: #34C759;
    box-shadow: 0 0 0 3px rgba(52,199,89,0.15);
}

/* ====== TOAST ====== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #1a1a2e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: .9rem;
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ====== OUT OF STOCK ====== */
.product-card.out-of-stock {
    opacity: 0.6;
}
.out-of-stock-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: #ef4444;
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

/* ====== ADMIN ICON ====== */
.admin-icon {
    color: #9ca3af;
    font-size: .85rem;
    transition: color 0.2s;
    margin-left: 4px;
}
.admin-icon:hover {
    color: #34C759;
}

/* ====== RIDE CTA BANNER ====== */
.ride-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #34C75910, #28A74510);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 40px;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.ride-cta-banner h2 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.ride-cta-banner p {
    color: var(--text-secondary);
    font-size: .9rem;
    margin: 0;
}
.ride-cta-banner .btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .ride-cta-banner { flex-direction: column; text-align: center; padding: 24px 20px; }
}

/* ====== SALE BADGE ====== */
.sale-badge {
    right: 8px !important;
    left: auto !important;
    background: #f59e0b !important;
}

/* ====== FORM ROW ====== */
.form-row {
    display: flex;
    gap: 12px;
}
.form-row .form-group {
    flex: 1;
}
@media (max-width: 500px) {
    .form-row { flex-direction: column; }
}

/* ====== RIDE MODAL SELECT STYLING ====== */
.ride-modal-box select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: .92rem;
    font-family: inherit;
    background: #fff;
    cursor: pointer;
}
.ride-modal-box select:focus {
    outline: none;
    border-color: #34C759;
    box-shadow: 0 0 0 3px rgba(52,199,89,0.15);
}

/* ====== BTN OUTLINE ====== */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ====== VIDEO OVERLAY ====== */
.product-img {
    position: relative;
}
.has-video::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    pointer-events: none;
}
