/* VOGE Theme Custom Styles */

/* ==========================================
   GLOBAL STYLES
   ========================================== */

html {
    scroll-padding-top: 90px;
}

body {
    padding-top: 0;
}

[id] {
    scroll-margin-top: 90px;
}

body.admin-bar {
    padding-top: 32px; /* admin bar height */
}

/* Anchor navigation offsets */
.moto-section {
    scroll-margin-top: 110px !important;
}

/* Hero flush to header */
.hero-slider-section {
    margin-top: -70px;
    padding-top: 70px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    background: rgba(29, 29, 31, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    font-family: 'Oswald', sans-serif;
    overflow: visible;
}

.site-header::after,
.site-header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1.5px;
    background: #ffc107;
    transform: scaleX(0);
    transform-origin: center;
    z-index: 0;
    pointer-events: none;
}

.site-header::before {
    bottom: 10px;
}

.site-header::after {
    bottom: 6px;
}

.main-navigation::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1.5px;
    background: #ffc107;
    transform: scaleX(0);
    transform-origin: center;
    z-index: 0;
    pointer-events: none;
}

.site-header:hover::before {
    animation: underline-grow 1.2s ease forwards; /* top first */
    animation-delay: 0s;
}

.site-header:hover::after {
    animation: underline-grow 0.9s ease forwards; /* middle second */
    animation-delay: 0.6s;
}

.site-header:hover .main-navigation::after {
    animation: underline-grow 0.6s ease forwards; /* bottom last */
    animation-delay: 1.2s;
}

.site-header:not(:hover)::after,
.site-header:not(:hover)::before,
.site-header:not(:hover) .main-navigation::after {
    animation: none;
    transform: scaleX(0);
}

@keyframes underline-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.main-navigation {
    position: relative;
    z-index: 1;
}

body.admin-bar .site-header {
    top: 32px;
}

.no-sticky-header .site-header {
    position: relative;
    top: 0;
}

.site-header.scrolled {
    background: rgba(29, 29, 31, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.4);
}

.main-navigation .container {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.65rem 1.25rem;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.7rem 0;
}

/* Product category menu inline in header */
.product-cat-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    min-width: 0;
    position: static;
}

.product-cat-menu-list {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
    scrollbar-width: none;
}

.product-cat-menu-list::-webkit-scrollbar {
    display: none;
}

.product-cat-menu-item {
    position: static;
    margin-top: auto;
}

.product-cat-menu-item.has-mega-menu {
    position: static;
}

.product-cat-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(29, 29, 31, 0.92);
    padding: 0.5rem 0.75rem;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 180px;
    z-index: 20;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.product-cat-submenu li a {
    padding: 0.35rem 0.25rem;
    white-space: nowrap;
}

.product-cat-menu-item:hover > .product-cat-submenu {
    display: block;
}

.product-cat-menu-list a {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: color 0.2s ease;
    display: block;
    padding: 0.4rem 0;
}

.nav-menu a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.product-cat-menu-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s ease;
}

.product-cat-menu-list a:hover {
    color: #ffc107;
}

.product-cat-menu-list a:hover::after,
.product-cat-menu-list .current-menu-item a::after,
.product-cat-menu-list .current-cat a::after {
    width: 100%;
}

/* ==========================================
   HERO MEGA MENU - Models Showcase
   ========================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero-mega-menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(18, 18, 20, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    pointer-events: none;
}

.product-cat-menu-item.has-mega-menu:hover > .hero-mega-menu,
.product-cat-menu-item.has-mega-menu.mega-menu-active > .hero-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-mega-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2.5rem 2.5rem;
}

/* Mega Menu Header */
.mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-menu-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    position: relative;
    padding-left: 1rem;
}

.mega-menu-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: #ffc107;
    border-radius: 2px;
}

.mega-menu-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffc107 !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 12px 24px;
    min-width: 80px;
    border: 2px solid #ffc107;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #000000 !important;
    white-space: nowrap;
    text-align: center;
}

.mega-menu-view-all:hover {
    background: #000000 !important;
    color: #ffc107 !important;
    border-color: #ffc107;
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
}

/* Models Grid */
.mega-menu-models {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: -6px; /* close the tiny top sliver above the first row */
}

/* Model Card */
.mega-menu-model-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mega-menu-model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.mega-menu-model-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mega-menu-model-card:hover::before {
    opacity: 1;
}

/* Model Image */
.mega-model-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

/* Mega Menu Campaign Badge */
.mega-menu-campaign-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: campaignPulse 2s ease-in-out infinite;
}

.mega-menu-model-card.has-campaign {
    border-color: rgba(255, 255, 255, 0.08);
}

.mega-menu-model-card.has-campaign:hover {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@keyframes campaignPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.mega-model-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s ease;
    transform: scale(1.08);
}

.mega-menu-model-card:hover .mega-model-image img {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.mega-model-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.2);
}

/* Model Info */
.mega-model-info {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mega-model-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.mega-menu-model-card:hover .mega-model-name {
    color: #ffc107;
}

.mega-model-engine {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.mega-model-price {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffc107;
    margin-top: 0.2rem;
}

.mega-model-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.15rem;
    display: block;
    line-height: 1.2;
}

/* Mega Menu Active State (JS controlled) */
.product-cat-menu-item.has-mega-menu.mega-menu-active > .hero-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.product-cat-menu-item.has-mega-menu > a {
    position: relative;
}

/* Override default underline for mega menu items */
.product-cat-menu-list .product-cat-menu-item.has-mega-menu > a::after {
    content: '';
    display: inline-block;
    position: static;
    width: 0;
    height: 0;
    background: none;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.product-cat-menu-list .product-cat-menu-item.has-mega-menu:hover > a::after,
.product-cat-menu-list .product-cat-menu-item.has-mega-menu.mega-menu-active > a::after {
    width: 0;
    transform: rotate(180deg);
    border-top-color: #ffc107;
}

/* Ensure text stays visible on hover */
.product-cat-menu-list .product-cat-menu-item.has-mega-menu > a {
    color: #ffffff !important;
}

.product-cat-menu-list .product-cat-menu-item.has-mega-menu:hover > a,
.product-cat-menu-list .product-cat-menu-item.has-mega-menu.mega-menu-active > a {
    color: #ffc107 !important;
}

/* Mega Menu Responsive */
@media (max-width: 1200px) {
    .mega-menu-models {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 992px) {
    .hero-mega-menu {
        width: 100vw;
        max-height: 70vh;
    }
    
    .hero-mega-menu-inner {
        padding: 1.5rem;
    }
    
    .mega-menu-models {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .mega-model-info {
        padding: 0.8rem;
    }
    
    .mega-model-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-mega-menu {
        display: none !important;
    }
    
    .product-cat-menu-item.has-mega-menu:hover > .hero-mega-menu,
    .product-cat-menu-item.has-mega-menu.mega-menu-active > .hero-mega-menu {
        display: none !important;
    }
    
    .product-cat-menu-list .product-cat-menu-item.has-mega-menu > a::after {
        display: none;
    }
}

.site-branding {
    flex: 0 0 auto;
}

.site-branding .custom-logo-link {
    display: block;
}

.site-branding .custom-logo {
    max-height: 44px;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: var(--primary-black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.8rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--primary-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #ffc107;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-quick-links {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-right: 0.75rem;
}

.nav-quick-links a {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.nav-quick-links a:hover {
    color: #ffc107;
}

.nav-quick-links .nav-contact {
    margin-left: 0.35rem;
}

.nav-support {
    position: relative;
}

.nav-support-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-support-toggle:focus {
    outline: none;
}

.nav-support:hover .nav-support-toggle,
.nav-support:focus-within .nav-support-toggle {
    color: #ffc107;
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.12);
}

.nav-support-caret {
    font-size: 0.8rem;
    line-height: 1;
}

.nav-support-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    min-width: 200px;
    padding: 0.6rem 0.75rem;
    background: rgba(29, 29, 31, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 20;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-support-menu li + li {
    margin-top: 0.35rem;
}

.nav-support-menu a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 0.85rem;
    padding: 0.35rem 0.25rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-support-menu a:hover {
    color: #ffc107;
    background: rgba(255, 255, 255, 0.06);
}

.nav-support:hover .nav-support-menu,
.nav-support:focus-within .nav-support-menu {
    display: block;
}

/* ==========================================
   MOTORCYCLE ARCHIVE CARDS
   ========================================== */

.motorcycles-archive {
    background: #f6f7fb;
}

.motorcycles-archive .page-header-section {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 4.5rem 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.motorcycles-archive .page-header-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.18), transparent 35%),
                radial-gradient(circle at 80% 10%, rgba(28, 105, 212, 0.18), transparent 35%);
    pointer-events: none;
}

.motorcycles-archive .page-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.motorcycles-archive .page-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
}

.motorcycles-archive .archive-body {
    padding: 3rem 0 3.5rem;
}

.motorcycles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Tek ürün varsa - grid 1/3 genişliğinde */
.motorcycles-grid.single-product {
    grid-template-columns: 1fr;
    max-width: 400px;
}

/* İki ürün varsa */
.motorcycles-grid.two-products {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.motorcycle-card {
    background: #f5f5f7;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.motorcycles-grid > *:not(.motorcycle-card) {
    background: #f5f5f7;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.motorcycles-grid > *:not(.motorcycle-card):hover {
    background: #f5f5f7;
}

.motorcycles-grid > *:not(.motorcycle-card) img {
    border-radius: 18px;
    object-fit: contain;
    margin: auto;
}

.motorcycle-card:hover {
    background: #f5f5f7;
}

.motorcycle-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f5f5fa 0%, #fafbff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.motorcycle-image .moto-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    padding: 0.8rem;
}

.motorcycle-card:hover .motorcycle-image .moto-thumb {
    transform: scale(1.08);
    filter: brightness(1.4);
}

.card-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.card-title-section {
    margin-bottom: 0.6rem;
}

.card-subtitle-section {
    margin-bottom: 0.8rem;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
}

.motorcycle-content {
    padding: 1rem 1.2rem 1.2rem;
    color: #1d1d1f;
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-year {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.motorcycle-title {
    margin: 0 0 0.6rem 0;
    padding: 0;
    line-height: 1.05;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
}

.motorcycle-title a {
    color: #0f0f12;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
}

.motorcycle-title a:hover {
    color: #ffc107;
}

.card-description {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.card-description p {
    margin: 0;
}

.card-description-text {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.5;
    margin: 0.3rem 0 0 0;
}

.card-price {
    font-size: 1rem;
    font-weight: 700;
    color: #0f0f12;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
}

.card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px solid #e5e5eb;
    align-items: center;
}

.card-button {
    background: #0f0f12;
    color: #ffffff;
    padding: 0.6rem 1rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.card-button:hover {
    background: #ffc107;
    color: #0f0f12;
}

.motorcycle-specs {
    display: none;
}

.motorcycle-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    width: 100%;
    margin: 0.8rem 0 0 0;
}

.spec-item {
    background: #f9f9fb;
    border: 1px solid #e5e5eb;
    border-radius: 3px;
    padding: 0.2rem 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #f5f5f9;
    border-color: #ddd;
}

.spec-item .spec-label {
    display: block;
    font-size: 0.5rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.08rem;
}

.spec-item .spec-value {
    display: block;
    font-size: 0.65rem;
    color: #0f0f12;
    font-weight: 600;
}

.motorcycle-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: auto;
    display: none;
}

.card-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
    gap: 0.5rem;
}

.moto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: #ffc107;
    color: #1d1d1f;
    border: 2px solid #ffc107;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex: 1;
}

.moto-btn:hover {
    background: transparent;
    color: #ffc107;
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.25);
}

.no-motorcycles {
    text-align: center;
    padding: 4rem 0;
}

.no-motorcycles h2 {
    margin-bottom: 0.5rem;
}

.no-motorcycles p {
    color: #666;
}

.search-toggle,
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-white);
    padding: 0.5rem;
    transition: var(--transition);
}

.search-toggle:hover,
.mobile-menu-toggle:hover {
    color: var(--accent-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-white);
    transition: var(--transition);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay .container {
    position: relative;
    max-width: 700px;
    width: 90%;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .container {
    transform: translateY(0);
}

.search-overlay .search-form {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-overlay .search-form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.15);
}

.search-field {
    flex: 1;
    padding: 1.2rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: none;
    background: transparent;
    color: #ffffff;
    outline: none;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    background: transparent;
    border: none;
    padding: 1.2rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.search-submit svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.search-submit:hover {
    color: #ffc107;
}

.search-submit:hover svg {
    transform: scale(1.1);
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffc107;
    transform: rotate(90deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-slider-section {
    position: relative;
    width: 100%;
    max-width: 1536px; /* desktop target width */
    margin: 0 auto;    /* center within page */
    aspect-ratio: 1536/672; /* modern browsers will keep exact ratio */
    height: auto; /* aspect-ratio will control height when supported */
    overflow: hidden;
}

/* Fallback and responsive scaling for older browsers */
@supports not (aspect-ratio: 1536/672) {
    /* On very wide viewports keep exact pixel height */
    @media (min-width: 1536px) {
        .hero-slider-section { height: 672px; }
    }

    /* Scale proportionally for smaller screens */
    @media (max-width: 1535.98px) {
        .hero-slider-section { height: calc(100vw * 672 / 1536); }
    }
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure the slide fills the parent area while keeping full image visible */
    background-size: contain !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    color: var(--primary-white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Remove dark overlay so image is shown without shading */
    background: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-slider-controls {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-white);
    color: var(--primary-black);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary-white);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary-white);
    transform: scale(1.2);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--primary-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--primary-white);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ==========================================
   QUICK LINKS SECTION
   ========================================== */

.quick-links-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-link-item {
    background: var(--primary-white);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

.quick-link-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quick-link-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.quick-link-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quick-link-item p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--accent-blue);
    font-weight: 600;
    transition: var(--transition);
}

.link-arrow:hover {
    transform: translateX(5px);
    display: inline-block;
}

/* ==========================================
   FEATURED MODELS SECTION
   ========================================== */

.featured-models-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

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

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.model-card {
    background: var(--primary-white);
    overflow: hidden;
    transition: var(--transition);
}

.model-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.model-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.model-info {
    padding: 2rem;
}

.model-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.model-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-left: 3px solid var(--accent-blue);
}

.model-specs .spec-item {
    font-size: 0.9rem;
    display: block;
}

.model-specs .spec-item strong {
    color: var(--text-gray);
    margin-right: 0.5rem;
}

.model-excerpt {
    color: var(--text-gray);
}

/* ==========================================
   STORY SECTION
   ========================================== */

.story-section {
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(28, 105, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ==========================================
   DEALER SECTION
   ========================================== */

.dealer-card {
    transition: var(--transition);
}

.dealer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

/* ==========================================
   ADDITIONAL EFFECTS
   ========================================== */

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    margin: 4rem 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-dark) 100%);
    color: var(--primary-white);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    margin-bottom: 2rem;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Footer styles moved to assets/css/footer-grid.css */

/* Tech Specs Animation */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spec-row {
    animation: fadeInSlideUp 0.6s ease-out forwards;
    opacity: 0;
}

/* ==========================================
   CONTENT AREA & BLOG
   ========================================== */

.content-area {
    padding: 6rem 0;
    margin-top: 80px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.post-item {
    margin-bottom: 4rem;
    background: var(--primary-white);
    overflow: hidden;
}

.post-thumbnail {
    margin-bottom: 2rem;
    overflow: hidden;
}

.post-thumbnail img {
    transition: transform 0.5s ease;
}

.post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.entry-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.entry-title {
    margin-bottom: 1.5rem;
}

.entry-title a {
    color: var(--primary-dark);
    transition: var(--transition);
}

.entry-title a:hover {
    color: var(--accent-blue);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-top: 1rem;
}

.read-more:hover {
    gap: 1rem;
}

/* Sidebar */
.sidebar .widget {
    background: var(--light-gray);
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar .widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-blue);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

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

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .nav-quick-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
        gap: 0;
        margin-right: 0;
        border-top: none;
    }
    
    .nav-quick-links.active {
        right: 0;
    }
    
    .nav-quick-links a {
        padding: 0.8rem 0;
        font-size: 1rem;
        color: #1d1d1f;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-quick-links a:hover {
        color: #ffc107;
    }
    
    .nav-quick-links .nav-contact {
        margin-left: 0;
    }
    
    .nav-support {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-support-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.8rem 0;
        background: transparent;
        border: none;
        border-radius: 0;
        color: #1d1d1f;
        font-size: 1rem;
    }
    
    .nav-support:hover .nav-support-toggle,
    .nav-support:focus-within .nav-support-toggle {
        background: transparent;
        border-color: transparent;
    }
    
    .nav-support.active .nav-support-toggle {
        color: #ffc107;
    }
    
    .nav-support-menu {
        position: static;
        display: none;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        margin-top: 0;
    }
    
    .nav-support-menu a {
        color: #555;
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
    
    .nav-support-menu a:hover {
        background: rgba(255, 193, 7, 0.1);
        color: #ffc107;
        padding-left: 0.5rem;
    }
    
    .nav-support:hover .nav-support-menu,
    .nav-support:focus-within .nav-support-menu {
        display: none;
    }
    
    .nav-support.active .nav-support-menu {
        display: block;
    }
    
    .search-toggle {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem 2rem;
    }

    .footer-social-row {
        justify-content: flex-start;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   RELATED MODELS SECTION
   ========================================== */
.related-models-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.related-models-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-model-card {
    background: var(--primary-white);
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-model-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.related-model-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.related-model-image {
    width: 100%;
    position: relative;
    padding-top: 62.5%;
    overflow: hidden;
    background: var(--light-gray);
}

.related-model-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.related-model-card:hover .related-model-image img {
    transform: scale(1.05);
    filter: brightness(1.15);
}

.related-model-content {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.related-model-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.related-model-category {
    font-size: 0.7rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 1.25rem 0;
    font-weight: 600;
    display: block;
}

.related-model-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
}

.related-model-specs-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.spec-compact-item {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #f5f5f7;
    border-radius: 8px;
}

.spec-compact-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.spec-compact-label {
    font-size: 0.7rem;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.related-model-cta {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--accent-blue);
    font-weight: 600;
    transition: transform 0.3s ease;
    margin-top: auto;
}

.related-model-card:hover .related-model-cta {
    transform: translateX(5px);
}

.related-model-arrow {
    font-size: 1.5rem;
    color: var(--accent-blue);
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.related-model-card:hover .related-model-arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .related-models-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .related-models-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-model-content {
        padding: 1.5rem;
    }
    
    .related-model-arrow {
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

/* Campaign Badge */
.campaign-badge-section {
    margin-bottom: 0.8rem;
}

.campaign-badge-inline {
    display: inline-block;
    background: #ffc107;
    color: #0f0f12;
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    white-space: nowrap;
}

/* Force badge colors in card context (cache-safe override) */
.motorcycle-card .campaign-badge-inline {
    background: #0f0f12 !important;
    color: #ffffff !important;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 2px;
    white-space: nowrap;
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================== */

/* === MOBILE MENU SYSTEM === */
@media (max-width: 991px) {
    /* Hide desktop navigation */
    .nav-menu-wrapper,
    .product-cat-menu,
    .nav-quick-links {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        gap: 5px;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Header adjustments */
    .site-header {
        padding: 0;
    }
    
    .nav-wrapper {
        padding: 0.75rem 1rem;
    }
    
    .site-branding .custom-logo {
        max-height: 32px;
    }
    
    /* Nav actions */
    .nav-actions {
        gap: 0.5rem;
    }
    
    .search-toggle {
        width: 40px;
        height: 40px;
    }
    
    .search-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Menu Dropdown */
.mobile-menu-overlay {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 0.5rem 0;
}

.mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.mobile-menu-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-nav li:nth-child(2n) {
    border-right: none;
}

.mobile-menu-nav a {
    display: block;
    padding: 0.65rem 1rem;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.08);
}

.mobile-menu-submenu {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0;
    display: none;
}

.mobile-menu-submenu.active {
    display: block;
}

.mobile-menu-submenu a {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Single column on very small screens */
@media (max-width: 400px) {
    .mobile-menu-nav {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-nav li {
        border-right: none;
    }
}

/* === TABLET & MOBILE BREAKPOINTS === */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Typography scaling */
    h1 {
        font-size: 1.75rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    /* Buttons touch-friendly */
    .btn, 
    button,
    input[type="submit"] {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    /* Search overlay mobile */
    .search-overlay {
        padding: 1rem;
    }
    
    .search-overlay .search-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-overlay .search-field {
        width: 100%;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .search-close {
        top: 1rem;
        right: 1rem;
    }
    
    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .footer-block {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-social-link {
        padding: 0.75rem 1rem;
    }
}

/* === SMALL MOBILE === */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    h1 {
        font-size: 1.5rem !important;
    }
    
    h2 {
        font-size: 1.25rem !important;
    }
    
    /* Cookie box full width */
    #voge-cookie-box {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        width: auto;
        padding: 1rem;
    }
}

/* === HEADER MOBILE FIXES === */
@media (max-width: 991px) {
    .site-header::before,
    .site-header::after,
    .main-navigation::after {
        display: none;
    }
    
    .nav-wrapper {
        justify-content: space-between;
    }
}

/* === MEGA MENU MOBILE - HIDE === */
@media (max-width: 991px) {
    .hero-mega-menu {
        display: none !important;
    }
}

/* === CATEGORY PAGE MOBILE === */
@media (max-width: 1200px) {
    .motorcycles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .motorcycles-grid.single-product {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 2rem 0;
    }
    
    .page-header-section .page-title {
        font-size: 1.5rem !important;
    }
    
    .motorcycles-grid,
    .motorcycles-grid.single-product,
    .motorcycles-grid.two-products {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 1.5rem !important;
    }
    
    .motorcycle-card {
        margin-bottom: 0;
    }
    
    .motorcycle-card .motorcycle-content {
        padding: 1rem;
    }
    
    .motorcycle-card .motorcycle-title {
        font-size: 1.1rem;
    }
    
    .motorcycle-card .motorcycle-price {
        font-size: 1rem;
    }
    
    /* Compare checkbox more touchable */
    .compare-checkbox-wrapper {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .compare-checkbox {
        padding: 0.5rem;
    }
    
    .compare-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Floating compare bar mobile */
    .compare-floating-bar {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
    }
    
    .compare-bar-models {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .compare-bar-actions {
        width: 100%;
        justify-content: center;
    }
    
    .compare-bar-btn,
    .compare-bar-clear {
        flex: 1;
        justify-content: center;
    }
}

/* === COMPARISON PAGE MOBILE === */
@media (max-width: 991px) {
    .compare-page .container {
        padding: 0 0.5rem;
    }
    
    .compare-header {
        padding: 1.5rem 1rem;
    }
    
    .compare-header h1 {
        font-size: 1.5rem;
    }
    
    .model-selector {
        padding: 1rem;
    }
    
    .selector-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }
    
    .model-select-item {
        padding: 0.75rem;
    }
    
    .model-select-item img {
        width: 40px;
        height: 28px;
    }
    
    .model-select-item .model-name {
        font-size: 0.75rem;
    }
    
    .selector-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .selector-actions button {
        width: 100%;
    }
    
    /* Comparison table horizontal scroll */
    .compare-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.5rem;
        padding: 0 0.5rem;
    }
    
    .compare-table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    .compare-table th,
    .compare-table td {
        padding: 0.75rem 0.5rem;
        min-width: 120px;
    }
    
    .compare-table th:first-child,
    .compare-table td:first-child {
        position: sticky;
        left: 0;
        background: #f8f9fa;
        z-index: 1;
        min-width: 100px;
    }
    
    .compare-model-header {
        min-width: 140px;
    }
    
    .compare-model-image {
        max-width: 80px !important;
        height: auto !important;
    }
    
    .compare-model-title {
        font-size: 0.85rem !important;
    }
    
    .compare-model-price {
        font-size: 0.75rem !important;
    }
}

/* === SINGLE PRODUCT PAGE MOBILE === */
@media (max-width: 768px) {
    /* Hero slider */
    .hero-slider {
        aspect-ratio: 4/3;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-nav {
        bottom: 1rem;
    }
    
    .hero-dots {
        gap: 0.35rem;
    }
    
    .hero-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-dot.active {
        width: 18px;
    }
    
    /* Anchor nav scrollable */
    .moto-anchor-nav {
        top: 56px; /* After mobile header */
    }
    
    .moto-anchor-nav-inner {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .moto-anchor-links {
        flex-wrap: nowrap;
        gap: 0.25rem;
    }
    
    .moto-anchor-link {
        padding: 0 0.6rem;
        height: 32px;
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Quick stats 2 column */
    .quick-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 1rem;
        margin: 0 1rem 2rem;
        gap: 0;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-item:nth-child(odd) {
        border-right: 1px solid #e5e5ea;
    }
    
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid #e5e5ea;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    /* Technical specs mobile */
    .specs-section {
        padding: 2rem 1rem;
    }
    
    .specs-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .spec-row {
        grid-template-columns: 1fr !important;
    }
    
    .spec-label,
    .spec-value {
        padding: 0.75rem 1rem !important;
    }
    
    /* Gallery mobile */
    .gallery-360-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Colors section */
    .colors-grid {
        gap: 0.5rem;
    }
    
    .moto-color-chip {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    /* CTA section */
    .cta-buttons {
        flex-direction: column !important;
        gap: 0.75rem;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Order modal mobile */
    .order-modal-content {
        width: min(900px, 96vw);
        max-width: 96vw;
        height: auto;
        max-height: 90vh;
        border-radius: 0;
        margin: 0 auto;
        overflow-y: auto;
    }
    
    .order-modal-inner {
        padding: 1.5rem;
    }
}

/* Force translucent order modal to match plugin modal (desktop & mobile) */
.order-modal-inner {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Full-black order modal (override theme defaults) */
.order-modal-overlay {
    background: #000 !important;
}

.order-modal-content {
    background: #000 !important;
    width: min(900px, 96vw) !important;
    max-width: 96vw !important;
    height: auto !important;
    max-height: 90vh !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    overflow-y: auto !important;
}

@media (max-width: 768px) {
    .order-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        display: flex !important;
        flex-direction: column !important;
    }
    /* Mobilde sözleşme butonlarını alt alta ve yazıyı sarmala */
    .order-modal-inner .onay-kutusu button,
    .order-modal-inner [class*="sozlesme"] button,
    .order-modal-inner .onay-kutusu a,
    .order-modal-inner [class*="sozlesme"] a {
        width: 100% !important;
        display: block !important;
        white-space: normal !important;
        word-break: break-word !important;
        padding: 12px 16px !important;
        margin-top: 8px !important;
        font-size: 14px !important;
    }
    .order-modal-inner .onay-kutusu,
    .order-modal-inner [class*="sozlesme"] {
        width: 100% !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        padding: 12px 14px !important;
        margin: 0 !important;
        display: block !important;
    }
}

/* === RELATED MODELS MOBILE === */
@media (max-width: 768px) {
    .related-models-section {
        padding: 2rem 0;
    }
    
    .related-models-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .related-model-content {
        padding: 1rem;
    }
}

/* === TOUCH DEVICE OPTIMIZATIONS === */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .motorcycle-card:hover .motorcycle-content {
        transform: none;
        box-shadow: none;
    }
    
    .mini-specs-tooltip {
        display: none !important;
    }
    
    .hero-slide:hover {
        filter: none;
    }
    
    .hero-slide:hover .hero-content {
        opacity: 1;
        transform: none;
    }
    
    .hero-slide:hover .hero-overlay {
        background: rgba(0, 0, 0, 0.45) !important;
    }
    
    /* Increase touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* === LANDSCAPE MOBILE === */
@media (max-width: 991px) and (orientation: landscape) {
    .hero-slider {
        aspect-ratio: 16/9;
        min-height: 280px;
        max-height: 50vh;
    }
    
    .moto-anchor-nav {
        top: 48px;
    }
}

/* === iOS SPECIFIC FIXES === */
@supports (-webkit-touch-callout: none) {
    /* iOS input zoom prevention */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* iOS safe area padding */
    .site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .compare-floating-bar {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    
    #voge-cookie-box {
        bottom: calc(0.5rem + env(safe-area-inset-bottom));
    }
    
    .mobile-menu-overlay {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* === PRINT STYLES === */
@media print {
    .site-header,
    .site-footer,
    .moto-anchor-nav,
    .mobile-menu-toggle,
    .compare-floating-bar,
    #voge-cookie-box {
        display: none !important;
    }
    
    .hero-slider {
        page-break-inside: avoid;
    }
}

/* Stronger, high-specificity overrides in case other theme rules win the cascade */
body .hero-slider-section, .site .hero-slider-section {
    /* Make hero full-bleed to remove side gaps */
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    aspect-ratio: 1536/672 !important;
    height: auto !important;
    background-color: transparent !important;
}

body .hero-slider-section .hero-slide, .site .hero-slider-section .hero-slide {
    /* Fill the hero area to avoid black bars; allow some cropping */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* Make hero look the same even when not hovered: apply the hover effects by default */
.hero-slide {
    /* disable heavy GPU/brightness effects to avoid ghosting */
    filter: none !important;
    -webkit-filter: none !important;
}

.hero-slide::after {
    /* ensure pseudo highlight is invisible to avoid layer blending artifacts */
    opacity: 0 !important;
    background: none !important;
    pointer-events: none !important;
    mix-blend-mode: normal !important;
}

/* Prevent hover from hiding content: force hero content visible at all times */

.hero-slide .hero-content,
.hero-slide .hero-title,
.hero-slide .hero-subtitle,
.hero-slide .hero-cta {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    z-index: 4 !important;
    backface-visibility: hidden !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
    text-shadow: none !important;
}

.hero-slide .hero-title,
.hero-slide .hero-subtitle {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Subtle shadows to make hero text pop without causing ghosting */
.hero-slide .hero-title {
    text-shadow: 0 6px 18px rgba(0,0,0,0.45) !important;
    -webkit-text-stroke: 0 !important;
    /* Slight italic/oblique tilt for elegance */
    font-style: oblique 6deg !important;
}

.hero-slide .hero-subtitle {
    text-shadow: 0 3px 10px rgba(0,0,0,0.32) !important;
}

/* Remove dark overlay so image shows with full color */
.hero-slide:hover .hero-overlay,
.hero-slide .hero-overlay {
    background: transparent !important;
}

/* Extra defensive overrides to eliminate any container padding/side gaps */
.hero-slider-section, .hero-slider-section .hero-slider, .hero-slider-section .hero-slide {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
}

.hero-slider-section .container,
.hero-slider-section .wrap,
.hero-slider-section .site-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-slider-section .hero-slide {
    min-width: 100vw !important;
    min-height: 0 !important;
    height: auto !important;
}

/* If some parent adds background color, force the immediate parent to transparent so image shows edge-to-edge */
.hero-slider-section, .hero-slider-section > * {
    background-color: transparent !important;
}

/* Front-page hero uses .hero-slider directly — ensure it's full-bleed too */
.hero-slider {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

.hero-slider .hero-slide {
    width: 100vw !important;
    min-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

/* Ensure overlay and content stretch full width */
.hero-slider .hero-overlay,
.hero-slider .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Ensure hero content is centered horizontally and subtitle centers correctly */
.hero-slider .hero-content {
    align-items: center !important;
    text-align: center !important;
}

.hero-slider .hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 820px !important;
}

/* Default: leave product buy buttons to theme/WooCommerce styles */

/* If WooCommerce outputs link styled add-to-cart on archives, keep those visible unless explicitly desired to hide */

/* Buy button appearance tweaks: remove radar, make slightly larger and bolder */
button.moto-buy-btn,
#open-order-modal,
button[aria-label="Satın Al"],
button[title="Satın Al"],
input[value="Satın Al"],
a[title="Satın Al"] {
    /* ensure default positioning */
    position: relative;
    display: inline-block;
    /* slightly smaller and refined */
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
}

/* Disable any previously added pseudo-element radar effects */
button.moto-buy-btn::after,
button.moto-buy-btn::before,
#open-order-modal::after,
#open-order-modal::before,
button[aria-label="Satın Al"]::after,
button[aria-label="Satın Al"]::before,
button[title="Satın Al"]::after,
button[title="Satın Al"]::before,
input[value="Satın Al"]::after,
input[value="Satın Al"]::before,
a[title="Satın Al"]::after,
a[title="Satın Al"]::before {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* Group price and buy button into a single blue rectangle */
.voge-price-buy {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    background: linear-gradient(180deg,#0b63c6 0%, #084b9e 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(11,99,198,0.18);
}
.voge-price-buy .price { color: #fff !important; font-size: 20px; font-weight: 700; margin: 0; }
.voge-price-buy form.cart { margin: 0; }
.voge-price-buy .single_add_to_cart_button,
.voge-price-buy .button { background: #ffc107 !important; color: #000 !important; padding: 10px 16px !important; border-radius: 8px !important; font-weight: 700 !important; }

/* Responsive: stack on small screens */
@media (max-width: 540px) {
    .voge-price-buy { flex-direction: column; gap: 8px; padding: 10px; }
    .voge-price-buy .price { font-size: 18px; }
}

/* Style for standalone price element used in header/nav */
.moto-nav-price-amount {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #000 !important;
    color: #fff !important;
    padding: 8px 12px;
    min-width: 92px;
    height: 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.04);
    line-height: 1;
}

@media (max-width: 540px) {
    .moto-nav-price-amount { font-size: 14px; padding: 6px 10px; }
}