/* Dyqani (Shop) page – single hero, title+subtitle+intro, dealer section like servisi Kontakti */

html.dyqani-page {
    scroll-behavior: smooth;
}

.dyqani-page {
    background: #fff;
    color: #111;
}

/* Same hero as index but single photo – hide slideshow controls */
.dyqani-page .slide-arrow,
.dyqani-page .slide-progress-bar {
    display: none !important;
}

.dyqani-page .hero-nav {
    background: #fff;
    color: #111;
}

.dyqani-page .hero-slide-single {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dyqani-page .hero-content .hero-title,
.dyqani-page .hero-content .hero-subtitle {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hide quick links (page has none in HTML; hide if ever added) */
.dyqani-page .quick-links {
    display: none !important;
}

.dyqani-main {
    padding: 0;
}

/* Title section – like servisi.php */
.dyqani-title-section {
    background: #fff;
    padding: 80px 24px 48px;
}

.dyqani-title-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

.dyqani-title {
    font-family: "BMWMotorradW01-Bold", Arial, sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #000;
    line-height: 1.1;
}

.dyqani-subtitle {
    font-family: "BMWMotorradW01-Bold", Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #000;
}

/* Intro paragraph */
.dyqani-intro-section {
    background: #fff;
    padding: 0 24px 56px;
}

.dyqani-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dyqani-intro-text {
    font-family: "BMWMotorradW01-Regular", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
    color: #333;
    max-width: 800px;
}

/* Dealer section – same layout as servisi Kontakti */
.dyqani-dealer-section {
    background: #fff;
    padding: 64px 24px 80px;
    text-align: center;
}

.dyqani-dealer-separator {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dyqani-dealer-line {
    display: block;
    position: absolute;
    left: 15%;
    right: 15%;
    top: 50%;
    height: 4px;
    background: #333;
}

.dyqani-dealer-icon {
    position: relative;
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 0 16px;
}

.dyqani-dealer-title {
    font-family: "BMWMotorradW01-Bold", Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 40px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #111;
}

.dyqani-dealer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

.dyqani-dealer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.dyqani-dealer-lead {
    font-family: "BMWMotorradW01-Bold", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #111;
}

.dyqani-dealer-para {
    font-family: "BMWMotorradW01-Regular", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 28px;
    color: #333;
}

.dyqani-dealer-btn.hero-button {
    display: inline-block;
    text-align: center;
    padding: 14px 28px;
    background: #fff;
    color: #111;
    border: 3px solid #111;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: "BMWMotorradW01-Bold", Arial, sans-serif;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dyqani-dealer-btn.hero-button:hover {
    background: #0062ff;
    color: #fff;
    border-color: #0062ff;
}

.dyqani-dealer-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dyqani-dealer-right.dyqani-ratio-3-2 {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

/* Back to top */
.dyqani-back-to-top {
    background: #fff;
    min-height: 180px;
    padding: 64px 24px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

.dyqani-back-to-top .back-to-top-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-family: "BMWMotorradW01-Regular", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.dyqani-back-to-top .back-to-top-link:hover {
    color: #111;
}

.dyqani-back-to-top .back-to-top-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0);
}

.dyqani-back-to-top .back-to-top-text {
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
    /* Shorter header image on tablet/mobile */
    .dyqani-page .hero {
        height: 55vh;
        min-height: 360px;
    }

    /* Push main below header on tablet */
    .dyqani-page .dyqani-main {
        margin-top: 20vh;
    }

    /* Ensure title section visible on tablet */
    .dyqani-page .dyqani-main,
    .dyqani-title-section,
    .dyqani-title-wrap {
        display: block !important;
        visibility: visible !important;
    }

    .dyqani-title,
    .dyqani-subtitle {
        display: block !important;
        visibility: visible !important;
        color: #000 !important;
    }

    .dyqani-title {
        font-size: 48px;
    }

    .dyqani-subtitle {
        font-size: 24px;
    }

    .dyqani-dealer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dyqani-dealer-right {
        order: 1;
    }

    .dyqani-dealer-left {
        order: 2;
    }

    .dyqani-dealer-section {
        padding: 48px 24px 64px;
    }

    .dyqani-dealer-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .dyqani-dealer-icon {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 640px) {
    /* Shorter header image on mobile */
    .dyqani-page .hero-slide {
        padding-top: 48vh;
    }

    /* Ensure main and title section are visible on mobile – margin clears the header */
    .dyqani-page .dyqani-main {
        display: block !important;
        visibility: visible !important;
        margin-top: 20vh;
    }

    .dyqani-title-section {
        display: block !important;
        visibility: visible !important;
        padding: 48px 20px 32px;
        min-height: 0;
    }

    .dyqani-title-wrap {
        display: block !important;
        visibility: visible !important;
    }

    .dyqani-title,
    .dyqani-subtitle {
        display: block !important;
        visibility: visible !important;
        color: #000 !important;
    }

    .dyqani-title {
        font-size: 36px;
    }

    .dyqani-subtitle {
        font-size: 18px;
    }

    .dyqani-intro-section {
        padding: 0 20px 40px;
    }

    .dyqani-intro-inner {
        padding: 0 20px;
    }

    .dyqani-intro-text {
        font-size: 15px;
    }

    .dyqani-dealer-inner {
        padding: 0 20px;
    }

    .dyqani-dealer-btn.hero-button {
        padding: 12px 24px;
        font-size: 13px;
    }

    .dyqani-dealer-icon {
        width: 72px;
        height: 72px;
    }

    .dyqani-back-to-top {
        min-height: 140px;
        padding: 48px 20px 32px;
    }

    .dyqani-back-to-top .back-to-top-link {
        font-size: 14px;
    }

    .dyqani-back-to-top .back-to-top-icon {
        width: 18px;
        height: 18px;
    }
}
