.gm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.gm-header, .gm-social-wrapper, .gm-footer {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}
.gm-header *, .gm-social-wrapper *, .gm-footer * {
    box-sizing: border-box;
}

.gm-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 72px;
    background: #080808;
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.4s, border-color 0.4s;
}
.gm-header.gm-scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}
.gm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.gm-logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}
.gm-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.gm-dealer-badge {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    border-left: 1px solid #333;
    padding-left: 16px;
    line-height: 1;
}
.gm-nav-list {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}
.gm-nav-link {
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    transition: color 0.3s;
}
.gm-nav-link:hover {
    color: #fff;
}
.gm-brand-link {
    color: #ddd;
}

.gm-social-wrapper {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}
.gm-social-bar {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.gm-social-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #777;
    white-space: nowrap;
}
.gm-social-divider {
    flex: 1;
    height: 1px;
    background: #1a1a1a;
}
.gm-social-links {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gm-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #222;
    color: #888;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}
.gm-social-links a:hover {
    border-color: #555;
    color: #fff;
    background: #111;
}
.gm-social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.gm-footer {
    background: #050505;
    border-top: 1px solid #111;
    padding: 48px 0;
}
.gm-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gm-footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gm-footer-brand {
    display: inline-flex;
}
.gm-footer-badge {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}
.gm-footer-copy {
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gm-footer-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gm-footer-nav a {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}
.gm-footer-nav a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .gm-dealer-badge { display: none; }
    .gm-nav-list { gap: 16px; }
}
@media (max-width: 900px) {
    .gm-header { height: auto; padding: 16px 0; }
    .gm-header-inner { flex-direction: column; gap: 16px; }
    .gm-nav-list { flex-wrap: wrap; justify-content: center; }
    .gm-social-bar { flex-wrap: wrap; gap: 20px; }
    .gm-social-divider { display: none; }
    .gm-footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .gm-footer-nav { justify-content: center; flex-wrap: wrap; }
    .gm-footer-left { align-items: center; }
}






.gm-dropdown {
    position: relative;
    /* Menünün dışına taşıldığında kapanması için küçük bir padding alanı */
    padding-bottom: 20px; 
    margin-bottom: -20px;
}

.gm-caret {
    font-size: 8px;
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.7;
}

.gm-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #080808;
    border: 1px solid #222;
    border-top: 2px solid #fff; /* Şık bir üst çizgi detayı */
    list-style: none;
    margin: 0;
    padding: 10px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* Hover (Üzerine gelme) veya Tıklama durumu */
.gm-dropdown:hover .gm-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.gm-dropdown-menu li {
    display: block;
    width: 100%;
}

.gm-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 11px;
    color: #aaa;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s, padding-left 0.3s;
}

.gm-dropdown-menu a:hover {
    background: #111;
    color: #fff;
    padding-left: 24px; /* Üzerine gelince hafif sağa kayma efekti */
}








/* ── ARAÇ SEÇİM MODALI (detay sayfaları) ── */
.gm-vehicle-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    align-items: flex-start;
    justify-content: center;
    padding-top: 72px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.gm-vehicle-modal-overlay.open { display: flex; }
.gm-vehicle-modal {
    background: #0e0e0e;
    border: 1px solid #222;
    width: 100%;
    max-width: 1100px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 48px 40px 40px;
    position: relative;
    animation: gmModalIn 0.25s ease;
    box-sizing: border-box;
}
@keyframes gmModalIn {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.gm-vehicle-modal-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: 1px solid #333;
    color: #aaa;
    font-size: 18px;
    width: 36px; height: 36px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.gm-vehicle-modal-close:hover { border-color: #fff; color: #fff; }
.gm-vehicle-modal-brand {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
}
.gm-vehicle-modal-title {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #1a1a1a;
}
.gm-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #1a1a1a;
}
.gm-vehicle-item {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #0c0c0c;
    overflow: hidden;
    transition: background 0.2s;
}
.gm-vehicle-item:hover { background: #141414; }
.gm-vehicle-item-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}
.gm-vehicle-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.75) grayscale(15%);
    transition: transform 0.5s ease, filter 0.4s ease;
}
.gm-vehicle-item:hover .gm-vehicle-item-img img {
    transform: scale(1.05);
    filter: brightness(1) grayscale(0%);
}
.gm-vehicle-item-info { padding: 16px 18px 18px; }
.gm-vehicle-item-sub {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4px;
}
.gm-vehicle-item-name {
    font-size: 13px;
    font-weight: 500;
    color: #eee;
    line-height: 1.4;
}
.gm-vehicle-item-arrow {
    display: inline-block;
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    transition: color 0.3s, letter-spacing 0.3s;
}
.gm-vehicle-item:hover .gm-vehicle-item-arrow { color: #fff; letter-spacing: 3px; }
@media (max-width: 768px) {
    .gm-vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .gm-vehicle-modal { padding: 40px 20px 32px; }
}
@media (max-width: 480px) {
    .gm-vehicle-grid { grid-template-columns: 1fr; }
}
