:root {
    --dark: #0f172a;
    --dark-2: #111827;
    --dark-3: #020617;
    --card: #1f2937;
    --yellow: #facc15;
    --yellow-dark: #eab308;
    --white: #ffffff;
    --gray: #cbd5e1;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 70px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--gray);
}

.nav-btn {
    padding: 11px 22px;
    background: var(--yellow);
    color: var(--dark-2);
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.80), rgba(15, 23, 42, 0.35)),
        url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 140px 80px 80px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.18);
    filter: blur(100px);
    right: -120px;
    top: 180px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.12);
    filter: blur(90px);
    left: -100px;
    bottom: 40px;
}

.hero-content {
    position: relative;
    max-width: 720px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(250, 204, 21, 0.12);
    color: var(--yellow);
    border: 1px solid rgba(250, 204, 21, 0.35);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.05;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark-2);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    background: var(--yellow-dark);
}

.btn-secondary:hover {
    border-color: rgba(250, 204, 21, 0.5);
    color: var(--yellow);
}

.hero-card {
    position: relative;
    z-index: 2;
    width: 300px;
    padding: 30px;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-card-icon {
    width: 62px;
    height: 62px;
    background: rgba(250, 204, 21, 0.15);
    color: var(--yellow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 22px;
}

.hero-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ABOUT */

.about-section {
    background: var(--dark-2);
    padding: 110px 80px;
}

.about-container {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 45px;
    align-items: center;
}

.section-mini-title {
    color: var(--yellow);
    font-weight: 800;
    font-size: 15px;
}

.about-text h2 {
    font-size: 43px;
    line-height: 1.2;
    margin: 16px 0 20px;
    letter-spacing: -1px;
}

.about-text p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.about-stats div {
    padding: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.about-stats strong {
    display: block;
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 6px;
}

.about-stats span {
    color: var(--gray);
    font-size: 14px;
}

.about-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 38px;
    box-shadow: var(--shadow);
}

.about-box h3 {
    font-size: 25px;
    margin-bottom: 22px;
}

.about-box ul {
    list-style: none;
}

.about-box li {
    position: relative;
    color: var(--gray);
    padding-left: 28px;
    margin-bottom: 17px;
    line-height: 1.5;
}

.about-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--yellow);
    font-weight: 900;
}

/* PRODUCTS */

.products-section {
    background: var(--dark);
    padding: 110px 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title span {
    color: var(--yellow);
    font-weight: 800;
    font-size: 15px;
}

.section-title h2 {
    color: var(--white);
    font-size: 42px;
    margin: 12px 0;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--gray);
    font-size: 17px;
}

.product-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    padding: 34px;
    border-radius: 22px;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(250, 204, 21, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.product-card .icon {
    width: 58px;
    height: 58px;
    background: rgba(250, 204, 21, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.product-card h3 {
    color: var(--white);
    font-size: 21px;
    margin-bottom: 14px;
}

.product-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
}

/* BRANDS */

.brands-section {
    background: var(--dark-3);
    padding: 100px 80px;
}

.brands {
    max-width: 1050px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* CONTACT */

.contact-section {
    background: var(--dark);
    padding: 110px 80px;
}

.contact-box {
    max-width: 1150px;
    margin: auto;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(250, 204, 21, 0.25);
    border-radius: 28px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    box-shadow: var(--shadow);
}

.contact-label {
    color: var(--yellow);
    font-weight: 800;
}

.contact-box h2 {
    color: var(--white);
    font-size: 40px;
    line-height: 1.2;
    margin: 14px 0 16px;
    letter-spacing: -1px;
}

.contact-box p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-info {
    background: rgba(15, 23, 42, 0.65);
    padding: 30px;
    border-radius: 22px;
    border: 1px solid var(--border);
}

.contact-info p {
    margin-bottom: 14px;
}

.contact-info strong {
    color: var(--white);
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 24px;
    background: #22c55e;
    color: var(--white);
    border-radius: 999px;
    font-weight: 800;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #16a34a;
    transform: translateY(-3px);
}

/* FOOTER */

.footer {
    background: var(--dark-3);
    padding: 38px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.footer-logo span {
    color: var(--yellow);
}

.footer p {
    color: var(--gray);
    margin-bottom: 14px;
}

.footer small {
    color: var(--muted);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card {
        width: 100%;
        max-width: 420px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        padding: 120px 26px 60px;
        min-height: 92vh;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-card {
        display: none;
    }

    .about-section,
    .products-section,
    .brands-section,
    .contact-section {
        padding: 75px 24px;
    }

    .about-text h2,
    .section-title h2,
    .contact-box h2 {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 32px;
    }

    .brands div {
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

    .btn-soft {
        background: red;
        color: #fff;
        border: 1px solid red;
    }

/* MOBILE MENU */

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
    transition: 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 78px;
    left: 24px;
    right: 24px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--gray);
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-whatsapp {
    background: #22c55e !important;
    color: white !important;
    text-align: center;
    font-weight: 800 !important;
}

/* PRODUCT BUTTON */

.product-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 11px 20px;
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.35);
    color: var(--yellow);
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.3s ease;
}

.product-btn:hover {
    background: var(--yellow);
    color: var(--dark-2);
    transform: translateY(-2px);
}

/* BRAND LOGOS */

.brand-card {
    min-width: 170px;
    height: 90px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.brand-card:hover {
    border-color: rgba(250, 204, 21, 0.45);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
}

.brand-card img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

/* CONTACT EXTRA */

.working-hours {
    margin-top: 30px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.working-hours h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
}

.working-hours p {
    margin-bottom: 8px;
}

.call-btn {
    display: inline-block;
    margin-top: 16px;
    margin-right: 10px;
    padding: 14px 24px;
    background: var(--yellow);
    color: var(--dark-2);
    border-radius: 999px;
    font-weight: 800;
    transition: 0.3s ease;
}

.call-btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
}

.map-box {
    max-width: 1150px;
    height: 380px;
    margin: 35px auto 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(25%) contrast(95%);
}

/* RESPONSIVE EXTRA */

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .mobile-menu {
        top: 72px;
    }

    .brand-card {
        width: 100%;
        height: 86px;
    }

    .brand-card img {
        max-width: 145px;
        max-height: 58px;
    }

    .call-btn,
    .whatsapp-btn {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .map-box {
        height: 300px;
        border-radius: 22px;
    }
}

/* DEALER / ANA BAYİ */

.dealer-section,
.marketplace-section {
    padding: 100px 80px;
    background: var(--dark);
}

.dealer-section {
    background: var(--dark-2);
}

.dealer-container {
    max-width: 1180px;
    margin: auto;
}

.dealer-title {
    text-align: center;
    margin-bottom: 50px;
}

.dealer-title span {
    color: var(--yellow);
    font-weight: 800;
}

.dealer-title h2 {
    font-size: 42px;
    margin: 12px 0;
}

.dealer-title p {
    color: var(--gray);
    font-size: 17px;
}

.dealer-grid,
.marketplace-grid,
.features-grid,
.stats-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    gap: 24px;
}

.dealer-grid {
    grid-template-columns: repeat(2, 1fr);
}

.dealer-card,
.market-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.dealer-card:hover,
.market-card:hover {
    transform: translateY(-6px);
    border-color: rgba(250,204,21,0.45);
}

.dealer-card img {
    max-width: 180px;
    max-height: 110px;
    object-fit: contain;
    margin-bottom: 22px;
}

.dealer-card h3,
.market-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.market-card p {
    color: var(--gray);
    line-height: 1.7;
}

.marketplace-section {
    background: var(--dark);
}

.marketplace-grid {
    grid-template-columns: repeat(2, 1fr);
}

.market-card a {
    display: inline-block;
    margin-top: 22px;
    padding: 13px 24px;
    background: var(--yellow);
    color: var(--dark-2);
    border-radius: 999px;
    font-weight: 800;
}

.features-grid {
    grid-template-columns: repeat(4, 1fr);
}


.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* RESPONSIVE NEW SECTIONS */

@media (max-width: 1024px) {
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dealer-section,
    .marketplace-section {
        padding: 75px 24px;
    }

    .dealer-grid,
    .marketplace-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dealer-title h2 {
        font-size: 32px;
    }
}

.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-call,
.float-whatsapp {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: .3s;
}

.float-call {
    background: var(--yellow);
    color: var(--dark);
}

.float-whatsapp {
    background: #22c55e;
    color: white;
}

.float-call:hover,
.float-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
}

.route-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 800;
    transition: .3s;
}

.route-btn:hover {
    background: var(--yellow);
    color: var(--dark-2);
    transform: translateY(-3px);
}

.premium-dealer .premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(250,204,21,.16), rgba(255,255,255,.04));
}

.dealer-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 14px;
    background: var(--yellow);
    color: var(--dark-2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.dealer-card.premium p {
    color: var(--gray);
    line-height: 1.7;
}

.market-card {
    position: relative;
    overflow: hidden;
    text-align: left;
}

.market-icon {
    width: 60px;
    height: 60px;
    background: rgba(250,204,21,.14);
    border: 1px solid rgba(250,204,21,.35);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.hb-card {
    background: linear-gradient(135deg, rgba(255,96,0,.18), rgba(255,255,255,.04));
}

.ptt-card {
    background: linear-gradient(135deg, rgba(250,204,21,.18), rgba(255,255,255,.04));
}

.feature-icon {
    width: 58px;
    height: 58px;
    background: rgba(250,204,21,.14);
    border: 1px solid rgba(250,204,21,.35);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.footer-container {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px;
    text-align: left;
}

.footer h3 {
    margin-bottom: 14px;
    color: var(--white);
}

.footer a {
    display: block;
    color: var(--gray);
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--yellow);
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.category-tabs {
    max-width: 1180px;
    margin: 0 auto 35px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-tabs button {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    color: var(--gray);
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.category-tabs button.active,
.category-tabs button:hover {
    background: var(--yellow);
    color: var(--dark-2);
}

.catalog-section {
    background: var(--dark-2);
    padding: 100px 80px;
}

.catalog-card {
    max-width: 560px;
    margin: auto;
    padding: 36px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.catalog-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.catalog-card p {
    color: var(--gray);
    margin-bottom: 24px;
}

.catalog-card a {
    display: inline-block;
    padding: 14px 26px;
    background: var(--yellow);
    color: var(--dark-2);
    border-radius: 999px;
    font-weight: 800;
}

.catalog-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

.catalog-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.catalog-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    background: rgba(250,204,21,.14);
    border: 1px solid rgba(250,204,21,.35);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.catalog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(250,204,21,.45);
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

.shipping-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shipping-grid div {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid var(--border);
    border-radius: 22px;
    text-align: center;
    font-weight: 800;
    color: white;
    transition: .3s;
}

.shipping-grid div:hover {
    transform: translateY(-6px);
    border-color: rgba(250,204,21,.45);
}

@media (max-width: 1024px) {
    .shipping-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.dealer-logo-box {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.dealer-logo-box img {
    max-width: 210px;
    max-height: 90px;
    object-fit: contain;
}

.brand-info {
    flex-direction: column;
    gap: 10px;
    height: 125px;
}

.brand-info p {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 900;
}

.ekstre-info-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    cursor: help;
    line-height: 1;
}

.ekstre-info-icon:hover {
    background: #0369a1;
    color: #ffffff;
    border-color: #0369a1;
}

.custom-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    backdrop-filter: blur(5px);
}

.custom-confirm-overlay.active {
    display: flex;
}

.custom-confirm-box {
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.35);
}

.custom-confirm-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.custom-confirm-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: #ffc107;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.custom-confirm-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
}

.custom-confirm-box h4 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
}

.custom-confirm-box p {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.45;
}

.custom-confirm-warning {
    margin-top: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 13px;
}

.custom-confirm-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.custom-confirm-cancel,
.custom-confirm-ok {
    flex: 1;
    border: none;
    border-radius: 13px;
    padding: 11px 14px;
    cursor: pointer;
    font-weight: 600;
}

.custom-confirm-cancel {
    background: #f3f4f6;
    color: #374151;
}

.custom-confirm-ok {
    background: #111827;
    color: #fff;
}

.custom-confirm-ok:hover {
    background: #ffc107;
    color: #111827;
}

