/* Çmimore (Price list) page – short hero, centered title, image + text/buttons */

/* Smooth scroll when clicking "Kthehu në krye" */
html.cmimore-page {
    scroll-behavior: smooth;
}

.cmimore-page {
    background: #fff;
    color: #111;
}

.cmimore-header {
    position: relative;
}

.cmimore-header .hero-nav {
    background: #fff;
    color: #111;
}

/* Hero image – ~30% longer than before (39vh) */
.cmimore-hero {
    width: 100%;
    height: 55vh;
    min-height: 286px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cmimore-main {
    padding: 0;
}

/* Page title – big, centered (like kontakti but center-aligned) */
.cmimore-title-section {
    background: #fff;
    padding: 56px 24px 48px;
    text-align: center;
}

.cmimore-title {
    font-family: "BMWMotorradW01-Bold", Arial, sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #111;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Content section – image left, text and buttons right, white body */
.cmimore-content-section {
    background: #ffffff;
    padding: 56px 24px 72px;
}

.cmimore-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cmimore-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.cmimore-content-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.cmimore-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cmimore-content-text {
    color: #111;
}

.cmimore-content-heading {
    font-family: "BMWMotorradW01-Bold", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cmimore-intro {
    font-family: "BMWMotorradW01-Regular", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px;
    color: #333;
}

.cmimore-list {
    font-family: "BMWMotorradW01-Regular", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 32px;
    padding-left: 24px;
    color: #333;
}

.cmimore-list li {
    margin-bottom: 8px;
}

.cmimore-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
}

/* Primary button – solid black (our style) */
.cmimore-btn-primary.hero-button {
    display: block;
    text-align: center;
    padding: 14px 28px;
    background: #111;
    color: #fff;
    border: none;
    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;
}

.cmimore-btn-primary.hero-button:hover {
    background: #0062ff;
    color: #fff;
}

/* Outline button – white bg, dark border */
.cmimore-btn-outline.hero-button {
    display: 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;
}

.cmimore-btn-outline.hero-button:hover {
    background: #0062ff;
    color: #fff;
    border-color: #0062ff;
}

/* Back to top section – white body */
.back-to-top-section {
    background: #ffffff;
    min-height: 180px;
    padding: 64px 24px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

.back-to-top-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #333333;
    text-decoration: none;
    font-family: "BMWMotorradW01-Regular", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.back-to-top-link:hover {
    color: #111;
}

.back-to-top-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0);
}

.back-to-top-link:hover .back-to-top-icon {
    filter: brightness(0);
}

.back-to-top-text {
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
    .cmimore-title {
        font-size: 40px;
    }

    .cmimore-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cmimore-content-image {
        order: 1;
    }

    .cmimore-content-text {
        order: 2;
    }

    .cmimore-buttons {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .cmimore-hero {
        height: 20vh;
        min-height: 234px;
    }

    .cmimore-title-section {
        padding: 40px 20px 16px;
        text-align: left;
    }

    .cmimore-title {
        font-size: 32px;
        margin-left: 0;
    }

    .cmimore-content-section {
        padding: 24px 20px 56px;
    }

    .cmimore-content-inner {
        padding: 0;
    }

    .cmimore-content-heading {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .cmimore-intro,
    .cmimore-list {
        font-size: 15px;
    }

    .cmimore-btn-primary.hero-button,
    .cmimore-btn-outline.hero-button {
        padding: 12px 24px;
        font-size: 13px;
    }

    .back-to-top-section {
        min-height: 140px;
        padding: 48px 20px 32px;
        background: #ffffff;
    }

    .back-to-top-link {
        font-size: 14px;
    }

    .back-to-top-icon {
        width: 18px;
        height: 18px;
    }
}
